* [Intel-gfx] [PATCH] drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() @ 2022-03-14 16:13 Ashutosh Dixit 2022-03-14 20:11 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) Patchwork 2022-03-14 23:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 7+ messages in thread From: Ashutosh Dixit @ 2022-03-14 16:13 UTC (permalink / raw) To: intel-gfx Because VLV_GT_RENDER_RC6 == GEN6_GT_GFX_RC6, the IS_VALLEYVIEW() check is not needed. Neither is the check present in other code paths which call intel_rc6_residency_ns() (in functions gen6_drpc(), rc6_residency() and rc6_residency_ms_show()). v2: Elimintate VLV_GT_RENDER_RC6 #define (Jani) Cc: Jani Nikula <jani.nikula@linux.intel.com> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> --- drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 2 +- drivers/gpu/drm/i915/gt/intel_gt_regs.h | 1 - drivers/gpu/drm/i915/i915_pmu.c | 5 +---- 3 files changed, 2 insertions(+), 6 deletions(-) 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 4a1c74b8de05..437e96bb3b93 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c @@ -113,7 +113,7 @@ static int vlv_drpc(struct seq_file *m) seq_printf(m, "Media Power Well: %s\n", (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down"); - print_rc6_res(m, "Render RC6 residency since boot:", VLV_GT_RENDER_RC6); + print_rc6_res(m, "Render RC6 residency since boot:", GEN6_GT_GFX_RC6); print_rc6_res(m, "Media RC6 residency since boot:", VLV_GT_MEDIA_RC6); return fw_domains_show(m, NULL); diff --git a/drivers/gpu/drm/i915/gt/intel_gt_regs.h b/drivers/gpu/drm/i915/gt/intel_gt_regs.h index 19cd34f24263..201b507c9dde 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt_regs.h +++ b/drivers/gpu/drm/i915/gt/intel_gt_regs.h @@ -1440,7 +1440,6 @@ #define VLV_MEDIA_RC6_COUNT_EN (1 << 1) #define VLV_RENDER_RC6_COUNT_EN (1 << 0) #define GEN6_GT_GFX_RC6 _MMIO(0x138108) -#define VLV_GT_RENDER_RC6 _MMIO(0x138108) #define VLV_GT_MEDIA_RC6 _MMIO(0x13810c) #define GEN6_GT_GFX_RC6p _MMIO(0x13810c) diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c index cfc21042499d..3e3b09588fd3 100644 --- a/drivers/gpu/drm/i915/i915_pmu.c +++ b/drivers/gpu/drm/i915/i915_pmu.c @@ -148,10 +148,7 @@ static u64 __get_rc6(struct intel_gt *gt) struct drm_i915_private *i915 = gt->i915; u64 val; - val = intel_rc6_residency_ns(>->rc6, - IS_VALLEYVIEW(i915) ? - VLV_GT_RENDER_RC6 : - GEN6_GT_GFX_RC6); + val = intel_rc6_residency_ns(>->rc6, GEN6_GT_GFX_RC6); if (HAS_RC6p(i915)) val += intel_rc6_residency_ns(>->rc6, GEN6_GT_GFX_RC6p); -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-03-14 16:13 [Intel-gfx] [PATCH] drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() Ashutosh Dixit @ 2022-03-14 20:11 ` Patchwork 2022-03-14 23:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 7+ messages in thread From: Patchwork @ 2022-03-14 20:11 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7817 bytes --] == Series Details == Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) URL : https://patchwork.freedesktop.org/series/101301/ State : success == Summary == CI Bug Log - changes from CI_DRM_11360 -> Patchwork_22559 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html Participating hosts (47 -> 44) ------------------------------ Additional (1): fi-pnv-d510 Missing (4): fi-ctg-p8600 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u Known issues ------------ Here are the changes found in Patchwork_22559 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_gttfill@basic: - fi-bdw-gvtdvm: NOTRUN -> [SKIP][1] ([fdo#109271]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-gvtdvm/igt@gem_exec_gttfill@basic.html * igt@gem_exec_suspend@basic-s0@smem: - fi-bdw-gvtdvm: NOTRUN -> [INCOMPLETE][2] ([i915#4831]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-gvtdvm/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +58 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-pnv-d510/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@hangcheck: - fi-bdw-5557u: NOTRUN -> [INCOMPLETE][4] ([i915#3921]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-5557u/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-blb-e6850: [PASS][5] -> [DMESG-FAIL][6] ([i915#4528]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/fi-blb-e6850/igt@i915_selftest@live@requests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@kms_chamelium@vga-edid-read: - fi-bdw-5557u: NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-5557u/igt@kms_chamelium@vga-edid-read.html * igt@kms_setmode@basic-clone-single-crtc: - fi-bdw-5557u: NOTRUN -> [SKIP][8] ([fdo#109271]) +14 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-5557u/igt@kms_setmode@basic-clone-single-crtc.html * igt@runner@aborted: - fi-blb-e6850: NOTRUN -> [FAIL][9] ([fdo#109271] / [i915#2403] / [i915#4312]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@gem_basic@create-fd-close: - fi-bdw-gvtdvm: [INCOMPLETE][10] ([i915#2295]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/fi-bdw-gvtdvm/igt@gem_basic@create-fd-close.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bdw-gvtdvm/igt@gem_basic@create-fd-close.html * igt@gem_exec_suspend@basic-s3@smem: - {fi-rkl-11600}: [INCOMPLETE][12] ([i915#5127]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gem: - {bat-rpls-2}: [DMESG-WARN][14] ([i915#4391]) -> [PASS][15] +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/bat-rpls-2/igt@i915_selftest@live@gem.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/bat-rpls-2/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [INCOMPLETE][16] ([i915#4983]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/bat-rpls-2/igt@i915_selftest@live@reset.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-bsw-n3050: [DMESG-WARN][18] ([i915#1982]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4831]: https://gitlab.freedesktop.org/drm/intel/issues/4831 [i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5087]: https://gitlab.freedesktop.org/drm/intel/issues/5087 [i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127 [i915#5323]: https://gitlab.freedesktop.org/drm/intel/issues/5323 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_11360 -> Patchwork_22559 CI-20190529: 20190529 CI_DRM_11360: b37605de46fef48555bf0cf463cccf355c51fac0 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6380: 5d9ef79ab61fc4e9abc8b565f298e0515265e616 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_22559: c044eaa06fcce8d2234d49f38e3909725f68a7ef @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == c044eaa06fcc drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html [-- Attachment #2: Type: text/html, Size: 7254 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-03-14 16:13 [Intel-gfx] [PATCH] drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() Ashutosh Dixit 2022-03-14 20:11 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) Patchwork @ 2022-03-14 23:57 ` Patchwork 2022-04-06 10:36 ` Anshuman Gupta 1 sibling, 1 reply; 7+ messages in thread From: Patchwork @ 2022-03-14 23:57 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30294 bytes --] == Series Details == Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) URL : https://patchwork.freedesktop.org/series/101301/ State : success == Summary == CI Bug Log - changes from CI_DRM_11360_full -> Patchwork_22559_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_22559_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-glk: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [FAIL][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [FAIL][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#4392]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html ### IGT changes ### #### Issues hit #### * igt@gem_ccs@block-copy-compressed: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#5325]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-massive: - shard-skl: NOTRUN -> [DMESG-WARN][52] ([i915#4991]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_create@create-massive.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [PASS][53] -> [SKIP][54] ([i915#4525]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglb: [PASS][55] -> [FAIL][56] ([i915#2842]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb6/igt@gem_exec_fair@basic-none-rrul@rcs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][57] -> [FAIL][58] ([i915#2842]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [PASS][59] -> [FAIL][60] ([i915#2842]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][61] -> [FAIL][62] ([i915#2842]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [PASS][63] -> [DMESG-WARN][64] ([i915#118]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/igt@gem_exec_whisper@basic-queues-forked-all.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4613]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@random-engines: - shard-skl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#4613]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_lmem_swapping@random-engines.html * igt@gem_pread@exhaustion: - shard-skl: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@gem_pxp@create-protected-buffer.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][72] ([i915#768]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_userptr_blits@input-checking: - shard-iclb: NOTRUN -> [DMESG-WARN][73] ([i915#4991]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@oacontrol-tracking: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109289]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][76] -> [DMESG-WARN][77] ([i915#1436] / [i915#716]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/igt@gen9_exec_parse@allowed-all.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-skl: NOTRUN -> [DMESG-WARN][78] ([i915#1982]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc6-dpms: - shard-skl: NOTRUN -> [FAIL][79] ([i915#454]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271]) +114 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_suspend@fence-restore-untiled: - shard-tglb: [PASS][81] -> [DMESG-WARN][82] ([i915#2411] / [i915#2867]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb3/igt@i915_suspend@fence-restore-untiled.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb7/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][83] ([i915#5286]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#3777]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-skl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#3777]) +7 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-kbl: NOTRUN -> [SKIP][86] ([fdo#109271]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#3777]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#3886]) +5 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#3886]) +4 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#3886]) +11 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109278] / [i915#3886]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium@dp-crc-multiple: - shard-apl: NOTRUN -> [SKIP][92] ([fdo#109271] / [fdo#111827]) +7 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_color@pipe-d-ctm-blue-to-red: - shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109278] / [i915#1149]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color@pipe-d-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-0-5: - shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271] / [fdo#111827]) +5 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html * igt@kms_color_chamelium@pipe-a-degamma: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109284] / [fdo#111827]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-a-degamma.html * igt@kms_color_chamelium@pipe-b-ctm-max: - shard-skl: NOTRUN -> [SKIP][96] ([fdo#109271] / [fdo#111827]) +25 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-max.html * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][97] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html * igt@kms_content_protection@atomic-dpms: - shard-apl: NOTRUN -> [TIMEOUT][98] ([i915#1319]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-iclb: NOTRUN -> [SKIP][99] ([i915#3116]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271]) +85 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [PASS][101] -> [DMESG-WARN][102] ([i915#180]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][103] ([fdo#109279] / [i915#3359]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#109278]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: [PASS][105] -> [FAIL][106] ([i915#2346]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@pipe-d-single-bo: - shard-glk: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#533]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_cursor_legacy@pipe-d-single-bo.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-iclb: NOTRUN -> [SKIP][108] ([i915#426]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: - shard-iclb: NOTRUN -> [SKIP][109] ([i915#5287]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [PASS][110] -> [INCOMPLETE][111] ([i915#180] / [i915#636]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglb: NOTRUN -> [SKIP][112] ([fdo#109274] / [fdo#111825]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109274]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb6/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-skl: [PASS][114] -> [INCOMPLETE][115] ([i915#4839] / [i915#636]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl7/igt@kms_flip@flip-vs-suspend@b-edp1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-skl: [PASS][116] -> [FAIL][117] ([i915#2122]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-skl: NOTRUN -> [INCOMPLETE][118] ([i915#3701]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-tglb: NOTRUN -> [SKIP][119] ([fdo#109280] / [fdo#111825]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109280]) +16 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-snb: [PASS][121] -> [SKIP][122] ([fdo#109271]) +2 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-snb7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@static-toggle-suspend: - shard-iclb: NOTRUN -> [SKIP][123] ([i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-apl: [PASS][124] -> [DMESG-WARN][125] ([i915#180]) +4 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - shard-skl: NOTRUN -> [FAIL][126] ([fdo#108145] / [i915#265]) +4 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][127] ([fdo#108145] / [i915#265]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-glk: NOTRUN -> [FAIL][128] ([fdo#108145] / [i915#265]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][129] ([i915#265]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: - shard-iclb: NOTRUN -> [SKIP][130] ([fdo#109278]) +18 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format: - shard-iclb: [PASS][131] -> [INCOMPLETE][132] ([i915#5293]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb3/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation: - shard-iclb: NOTRUN -> [SKIP][133] ([i915#5176]) +2 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#658]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: NOTRUN -> [SKIP][135] ([fdo#111068] / [i915#658]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-skl: NOTRUN -> [SKIP][136] ([fdo#109271] / [i915#658]) +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][137] -> [SKIP][138] ([fdo#109441]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb4/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: NOTRUN -> [SKIP][139] ([fdo#109441]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-iclb: NOTRUN -> [SKIP][140] ([i915#5289]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: - shard-skl: NOTRUN -> [SKIP][141] ([fdo#109271]) +307 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html * igt@kms_vblank@pipe-d-wait-idle: - shard-skl: NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#533]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-skl: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#2437]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_writeback@writeback-check-output.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][144] ([i915#2530]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@perf@polling-small-buf: - shard-skl: NOTRUN -> [FAIL][145] ([i915#1722]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@perf@polling-small-buf.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][146] ([fdo#109291]) +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@create: - shard-apl: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#2994]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle-many: - shard-skl: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#2994]) +3 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@sysfs_clients@recycle-many.html #### Possible fixes #### * igt@gem_ctx_persistence@many-contexts: - {shard-rkl}: [FAIL][149] ([i915#2410]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_capture@pi@bcs0: - {shard-tglu}: [INCOMPLETE][151] ([i915#3371] / [i915#3731]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglu-2/igt@gem_exec_capture@pi@bcs0.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglu-3/igt@gem_exec_capture@pi@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][153] ([i915#2846]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/igt@gem_exec_fair@basic-deadline.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][155] ([i915#2842]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [FAIL][157] ([i915#2842]) -> [PASS][158] +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@gem_exec_fa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html [-- Attachment #2: Type: text/html, Size: 33743 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-03-14 23:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork @ 2022-04-06 10:36 ` Anshuman Gupta 2022-04-06 10:53 ` Tvrtko Ursulin 0 siblings, 1 reply; 7+ messages in thread From: Anshuman Gupta @ 2022-04-06 10:36 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org On 2022-03-15 at 05:27:39 +0530, Patchwork wrote: Pushed to drm-intel-next. Thanks for review and patch. Br, Anshuman Gupta. > Patch Details > > Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() > (rev2) > URL: [1]https://patchwork.freedesktop.org/series/101301/ > State: success > Details: > [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html > > CI Bug Log - changes from CI_DRM_11360_full -> Patchwork_22559_full > > Summary > > SUCCESS > > No regressions found. > > Participating hosts (13 -> 13) > > No changes in participating hosts > > Known issues > > Here are the changes found in Patchwork_22559_full that come from known > issues: > > CI changes > > Possible fixes > > * boot: > + shard-glk: ([3]PASS, [4]PASS, [5]PASS, [6]PASS, [7]PASS, > [8]FAIL, [9]PASS, [10]PASS, [11]PASS, [12]PASS, [13]PASS, > [14]FAIL, [15]PASS, [16]PASS, [17]PASS, [18]PASS, [19]PASS, > [20]PASS, [21]PASS, [22]PASS, [23]PASS, [24]PASS, [25]PASS, > [26]PASS, [27]PASS) ([i915#4392]) -> ([28]PASS, [29]PASS, > [30]PASS, [31]PASS, [32]PASS, [33]PASS, [34]PASS, [35]PASS, > [36]PASS, [37]PASS, [38]PASS, [39]PASS, [40]PASS, [41]PASS, > [42]PASS, [43]PASS, [44]PASS, [45]PASS, [46]PASS, [47]PASS, > [48]PASS, [49]PASS, [50]PASS, [51]PASS, [52]PASS) > > IGT changes > > Issues hit > > * igt@gem_ccs@block-copy-compressed: > + shard-tglb: NOTRUN -> [53]SKIP ([i915#5325]) > * igt@gem_create@create-massive: > + shard-skl: NOTRUN -> [54]DMESG-WARN ([i915#4991]) > * igt@gem_exec_balancer@parallel-balancer: > + shard-iclb: [55]PASS -> [56]SKIP ([i915#4525]) > * igt@gem_exec_fair@basic-none-rrul@rcs0: > + shard-tglb: [57]PASS -> [58]FAIL ([i915#2842]) +1 similar > issue > * igt@gem_exec_fair@basic-none-share@rcs0: > + shard-iclb: [59]PASS -> [60]FAIL ([i915#2842]) > * igt@gem_exec_fair@basic-none@vecs0: > + shard-apl: [61]PASS -> [62]FAIL ([i915#2842]) > * igt@gem_exec_fair@basic-pace@vcs1: > + shard-kbl: [63]PASS -> [64]FAIL ([i915#2842]) +1 similar issue > * igt@gem_exec_whisper@basic-queues-forked-all: > + shard-glk: [65]PASS -> [66]DMESG-WARN ([i915#118]) > * igt@gem_huc_copy@huc-copy: > + shard-glk: NOTRUN -> [67]SKIP ([fdo#109271] / [i915#2190]) > * igt@gem_lmem_swapping@parallel-random: > + shard-iclb: NOTRUN -> [68]SKIP ([i915#4613]) > * igt@gem_lmem_swapping@parallel-random-engines: > + shard-glk: NOTRUN -> [69]SKIP ([fdo#109271] / [i915#4613]) > * igt@gem_lmem_swapping@random: > + shard-apl: NOTRUN -> [70]SKIP ([fdo#109271] / [i915#4613]) +1 > similar issue > * igt@gem_lmem_swapping@random-engines: > + shard-skl: NOTRUN -> [71]SKIP ([fdo#109271] / [i915#4613]) +3 > similar issues > * igt@gem_pread@exhaustion: > + shard-skl: NOTRUN -> [72]WARN ([i915#2658]) > * igt@gem_pxp@create-protected-buffer: > + shard-iclb: NOTRUN -> [73]SKIP ([i915#4270]) > * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: > + shard-iclb: NOTRUN -> [74]SKIP ([i915#768]) > * igt@gem_userptr_blits@input-checking: > + shard-iclb: NOTRUN -> [75]DMESG-WARN ([i915#4991]) > * igt@gem_userptr_blits@unsync-unmap: > + shard-tglb: NOTRUN -> [76]SKIP ([i915#3297]) > * igt@gen7_exec_parse@oacontrol-tracking: > + shard-iclb: NOTRUN -> [77]SKIP ([fdo#109289]) +1 similar issue > * igt@gen9_exec_parse@allowed-all: > + shard-glk: [78]PASS -> [79]DMESG-WARN ([i915#1436] / > [i915#716]) > * igt@i915_module_load@reload-with-fault-injection: > + shard-skl: NOTRUN -> [80]DMESG-WARN ([i915#1982]) > * igt@i915_pm_dc@dc6-dpms: > + shard-skl: NOTRUN -> [81]FAIL ([i915#454]) +1 similar issue > * igt@i915_pm_rpm@modeset-lpsp-stress: > + shard-apl: NOTRUN -> [82]SKIP ([fdo#109271]) +114 similar > issues > * igt@i915_suspend@fence-restore-untiled: > + shard-tglb: [83]PASS -> [84]DMESG-WARN ([i915#2411] / > [i915#2867]) > * igt@kms_big_fb@4-tiled-32bpp-rotate-270: > + shard-iclb: NOTRUN -> [85]SKIP ([i915#5286]) +1 similar issue > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: > + shard-apl: NOTRUN -> [86]SKIP ([fdo#109271] / [i915#3777]) +2 > similar issues > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-fli > p: > + shard-skl: NOTRUN -> [87]SKIP ([fdo#109271] / [i915#3777]) +7 > similar issues > * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: > + shard-kbl: NOTRUN -> [88]SKIP ([fdo#109271]) +3 similar issues > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: > + shard-glk: NOTRUN -> [89]SKIP ([fdo#109271] / [i915#3777]) +1 > similar issue > * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > + shard-glk: NOTRUN -> [90]SKIP ([fdo#109271] / [i915#3886]) +5 > similar issues > * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > + shard-apl: NOTRUN -> [91]SKIP ([fdo#109271] / [i915#3886]) +4 > similar issues > * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > + shard-skl: NOTRUN -> [92]SKIP ([fdo#109271] / [i915#3886]) +11 > similar issues > * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: > + shard-iclb: NOTRUN -> [93]SKIP ([fdo#109278] / [i915#3886]) +2 > similar issues > * igt@kms_chamelium@dp-crc-multiple: > + shard-apl: NOTRUN -> [94]SKIP ([fdo#109271] / [fdo#111827]) +7 > similar issues > * igt@kms_color@pipe-d-ctm-blue-to-red: > + shard-iclb: NOTRUN -> [95]SKIP ([fdo#109278] / [i915#1149]) > * igt@kms_color_chamelium@pipe-a-ctm-0-5: > + shard-glk: NOTRUN -> [96]SKIP ([fdo#109271] / [fdo#111827]) +5 > similar issues > * igt@kms_color_chamelium@pipe-a-degamma: > + shard-iclb: NOTRUN -> [97]SKIP ([fdo#109284] / [fdo#111827]) > +1 similar issue > * igt@kms_color_chamelium@pipe-b-ctm-max: > + shard-skl: NOTRUN -> [98]SKIP ([fdo#109271] / [fdo#111827]) > +25 similar issues > * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: > + shard-iclb: NOTRUN -> [99]SKIP ([fdo#109278] / [fdo#109284] / > [fdo#111827]) > * igt@kms_content_protection@atomic-dpms: > + shard-apl: NOTRUN -> [100]TIMEOUT ([i915#1319]) > * igt@kms_content_protection@dp-mst-type-1: > + shard-iclb: NOTRUN -> [101]SKIP ([i915#3116]) > * igt@kms_content_protection@srm: > + shard-glk: NOTRUN -> [102]SKIP ([fdo#109271]) +85 similar > issues > * igt@kms_cursor_crc@pipe-a-cursor-suspend: > + shard-kbl: [103]PASS -> [104]DMESG-WARN ([i915#180]) +1 > similar issue > * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: > + shard-tglb: NOTRUN -> [105]SKIP ([fdo#109279] / [i915#3359]) > * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-s > ize: > + shard-iclb: NOTRUN -> [106]SKIP ([fdo#109274] / [fdo#109278]) > +1 similar issue > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > + shard-skl: [107]PASS -> [108]FAIL ([i915#2346]) > * igt@kms_cursor_legacy@pipe-d-single-bo: > + shard-glk: NOTRUN -> [109]SKIP ([fdo#109271] / [i915#533]) > * igt@kms_dp_tiled_display@basic-test-pattern: > + shard-iclb: NOTRUN -> [110]SKIP ([i915#426]) > * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: > + shard-iclb: NOTRUN -> [111]SKIP ([i915#5287]) +1 similar issue > * igt@kms_fbcon_fbt@fbc-suspend: > + shard-kbl: [112]PASS -> [113]INCOMPLETE ([i915#180] / > [i915#636]) > * igt@kms_flip@2x-flip-vs-fences-interruptible: > + shard-tglb: NOTRUN -> [114]SKIP ([fdo#109274] / [fdo#111825]) > * igt@kms_flip@2x-flip-vs-wf_vblank: > + shard-iclb: NOTRUN -> [115]SKIP ([fdo#109274]) +3 similar > issues > * igt@kms_flip@flip-vs-suspend@b-edp1: > + shard-skl: [116]PASS -> [117]INCOMPLETE ([i915#4839] / > [i915#636]) > * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: > + shard-skl: [118]PASS -> [119]FAIL ([i915#2122]) +2 similar > issues > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscal > ing: > + shard-skl: NOTRUN -> [120]INCOMPLETE ([i915#3701]) > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: > + shard-tglb: NOTRUN -> [121]SKIP ([fdo#109280] / [fdo#111825]) > +1 similar issue > * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: > + shard-iclb: NOTRUN -> [122]SKIP ([fdo#109280]) +16 similar > issues > * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: > + shard-snb: [123]PASS -> [124]SKIP ([fdo#109271]) +2 similar > issues > * igt@kms_hdr@static-toggle-suspend: > + shard-iclb: NOTRUN -> [125]SKIP ([i915#3555]) > * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: > + shard-apl: [126]PASS -> [127]DMESG-WARN ([i915#180]) +4 > similar issues > * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: > + shard-skl: NOTRUN -> [128]FAIL ([fdo#108145] / [i915#265]) +4 > similar issues > * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > + shard-apl: NOTRUN -> [129]FAIL ([fdo#108145] / [i915#265]) > * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > + shard-glk: NOTRUN -> [130]FAIL ([fdo#108145] / [i915#265]) +1 > similar issue > * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: > + shard-apl: NOTRUN -> [131]FAIL ([i915#265]) > * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: > + shard-iclb: NOTRUN -> [132]SKIP ([fdo#109278]) +18 similar > issues > * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- > b-edp-1-downscale-with-pixel-format: > + shard-iclb: [133]PASS -> [134]INCOMPLETE ([i915#5293]) > * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp > -1-scaler-with-rotation: > + shard-iclb: NOTRUN -> [135]SKIP ([i915#5176]) +2 similar > issues > * igt@kms_psr2_sf@cursor-plane-update-sf: > + shard-glk: NOTRUN -> [136]SKIP ([fdo#109271] / [i915#658]) +1 > similar issue > * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: > + shard-iclb: NOTRUN -> [137]SKIP ([fdo#111068] / [i915#658]) > * igt@kms_psr2_sf@plane-move-sf-dmg-area: > + shard-skl: NOTRUN -> [138]SKIP ([fdo#109271] / [i915#658]) +2 > similar issues > * igt@kms_psr@psr2_no_drrs: > + shard-iclb: [139]PASS -> [140]SKIP ([fdo#109441]) +3 similar > issues > * igt@kms_psr@psr2_primary_page_flip: > + shard-iclb: NOTRUN -> [141]SKIP ([fdo#109441]) > * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > + shard-iclb: NOTRUN -> [142]SKIP ([i915#5289]) > * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: > + shard-skl: NOTRUN -> [143]SKIP ([fdo#109271]) +307 similar > issues > * igt@kms_vblank@pipe-d-wait-idle: > + shard-skl: NOTRUN -> [144]SKIP ([fdo#109271] / [i915#533]) > * igt@kms_writeback@writeback-check-output: > + shard-skl: NOTRUN -> [145]SKIP ([fdo#109271] / [i915#2437]) > * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: > + shard-iclb: NOTRUN -> [146]SKIP ([i915#2530]) > * igt@perf@polling-small-buf: > + shard-skl: NOTRUN -> [147]FAIL ([i915#1722]) > * igt@prime_nv_pcopy@test3_3: > + shard-iclb: NOTRUN -> [148]SKIP ([fdo#109291]) +2 similar > issues > * igt@sysfs_clients@create: > + shard-apl: NOTRUN -> [149]SKIP ([fdo#109271] / [i915#2994]) +2 > similar issues > * igt@sysfs_clients@recycle-many: > + shard-skl: NOTRUN -> [150]SKIP ([fdo#109271] / [i915#2994]) +3 > similar issues > > Possible fixes > > * igt@gem_ctx_persistence@many-contexts: > + {shard-rkl}: [151]FAIL ([i915#2410]) -> [152]PASS > * igt@gem_exec_capture@pi@bcs0: > + {shard-tglu}: [153]INCOMPLETE ([i915#3371] / [i915#3731]) -> > [154]PASS > * igt@gem_exec_fair@basic-deadline: > + shard-glk: [155]FAIL ([i915#2846]) -> [156]PASS > * igt@gem_exec_fair@basic-flow@rcs0: > + shard-tglb: [157]FAIL ([i915#2842]) -> [158]PASS > * igt@gem_exec_fair@basic-none@vcs0: > + shard-kbl: [159]FAIL ([i915#2842]) -> [PASS][158] +1 similar > issue > > References > > 1. https://patchwork.freedesktop.org/series/101301/ > 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html > 3. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html > 4. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html > 5. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html > 6. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html > 7. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html > 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html > 9. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html > 10. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html > 11. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html > 12. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html > 13. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html > 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html > 15. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html > 16. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html > 17. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html > 18. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html > 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html > 20. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html > 21. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html > 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html > 23. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html > 24. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html > 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html > 26. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html > 27. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html > 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html > 29. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html > 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html > 31. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html > 32. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html > 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html > 34. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html > 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html > 36. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html > 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html > 38. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html > 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html > 40. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html > 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html > 42. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html > 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html > 44. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html > 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html > 46. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html > 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html > 48. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html > 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html > 50. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html > 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html > 52. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html > 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_ccs@block-copy-compressed.html > 54. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_create@create-massive.html > 55. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html > 56. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html > 57. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb6/igt@gem_exec_fair@basic-none-rrul@rcs0.html > 58. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html > 59. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html > 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html > 61. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html > 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html > 63. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html > 64. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html > 65. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/igt@gem_exec_whisper@basic-queues-forked-all.html > 66. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html > 67. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gem_huc_copy@huc-copy.html > 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_lmem_swapping@parallel-random.html > 69. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@gem_lmem_swapping@parallel-random-engines.html > 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@gem_lmem_swapping@random.html > 71. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_lmem_swapping@random-engines.html > 72. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@gem_pread@exhaustion.html > 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@gem_pxp@create-protected-buffer.html > 74. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html > 75. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_userptr_blits@input-checking.html > 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@gem_userptr_blits@unsync-unmap.html > 77. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html > 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/igt@gen9_exec_parse@allowed-all.html > 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gen9_exec_parse@allowed-all.html > 80. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_module_load@reload-with-fault-injection.html > 81. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_pm_dc@dc6-dpms.html > 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@i915_pm_rpm@modeset-lpsp-stress.html > 83. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb3/igt@i915_suspend@fence-restore-untiled.html > 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb7/igt@i915_suspend@fence-restore-untiled.html > 85. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html > 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > 87. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html > 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html > 89. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > 91. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html > 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > 93. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html > 94. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html > 95. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color@pipe-d-ctm-blue-to-red.html > 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html > 97. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-a-degamma.html > 98. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-max.html > 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html > 100. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_content_protection@atomic-dpms.html > 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_content_protection@dp-mst-type-1.html > 102. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_content_protection@srm.html > 103. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html > 104. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html > 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html > 106. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html > 107. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > 108. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_cursor_legacy@pipe-d-single-bo.html > 110. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern.html > 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html > 112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html > 113. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html > 114. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_flip@2x-flip-vs-fences-interruptible.html > 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb6/igt@kms_flip@2x-flip-vs-wf_vblank.html > 116. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl7/igt@kms_flip@flip-vs-suspend@b-edp1.html > 117. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@flip-vs-suspend@b-edp1.html > 118. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > 119. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html > 121. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html > 122. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html > 123. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html > 124. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-snb7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html > 125. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_hdr@static-toggle-suspend.html > 126. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html > 127. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html > 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html > 129. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html > 131. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html > 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html > 133. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb3/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html > 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html > 135. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html > 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_psr2_sf@cursor-plane-update-sf.html > 137. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html > 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html > 139. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb2/igt@kms_psr@psr2_no_drrs.html > 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb4/igt@kms_psr@psr2_no_drrs.html > 141. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html > 142. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html > 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html > 144. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_vblank@pipe-d-wait-idle.html > 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_writeback@writeback-check-output.html > 146. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html > 147. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@perf@polling-small-buf.html > 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@prime_nv_pcopy@test3_3.html > 149. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@sysfs_clients@create.html > 150. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@sysfs_clients@recycle-many.html > 151. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html > 152. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html > 153. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglu-2/igt@gem_exec_capture@pi@bcs0.html > 154. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglu-3/igt@gem_exec_capture@pi@bcs0.html > 155. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/igt@gem_exec_fair@basic-deadline.html > 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/igt@gem_exec_fair@basic-deadline.html > 157. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html > 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html > 159. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@gem_exec_fa ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-04-06 10:36 ` Anshuman Gupta @ 2022-04-06 10:53 ` Tvrtko Ursulin 2022-04-06 11:10 ` Gupta, Anshuman 0 siblings, 1 reply; 7+ messages in thread From: Tvrtko Ursulin @ 2022-04-06 10:53 UTC (permalink / raw) To: Anshuman Gupta, intel-gfx@lists.freedesktop.org On 06/04/2022 11:36, Anshuman Gupta wrote: > On 2022-03-15 at 05:27:39 +0530, Patchwork wrote: > Pushed to drm-intel-next. > Thanks for review and patch. Probably better if went through drm-intel-gt-next (not the files it touches are mostly in gt/ and registers have GT in their names, and RC6 is obviously a render thing) but it's fine, small so no harm done, just note for the future please. Regards, Tvrtko > Anshuman Gupta. >> Patch Details >> >> Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() >> (rev2) >> URL: [1]https://patchwork.freedesktop.org/series/101301/ >> State: success >> Details: >> [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html >> >> CI Bug Log - changes from CI_DRM_11360_full -> Patchwork_22559_full >> >> Summary >> >> SUCCESS >> >> No regressions found. >> >> Participating hosts (13 -> 13) >> >> No changes in participating hosts >> >> Known issues >> >> Here are the changes found in Patchwork_22559_full that come from known >> issues: >> >> CI changes >> >> Possible fixes >> >> * boot: >> + shard-glk: ([3]PASS, [4]PASS, [5]PASS, [6]PASS, [7]PASS, >> [8]FAIL, [9]PASS, [10]PASS, [11]PASS, [12]PASS, [13]PASS, >> [14]FAIL, [15]PASS, [16]PASS, [17]PASS, [18]PASS, [19]PASS, >> [20]PASS, [21]PASS, [22]PASS, [23]PASS, [24]PASS, [25]PASS, >> [26]PASS, [27]PASS) ([i915#4392]) -> ([28]PASS, [29]PASS, >> [30]PASS, [31]PASS, [32]PASS, [33]PASS, [34]PASS, [35]PASS, >> [36]PASS, [37]PASS, [38]PASS, [39]PASS, [40]PASS, [41]PASS, >> [42]PASS, [43]PASS, [44]PASS, [45]PASS, [46]PASS, [47]PASS, >> [48]PASS, [49]PASS, [50]PASS, [51]PASS, [52]PASS) >> >> IGT changes >> >> Issues hit >> >> * igt@gem_ccs@block-copy-compressed: >> + shard-tglb: NOTRUN -> [53]SKIP ([i915#5325]) >> * igt@gem_create@create-massive: >> + shard-skl: NOTRUN -> [54]DMESG-WARN ([i915#4991]) >> * igt@gem_exec_balancer@parallel-balancer: >> + shard-iclb: [55]PASS -> [56]SKIP ([i915#4525]) >> * igt@gem_exec_fair@basic-none-rrul@rcs0: >> + shard-tglb: [57]PASS -> [58]FAIL ([i915#2842]) +1 similar >> issue >> * igt@gem_exec_fair@basic-none-share@rcs0: >> + shard-iclb: [59]PASS -> [60]FAIL ([i915#2842]) >> * igt@gem_exec_fair@basic-none@vecs0: >> + shard-apl: [61]PASS -> [62]FAIL ([i915#2842]) >> * igt@gem_exec_fair@basic-pace@vcs1: >> + shard-kbl: [63]PASS -> [64]FAIL ([i915#2842]) +1 similar issue >> * igt@gem_exec_whisper@basic-queues-forked-all: >> + shard-glk: [65]PASS -> [66]DMESG-WARN ([i915#118]) >> * igt@gem_huc_copy@huc-copy: >> + shard-glk: NOTRUN -> [67]SKIP ([fdo#109271] / [i915#2190]) >> * igt@gem_lmem_swapping@parallel-random: >> + shard-iclb: NOTRUN -> [68]SKIP ([i915#4613]) >> * igt@gem_lmem_swapping@parallel-random-engines: >> + shard-glk: NOTRUN -> [69]SKIP ([fdo#109271] / [i915#4613]) >> * igt@gem_lmem_swapping@random: >> + shard-apl: NOTRUN -> [70]SKIP ([fdo#109271] / [i915#4613]) +1 >> similar issue >> * igt@gem_lmem_swapping@random-engines: >> + shard-skl: NOTRUN -> [71]SKIP ([fdo#109271] / [i915#4613]) +3 >> similar issues >> * igt@gem_pread@exhaustion: >> + shard-skl: NOTRUN -> [72]WARN ([i915#2658]) >> * igt@gem_pxp@create-protected-buffer: >> + shard-iclb: NOTRUN -> [73]SKIP ([i915#4270]) >> * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: >> + shard-iclb: NOTRUN -> [74]SKIP ([i915#768]) >> * igt@gem_userptr_blits@input-checking: >> + shard-iclb: NOTRUN -> [75]DMESG-WARN ([i915#4991]) >> * igt@gem_userptr_blits@unsync-unmap: >> + shard-tglb: NOTRUN -> [76]SKIP ([i915#3297]) >> * igt@gen7_exec_parse@oacontrol-tracking: >> + shard-iclb: NOTRUN -> [77]SKIP ([fdo#109289]) +1 similar issue >> * igt@gen9_exec_parse@allowed-all: >> + shard-glk: [78]PASS -> [79]DMESG-WARN ([i915#1436] / >> [i915#716]) >> * igt@i915_module_load@reload-with-fault-injection: >> + shard-skl: NOTRUN -> [80]DMESG-WARN ([i915#1982]) >> * igt@i915_pm_dc@dc6-dpms: >> + shard-skl: NOTRUN -> [81]FAIL ([i915#454]) +1 similar issue >> * igt@i915_pm_rpm@modeset-lpsp-stress: >> + shard-apl: NOTRUN -> [82]SKIP ([fdo#109271]) +114 similar >> issues >> * igt@i915_suspend@fence-restore-untiled: >> + shard-tglb: [83]PASS -> [84]DMESG-WARN ([i915#2411] / >> [i915#2867]) >> * igt@kms_big_fb@4-tiled-32bpp-rotate-270: >> + shard-iclb: NOTRUN -> [85]SKIP ([i915#5286]) +1 similar issue >> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: >> + shard-apl: NOTRUN -> [86]SKIP ([fdo#109271] / [i915#3777]) +2 >> similar issues >> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-fli >> p: >> + shard-skl: NOTRUN -> [87]SKIP ([fdo#109271] / [i915#3777]) +7 >> similar issues >> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: >> + shard-kbl: NOTRUN -> [88]SKIP ([fdo#109271]) +3 similar issues >> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: >> + shard-glk: NOTRUN -> [89]SKIP ([fdo#109271] / [i915#3777]) +1 >> similar issue >> * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: >> + shard-glk: NOTRUN -> [90]SKIP ([fdo#109271] / [i915#3886]) +5 >> similar issues >> * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: >> + shard-apl: NOTRUN -> [91]SKIP ([fdo#109271] / [i915#3886]) +4 >> similar issues >> * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: >> + shard-skl: NOTRUN -> [92]SKIP ([fdo#109271] / [i915#3886]) +11 >> similar issues >> * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: >> + shard-iclb: NOTRUN -> [93]SKIP ([fdo#109278] / [i915#3886]) +2 >> similar issues >> * igt@kms_chamelium@dp-crc-multiple: >> + shard-apl: NOTRUN -> [94]SKIP ([fdo#109271] / [fdo#111827]) +7 >> similar issues >> * igt@kms_color@pipe-d-ctm-blue-to-red: >> + shard-iclb: NOTRUN -> [95]SKIP ([fdo#109278] / [i915#1149]) >> * igt@kms_color_chamelium@pipe-a-ctm-0-5: >> + shard-glk: NOTRUN -> [96]SKIP ([fdo#109271] / [fdo#111827]) +5 >> similar issues >> * igt@kms_color_chamelium@pipe-a-degamma: >> + shard-iclb: NOTRUN -> [97]SKIP ([fdo#109284] / [fdo#111827]) >> +1 similar issue >> * igt@kms_color_chamelium@pipe-b-ctm-max: >> + shard-skl: NOTRUN -> [98]SKIP ([fdo#109271] / [fdo#111827]) >> +25 similar issues >> * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: >> + shard-iclb: NOTRUN -> [99]SKIP ([fdo#109278] / [fdo#109284] / >> [fdo#111827]) >> * igt@kms_content_protection@atomic-dpms: >> + shard-apl: NOTRUN -> [100]TIMEOUT ([i915#1319]) >> * igt@kms_content_protection@dp-mst-type-1: >> + shard-iclb: NOTRUN -> [101]SKIP ([i915#3116]) >> * igt@kms_content_protection@srm: >> + shard-glk: NOTRUN -> [102]SKIP ([fdo#109271]) +85 similar >> issues >> * igt@kms_cursor_crc@pipe-a-cursor-suspend: >> + shard-kbl: [103]PASS -> [104]DMESG-WARN ([i915#180]) +1 >> similar issue >> * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: >> + shard-tglb: NOTRUN -> [105]SKIP ([fdo#109279] / [i915#3359]) >> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-s >> ize: >> + shard-iclb: NOTRUN -> [106]SKIP ([fdo#109274] / [fdo#109278]) >> +1 similar issue >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: >> + shard-skl: [107]PASS -> [108]FAIL ([i915#2346]) >> * igt@kms_cursor_legacy@pipe-d-single-bo: >> + shard-glk: NOTRUN -> [109]SKIP ([fdo#109271] / [i915#533]) >> * igt@kms_dp_tiled_display@basic-test-pattern: >> + shard-iclb: NOTRUN -> [110]SKIP ([i915#426]) >> * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: >> + shard-iclb: NOTRUN -> [111]SKIP ([i915#5287]) +1 similar issue >> * igt@kms_fbcon_fbt@fbc-suspend: >> + shard-kbl: [112]PASS -> [113]INCOMPLETE ([i915#180] / >> [i915#636]) >> * igt@kms_flip@2x-flip-vs-fences-interruptible: >> + shard-tglb: NOTRUN -> [114]SKIP ([fdo#109274] / [fdo#111825]) >> * igt@kms_flip@2x-flip-vs-wf_vblank: >> + shard-iclb: NOTRUN -> [115]SKIP ([fdo#109274]) +3 similar >> issues >> * igt@kms_flip@flip-vs-suspend@b-edp1: >> + shard-skl: [116]PASS -> [117]INCOMPLETE ([i915#4839] / >> [i915#636]) >> * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: >> + shard-skl: [118]PASS -> [119]FAIL ([i915#2122]) +2 similar >> issues >> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscal >> ing: >> + shard-skl: NOTRUN -> [120]INCOMPLETE ([i915#3701]) >> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: >> + shard-tglb: NOTRUN -> [121]SKIP ([fdo#109280] / [fdo#111825]) >> +1 similar issue >> * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: >> + shard-iclb: NOTRUN -> [122]SKIP ([fdo#109280]) +16 similar >> issues >> * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: >> + shard-snb: [123]PASS -> [124]SKIP ([fdo#109271]) +2 similar >> issues >> * igt@kms_hdr@static-toggle-suspend: >> + shard-iclb: NOTRUN -> [125]SKIP ([i915#3555]) >> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: >> + shard-apl: [126]PASS -> [127]DMESG-WARN ([i915#180]) +4 >> similar issues >> * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: >> + shard-skl: NOTRUN -> [128]FAIL ([fdo#108145] / [i915#265]) +4 >> similar issues >> * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: >> + shard-apl: NOTRUN -> [129]FAIL ([fdo#108145] / [i915#265]) >> * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: >> + shard-glk: NOTRUN -> [130]FAIL ([fdo#108145] / [i915#265]) +1 >> similar issue >> * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: >> + shard-apl: NOTRUN -> [131]FAIL ([i915#265]) >> * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: >> + shard-iclb: NOTRUN -> [132]SKIP ([fdo#109278]) +18 similar >> issues >> * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- >> b-edp-1-downscale-with-pixel-format: >> + shard-iclb: [133]PASS -> [134]INCOMPLETE ([i915#5293]) >> * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp >> -1-scaler-with-rotation: >> + shard-iclb: NOTRUN -> [135]SKIP ([i915#5176]) +2 similar >> issues >> * igt@kms_psr2_sf@cursor-plane-update-sf: >> + shard-glk: NOTRUN -> [136]SKIP ([fdo#109271] / [i915#658]) +1 >> similar issue >> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: >> + shard-iclb: NOTRUN -> [137]SKIP ([fdo#111068] / [i915#658]) >> * igt@kms_psr2_sf@plane-move-sf-dmg-area: >> + shard-skl: NOTRUN -> [138]SKIP ([fdo#109271] / [i915#658]) +2 >> similar issues >> * igt@kms_psr@psr2_no_drrs: >> + shard-iclb: [139]PASS -> [140]SKIP ([fdo#109441]) +3 similar >> issues >> * igt@kms_psr@psr2_primary_page_flip: >> + shard-iclb: NOTRUN -> [141]SKIP ([fdo#109441]) >> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: >> + shard-iclb: NOTRUN -> [142]SKIP ([i915#5289]) >> * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: >> + shard-skl: NOTRUN -> [143]SKIP ([fdo#109271]) +307 similar >> issues >> * igt@kms_vblank@pipe-d-wait-idle: >> + shard-skl: NOTRUN -> [144]SKIP ([fdo#109271] / [i915#533]) >> * igt@kms_writeback@writeback-check-output: >> + shard-skl: NOTRUN -> [145]SKIP ([fdo#109271] / [i915#2437]) >> * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: >> + shard-iclb: NOTRUN -> [146]SKIP ([i915#2530]) >> * igt@perf@polling-small-buf: >> + shard-skl: NOTRUN -> [147]FAIL ([i915#1722]) >> * igt@prime_nv_pcopy@test3_3: >> + shard-iclb: NOTRUN -> [148]SKIP ([fdo#109291]) +2 similar >> issues >> * igt@sysfs_clients@create: >> + shard-apl: NOTRUN -> [149]SKIP ([fdo#109271] / [i915#2994]) +2 >> similar issues >> * igt@sysfs_clients@recycle-many: >> + shard-skl: NOTRUN -> [150]SKIP ([fdo#109271] / [i915#2994]) +3 >> similar issues >> >> Possible fixes >> >> * igt@gem_ctx_persistence@many-contexts: >> + {shard-rkl}: [151]FAIL ([i915#2410]) -> [152]PASS >> * igt@gem_exec_capture@pi@bcs0: >> + {shard-tglu}: [153]INCOMPLETE ([i915#3371] / [i915#3731]) -> >> [154]PASS >> * igt@gem_exec_fair@basic-deadline: >> + shard-glk: [155]FAIL ([i915#2846]) -> [156]PASS >> * igt@gem_exec_fair@basic-flow@rcs0: >> + shard-tglb: [157]FAIL ([i915#2842]) -> [158]PASS >> * igt@gem_exec_fair@basic-none@vcs0: >> + shard-kbl: [159]FAIL ([i915#2842]) -> [PASS][158] +1 similar >> issue >> >> References >> >> 1. https://patchwork.freedesktop.org/series/101301/ >> 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html >> 3. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html >> 4. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html >> 5. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/boot.html >> 6. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html >> 7. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk2/boot.html >> 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html >> 9. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html >> 10. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html >> 11. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk3/boot.html >> 12. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html >> 13. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html >> 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html >> 15. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/boot.html >> 16. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html >> 17. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html >> 18. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html >> 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk9/boot.html >> 20. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/boot.html >> 21. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html >> 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html >> 23. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk8/boot.html >> 24. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html >> 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html >> 26. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk7/boot.html >> 27. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk6/boot.html >> 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html >> 29. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html >> 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html >> 31. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk9/boot.html >> 32. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html >> 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html >> 34. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk8/boot.html >> 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html >> 36. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk7/boot.html >> 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html >> 38. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html >> 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk6/boot.html >> 40. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html >> 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html >> 42. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/boot.html >> 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html >> 44. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk4/boot.html >> 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html >> 46. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/boot.html >> 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html >> 48. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html >> 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/boot.html >> 50. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html >> 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html >> 52. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/boot.html >> 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_ccs@block-copy-compressed.html >> 54. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_create@create-massive.html >> 55. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html >> 56. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html >> 57. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb6/igt@gem_exec_fair@basic-none-rrul@rcs0.html >> 58. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html >> 59. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html >> 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html >> 61. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html >> 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html >> 63. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html >> 64. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html >> 65. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk5/igt@gem_exec_whisper@basic-queues-forked-all.html >> 66. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk2/igt@gem_exec_whisper@basic-queues-forked-all.html >> 67. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gem_huc_copy@huc-copy.html >> 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_lmem_swapping@parallel-random.html >> 69. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@gem_lmem_swapping@parallel-random-engines.html >> 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@gem_lmem_swapping@random.html >> 71. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@gem_lmem_swapping@random-engines.html >> 72. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@gem_pread@exhaustion.html >> 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@gem_pxp@create-protected-buffer.html >> 74. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html >> 75. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@gem_userptr_blits@input-checking.html >> 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@gem_userptr_blits@unsync-unmap.html >> 77. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html >> 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk4/igt@gen9_exec_parse@allowed-all.html >> 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@gen9_exec_parse@allowed-all.html >> 80. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_module_load@reload-with-fault-injection.html >> 81. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@i915_pm_dc@dc6-dpms.html >> 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@i915_pm_rpm@modeset-lpsp-stress.html >> 83. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb3/igt@i915_suspend@fence-restore-untiled.html >> 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb7/igt@i915_suspend@fence-restore-untiled.html >> 85. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html >> 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html >> 87. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html >> 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html >> 89. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html >> 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html >> 91. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html >> 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html >> 93. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html >> 94. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_chamelium@dp-crc-multiple.html >> 95. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color@pipe-d-ctm-blue-to-red.html >> 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html >> 97. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-a-degamma.html >> 98. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-max.html >> 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html >> 100. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_content_protection@atomic-dpms.html >> 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_content_protection@dp-mst-type-1.html >> 102. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_content_protection@srm.html >> 103. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html >> 104. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html >> 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html >> 106. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html >> 107. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html >> 108. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html >> 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_cursor_legacy@pipe-d-single-bo.html >> 110. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern.html >> 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html >> 112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html >> 113. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html >> 114. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_flip@2x-flip-vs-fences-interruptible.html >> 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb6/igt@kms_flip@2x-flip-vs-wf_vblank.html >> 116. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl7/igt@kms_flip@flip-vs-suspend@b-edp1.html >> 117. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@flip-vs-suspend@b-edp1.html >> 118. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html >> 119. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html >> 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html >> 121. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html >> 122. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html >> 123. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html >> 124. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-snb7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html >> 125. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb1/igt@kms_hdr@static-toggle-suspend.html >> 126. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html >> 127. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html >> 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html >> 129. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html >> 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html >> 131. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html >> 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html >> 133. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb3/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html >> 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe-b-edp-1-downscale-with-pixel-format.html >> 135. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp-1-scaler-with-rotation.html >> 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk1/igt@kms_psr2_sf@cursor-plane-update-sf.html >> 137. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html >> 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html >> 139. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-iclb2/igt@kms_psr@psr2_no_drrs.html >> 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb4/igt@kms_psr@psr2_no_drrs.html >> 141. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html >> 142. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html >> 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html >> 144. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@kms_vblank@pipe-d-wait-idle.html >> 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl9/igt@kms_writeback@writeback-check-output.html >> 146. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html >> 147. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@perf@polling-small-buf.html >> 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-iclb7/igt@prime_nv_pcopy@test3_3.html >> 149. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-apl4/igt@sysfs_clients@create.html >> 150. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-skl10/igt@sysfs_clients@recycle-many.html >> 151. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html >> 152. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html >> 153. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglu-2/igt@gem_exec_capture@pi@bcs0.html >> 154. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglu-3/igt@gem_exec_capture@pi@bcs0.html >> 155. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-glk1/igt@gem_exec_fair@basic-deadline.html >> 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-glk3/igt@gem_exec_fair@basic-deadline.html >> 157. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglb2/igt@gem_exec_fair@basic-flow@rcs0.html >> 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html >> 159. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@gem_exec_fa ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-04-06 10:53 ` Tvrtko Ursulin @ 2022-04-06 11:10 ` Gupta, Anshuman 2022-04-07 13:11 ` Tvrtko Ursulin 0 siblings, 1 reply; 7+ messages in thread From: Gupta, Anshuman @ 2022-04-06 11:10 UTC (permalink / raw) To: Tvrtko Ursulin, intel-gfx@lists.freedesktop.org > -----Original Message----- > From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Sent: Wednesday, April 6, 2022 4:23 PM > To: Gupta, Anshuman <anshuman.gupta@intel.com>; intel- > gfx@lists.freedesktop.org > Subject: Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant > IS_VALLEYVIEW check in __get_rc6() (rev2) > > > On 06/04/2022 11:36, Anshuman Gupta wrote: > > On 2022-03-15 at 05:27:39 +0530, Patchwork wrote: > > Pushed to drm-intel-next. > > Thanks for review and patch. > > Probably better if went through drm-intel-gt-next (not the files it touches are > mostly in gt/ and registers have GT in their names, and RC6 is obviously a render > thing) but it's fine, small so no harm done, just note for the future please. Thanks for letting me know about it, i was not aware about drm-intel-gt-next. Will take care of it in future. Is there any Doc on different intel branches to refer. Thanks, Anshuman Gupta. > > Regards, > > Tvrtko > > > Anshuman Gupta. > >> Patch Details > >> > >> Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in > __get_rc6() > >> (rev2) > >> URL: [1]https://patchwork.freedesktop.org/series/101301/ > >> State: success > >> Details: > >> > >> [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.htm > >> l > >> > >> CI Bug Log - changes from CI_DRM_11360_full -> > >> Patchwork_22559_full > >> > >> Summary > >> > >> SUCCESS > >> > >> No regressions found. > >> > >> Participating hosts (13 -> 13) > >> > >> No changes in participating hosts > >> > >> Known issues > >> > >> Here are the changes found in Patchwork_22559_full that come from > known > >> issues: > >> > >> CI changes > >> > >> Possible fixes > >> > >> * boot: > >> + shard-glk: ([3]PASS, [4]PASS, [5]PASS, [6]PASS, [7]PASS, > >> [8]FAIL, [9]PASS, [10]PASS, [11]PASS, [12]PASS, [13]PASS, > >> [14]FAIL, [15]PASS, [16]PASS, [17]PASS, [18]PASS, [19]PASS, > >> [20]PASS, [21]PASS, [22]PASS, [23]PASS, [24]PASS, [25]PASS, > >> [26]PASS, [27]PASS) ([i915#4392]) -> ([28]PASS, [29]PASS, > >> [30]PASS, [31]PASS, [32]PASS, [33]PASS, [34]PASS, [35]PASS, > >> [36]PASS, [37]PASS, [38]PASS, [39]PASS, [40]PASS, [41]PASS, > >> [42]PASS, [43]PASS, [44]PASS, [45]PASS, [46]PASS, [47]PASS, > >> [48]PASS, [49]PASS, [50]PASS, [51]PASS, [52]PASS) > >> > >> IGT changes > >> > >> Issues hit > >> > >> * igt@gem_ccs@block-copy-compressed: > >> + shard-tglb: NOTRUN -> [53]SKIP ([i915#5325]) > >> * igt@gem_create@create-massive: > >> + shard-skl: NOTRUN -> [54]DMESG-WARN ([i915#4991]) > >> * igt@gem_exec_balancer@parallel-balancer: > >> + shard-iclb: [55]PASS -> [56]SKIP ([i915#4525]) > >> * igt@gem_exec_fair@basic-none-rrul@rcs0: > >> + shard-tglb: [57]PASS -> [58]FAIL ([i915#2842]) +1 similar > >> issue > >> * igt@gem_exec_fair@basic-none-share@rcs0: > >> + shard-iclb: [59]PASS -> [60]FAIL ([i915#2842]) > >> * igt@gem_exec_fair@basic-none@vecs0: > >> + shard-apl: [61]PASS -> [62]FAIL ([i915#2842]) > >> * igt@gem_exec_fair@basic-pace@vcs1: > >> + shard-kbl: [63]PASS -> [64]FAIL ([i915#2842]) +1 similar issue > >> * igt@gem_exec_whisper@basic-queues-forked-all: > >> + shard-glk: [65]PASS -> [66]DMESG-WARN ([i915#118]) > >> * igt@gem_huc_copy@huc-copy: > >> + shard-glk: NOTRUN -> [67]SKIP ([fdo#109271] / [i915#2190]) > >> * igt@gem_lmem_swapping@parallel-random: > >> + shard-iclb: NOTRUN -> [68]SKIP ([i915#4613]) > >> * igt@gem_lmem_swapping@parallel-random-engines: > >> + shard-glk: NOTRUN -> [69]SKIP ([fdo#109271] / [i915#4613]) > >> * igt@gem_lmem_swapping@random: > >> + shard-apl: NOTRUN -> [70]SKIP ([fdo#109271] / [i915#4613]) +1 > >> similar issue > >> * igt@gem_lmem_swapping@random-engines: > >> + shard-skl: NOTRUN -> [71]SKIP ([fdo#109271] / [i915#4613]) +3 > >> similar issues > >> * igt@gem_pread@exhaustion: > >> + shard-skl: NOTRUN -> [72]WARN ([i915#2658]) > >> * igt@gem_pxp@create-protected-buffer: > >> + shard-iclb: NOTRUN -> [73]SKIP ([i915#4270]) > >> * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: > >> + shard-iclb: NOTRUN -> [74]SKIP ([i915#768]) > >> * igt@gem_userptr_blits@input-checking: > >> + shard-iclb: NOTRUN -> [75]DMESG-WARN ([i915#4991]) > >> * igt@gem_userptr_blits@unsync-unmap: > >> + shard-tglb: NOTRUN -> [76]SKIP ([i915#3297]) > >> * igt@gen7_exec_parse@oacontrol-tracking: > >> + shard-iclb: NOTRUN -> [77]SKIP ([fdo#109289]) +1 similar issue > >> * igt@gen9_exec_parse@allowed-all: > >> + shard-glk: [78]PASS -> [79]DMESG-WARN ([i915#1436] / > >> [i915#716]) > >> * igt@i915_module_load@reload-with-fault-injection: > >> + shard-skl: NOTRUN -> [80]DMESG-WARN ([i915#1982]) > >> * igt@i915_pm_dc@dc6-dpms: > >> + shard-skl: NOTRUN -> [81]FAIL ([i915#454]) +1 similar issue > >> * igt@i915_pm_rpm@modeset-lpsp-stress: > >> + shard-apl: NOTRUN -> [82]SKIP ([fdo#109271]) +114 similar > >> issues > >> * igt@i915_suspend@fence-restore-untiled: > >> + shard-tglb: [83]PASS -> [84]DMESG-WARN ([i915#2411] / > >> [i915#2867]) > >> * igt@kms_big_fb@4-tiled-32bpp-rotate-270: > >> + shard-iclb: NOTRUN -> [85]SKIP ([i915#5286]) +1 similar issue > >> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: > >> + shard-apl: NOTRUN -> [86]SKIP ([fdo#109271] / [i915#3777]) +2 > >> similar issues > >> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-fli > >> p: > >> + shard-skl: NOTRUN -> [87]SKIP ([fdo#109271] / [i915#3777]) +7 > >> similar issues > >> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: > >> + shard-kbl: NOTRUN -> [88]SKIP ([fdo#109271]) +3 similar issues > >> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: > >> + shard-glk: NOTRUN -> [89]SKIP ([fdo#109271] / [i915#3777]) +1 > >> similar issue > >> * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > >> + shard-glk: NOTRUN -> [90]SKIP ([fdo#109271] / [i915#3886]) +5 > >> similar issues > >> * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: > >> + shard-apl: NOTRUN -> [91]SKIP ([fdo#109271] / [i915#3886]) +4 > >> similar issues > >> * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > >> + shard-skl: NOTRUN -> [92]SKIP ([fdo#109271] / [i915#3886]) +11 > >> similar issues > >> * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: > >> + shard-iclb: NOTRUN -> [93]SKIP ([fdo#109278] / [i915#3886]) +2 > >> similar issues > >> * igt@kms_chamelium@dp-crc-multiple: > >> + shard-apl: NOTRUN -> [94]SKIP ([fdo#109271] / [fdo#111827]) +7 > >> similar issues > >> * igt@kms_color@pipe-d-ctm-blue-to-red: > >> + shard-iclb: NOTRUN -> [95]SKIP ([fdo#109278] / [i915#1149]) > >> * igt@kms_color_chamelium@pipe-a-ctm-0-5: > >> + shard-glk: NOTRUN -> [96]SKIP ([fdo#109271] / [fdo#111827]) +5 > >> similar issues > >> * igt@kms_color_chamelium@pipe-a-degamma: > >> + shard-iclb: NOTRUN -> [97]SKIP ([fdo#109284] / [fdo#111827]) > >> +1 similar issue > >> * igt@kms_color_chamelium@pipe-b-ctm-max: > >> + shard-skl: NOTRUN -> [98]SKIP ([fdo#109271] / [fdo#111827]) > >> +25 similar issues > >> * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: > >> + shard-iclb: NOTRUN -> [99]SKIP ([fdo#109278] / [fdo#109284] / > >> [fdo#111827]) > >> * igt@kms_content_protection@atomic-dpms: > >> + shard-apl: NOTRUN -> [100]TIMEOUT ([i915#1319]) > >> * igt@kms_content_protection@dp-mst-type-1: > >> + shard-iclb: NOTRUN -> [101]SKIP ([i915#3116]) > >> * igt@kms_content_protection@srm: > >> + shard-glk: NOTRUN -> [102]SKIP ([fdo#109271]) +85 similar > >> issues > >> * igt@kms_cursor_crc@pipe-a-cursor-suspend: > >> + shard-kbl: [103]PASS -> [104]DMESG-WARN ([i915#180]) +1 > >> similar issue > >> * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: > >> + shard-tglb: NOTRUN -> [105]SKIP ([fdo#109279] / [i915#3359]) > >> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-s > >> ize: > >> + shard-iclb: NOTRUN -> [106]SKIP ([fdo#109274] / [fdo#109278]) > >> +1 similar issue > >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > >> + shard-skl: [107]PASS -> [108]FAIL ([i915#2346]) > >> * igt@kms_cursor_legacy@pipe-d-single-bo: > >> + shard-glk: NOTRUN -> [109]SKIP ([fdo#109271] / [i915#533]) > >> * igt@kms_dp_tiled_display@basic-test-pattern: > >> + shard-iclb: NOTRUN -> [110]SKIP ([i915#426]) > >> * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: > >> + shard-iclb: NOTRUN -> [111]SKIP ([i915#5287]) +1 similar issue > >> * igt@kms_fbcon_fbt@fbc-suspend: > >> + shard-kbl: [112]PASS -> [113]INCOMPLETE ([i915#180] / > >> [i915#636]) > >> * igt@kms_flip@2x-flip-vs-fences-interruptible: > >> + shard-tglb: NOTRUN -> [114]SKIP ([fdo#109274] / [fdo#111825]) > >> * igt@kms_flip@2x-flip-vs-wf_vblank: > >> + shard-iclb: NOTRUN -> [115]SKIP ([fdo#109274]) +3 similar > >> issues > >> * igt@kms_flip@flip-vs-suspend@b-edp1: > >> + shard-skl: [116]PASS -> [117]INCOMPLETE ([i915#4839] / > >> [i915#636]) > >> * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: > >> + shard-skl: [118]PASS -> [119]FAIL ([i915#2122]) +2 similar > >> issues > >> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscal > >> ing: > >> + shard-skl: NOTRUN -> [120]INCOMPLETE ([i915#3701]) > >> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: > >> + shard-tglb: NOTRUN -> [121]SKIP ([fdo#109280] / [fdo#111825]) > >> +1 similar issue > >> * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: > >> + shard-iclb: NOTRUN -> [122]SKIP ([fdo#109280]) +16 similar > >> issues > >> * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: > >> + shard-snb: [123]PASS -> [124]SKIP ([fdo#109271]) +2 similar > >> issues > >> * igt@kms_hdr@static-toggle-suspend: > >> + shard-iclb: NOTRUN -> [125]SKIP ([i915#3555]) > >> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: > >> + shard-apl: [126]PASS -> [127]DMESG-WARN ([i915#180]) +4 > >> similar issues > >> * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: > >> + shard-skl: NOTRUN -> [128]FAIL ([fdo#108145] / [i915#265]) +4 > >> similar issues > >> * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > >> + shard-apl: NOTRUN -> [129]FAIL ([fdo#108145] / [i915#265]) > >> * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: > >> + shard-glk: NOTRUN -> [130]FAIL ([fdo#108145] / [i915#265]) +1 > >> similar issue > >> * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: > >> + shard-apl: NOTRUN -> [131]FAIL ([i915#265]) > >> * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: > >> + shard-iclb: NOTRUN -> [132]SKIP ([fdo#109278]) +18 similar > >> issues > >> * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0- > 75@pipe- > >> b-edp-1-downscale-with-pixel-format: > >> + shard-iclb: [133]PASS -> [134]INCOMPLETE ([i915#5293]) > >> * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp > >> -1-scaler-with-rotation: > >> + shard-iclb: NOTRUN -> [135]SKIP ([i915#5176]) +2 similar > >> issues > >> * igt@kms_psr2_sf@cursor-plane-update-sf: > >> + shard-glk: NOTRUN -> [136]SKIP ([fdo#109271] / [i915#658]) +1 > >> similar issue > >> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: > >> + shard-iclb: NOTRUN -> [137]SKIP ([fdo#111068] / [i915#658]) > >> * igt@kms_psr2_sf@plane-move-sf-dmg-area: > >> + shard-skl: NOTRUN -> [138]SKIP ([fdo#109271] / [i915#658]) +2 > >> similar issues > >> * igt@kms_psr@psr2_no_drrs: > >> + shard-iclb: [139]PASS -> [140]SKIP ([fdo#109441]) +3 similar > >> issues > >> * igt@kms_psr@psr2_primary_page_flip: > >> + shard-iclb: NOTRUN -> [141]SKIP ([fdo#109441]) > >> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > >> + shard-iclb: NOTRUN -> [142]SKIP ([i915#5289]) > >> * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: > >> + shard-skl: NOTRUN -> [143]SKIP ([fdo#109271]) +307 similar > >> issues > >> * igt@kms_vblank@pipe-d-wait-idle: > >> + shard-skl: NOTRUN -> [144]SKIP ([fdo#109271] / [i915#533]) > >> * igt@kms_writeback@writeback-check-output: > >> + shard-skl: NOTRUN -> [145]SKIP ([fdo#109271] / [i915#2437]) > >> * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: > >> + shard-iclb: NOTRUN -> [146]SKIP ([i915#2530]) > >> * igt@perf@polling-small-buf: > >> + shard-skl: NOTRUN -> [147]FAIL ([i915#1722]) > >> * igt@prime_nv_pcopy@test3_3: > >> + shard-iclb: NOTRUN -> [148]SKIP ([fdo#109291]) +2 similar > >> issues > >> * igt@sysfs_clients@create: > >> + shard-apl: NOTRUN -> [149]SKIP ([fdo#109271] / [i915#2994]) +2 > >> similar issues > >> * igt@sysfs_clients@recycle-many: > >> + shard-skl: NOTRUN -> [150]SKIP ([fdo#109271] / [i915#2994]) +3 > >> similar issues > >> > >> Possible fixes > >> > >> * igt@gem_ctx_persistence@many-contexts: > >> + {shard-rkl}: [151]FAIL ([i915#2410]) -> [152]PASS > >> * igt@gem_exec_capture@pi@bcs0: > >> + {shard-tglu}: [153]INCOMPLETE ([i915#3371] / [i915#3731]) -> > >> [154]PASS > >> * igt@gem_exec_fair@basic-deadline: > >> + shard-glk: [155]FAIL ([i915#2846]) -> [156]PASS > >> * igt@gem_exec_fair@basic-flow@rcs0: > >> + shard-tglb: [157]FAIL ([i915#2842]) -> [158]PASS > >> * igt@gem_exec_fair@basic-none@vcs0: > >> + shard-kbl: [159]FAIL ([i915#2842]) -> [PASS][158] +1 similar > >> issue > >> > >> References > >> > >> 1. https://patchwork.freedesktop.org/series/101301/ > >> 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html > >> 3. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk6/boot.html > >> 4. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk1/boot.html > >> 5. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk1/boot.html > >> 6. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk2/boot.html > >> 7. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk2/boot.html > >> 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk3/boot.html > >> 9. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk3/boot.html > >> 10. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk3/boot.html > >> 11. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk3/boot.html > >> 12. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk4/boot.html > >> 13. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk4/boot.html > >> 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk4/boot.html > >> 15. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk4/boot.html > >> 16. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk5/boot.html > >> 17. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk9/boot.html > >> 18. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk9/boot.html > >> 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk9/boot.html > >> 20. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk5/boot.html > >> 21. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk8/boot.html > >> 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk8/boot.html > >> 23. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk8/boot.html > >> 24. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk7/boot.html > >> 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk7/boot.html > >> 26. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk7/boot.html > >> 27. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk6/boot.html > >> 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk4/boot.html > >> 29. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk9/boot.html > >> 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk9/boot.html > >> 31. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk9/boot.html > >> 32. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk8/boot.html > >> 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk8/boot.html > >> 34. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk8/boot.html > >> 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk7/boot.html > >> 36. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk7/boot.html > >> 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk6/boot.html > >> 38. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk6/boot.html > >> 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk6/boot.html > >> 40. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk5/boot.html > >> 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk5/boot.html > >> 42. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk5/boot.html > >> 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk4/boot.html > >> 44. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk4/boot.html > >> 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk3/boot.html > >> 46. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk3/boot.html > >> 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk2/boot.html > >> 48. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk2/boot.html > >> 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk2/boot.html > >> 50. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/boot.html > >> 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/boot.html > >> 52. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/boot.html > >> 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb2/igt@gem_ccs@block-copy-compressed.html > >> 54. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl6/igt@gem_create@create-massive.html > >> 55. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > iclb1/igt@gem_exec_balancer@parallel-balancer.html > >> 56. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@gem_exec_balancer@parallel-balancer.html > >> 57. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > tglb6/igt@gem_exec_fair@basic-none-rrul@rcs0.html > >> 58. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html > >> 59. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html > >> 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html > >> 61. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > apl7/igt@gem_exec_fair@basic-none@vecs0.html > >> 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl2/igt@gem_exec_fair@basic-none@vecs0.html > >> 63. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > kbl4/igt@gem_exec_fair@basic-pace@vcs1.html > >> 64. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > kbl1/igt@gem_exec_fair@basic-pace@vcs1.html > >> 65. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk5/igt@gem_exec_whisper@basic-queues-forked-all.html > >> 66. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk2/igt@gem_exec_whisper@basic-queues-forked-all.html > >> 67. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@gem_huc_copy@huc-copy.html > >> 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@gem_lmem_swapping@parallel-random.html > >> 69. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk5/igt@gem_lmem_swapping@parallel-random-engines.html > >> 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl1/igt@gem_lmem_swapping@random.html > >> 71. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl6/igt@gem_lmem_swapping@random-engines.html > >> 72. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@gem_pread@exhaustion.html > >> 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@gem_pxp@create-protected-buffer.html > >> 74. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html > >> 75. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@gem_userptr_blits@input-checking.html > >> 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb8/igt@gem_userptr_blits@unsync-unmap.html > >> 77. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@gen7_exec_parse@oacontrol-tracking.html > >> 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk4/igt@gen9_exec_parse@allowed-all.html > >> 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@gen9_exec_parse@allowed-all.html > >> 80. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@i915_module_load@reload-with-fault-injection.html > >> 81. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@i915_pm_dc@dc6-dpms.html > >> 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl4/igt@i915_pm_rpm@modeset-lpsp-stress.html > >> 83. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > tglb3/igt@i915_suspend@fence-restore-untiled.html > >> 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb7/igt@i915_suspend@fence-restore-untiled.html > >> 85. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html > >> 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > >> 87. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async- > flip.html > >> 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > kbl6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html > >> 89. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html > >> 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > >> 91. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html > >> 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > >> 93. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html > >> 94. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl1/igt@kms_chamelium@dp-crc-multiple.html > >> 95. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_color@pipe-d-ctm-blue-to-red.html > >> 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html > >> 97. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_color_chamelium@pipe-a-degamma.html > >> 98. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl4/igt@kms_color_chamelium@pipe-b-ctm-max.html > >> 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html > >> 100. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl1/igt@kms_content_protection@atomic-dpms.html > >> 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_content_protection@dp-mst-type-1.html > >> 102. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_content_protection@srm.html > >> 103. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html > >> 104. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html > >> 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html > >> 106. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying- > size.html > >> 107. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > >> 108. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > >> 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_cursor_legacy@pipe-d-single-bo.html > >> 110. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_dp_tiled_display@basic-test-pattern.html > >> 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html > >> 112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > kbl3/igt@kms_fbcon_fbt@fbc-suspend.html > >> 113. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > kbl7/igt@kms_fbcon_fbt@fbc-suspend.html > >> 114. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb8/igt@kms_flip@2x-flip-vs-fences-interruptible.html > >> 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb6/igt@kms_flip@2x-flip-vs-wf_vblank.html > >> 116. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > skl7/igt@kms_flip@flip-vs-suspend@b-edp1.html > >> 117. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl2/igt@kms_flip@flip-vs-suspend@b-edp1.html > >> 118. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > >> 119. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html > >> 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs- > downscaling.html > >> 121. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html > >> 122. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html > >> 123. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html > >> 124. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > snb7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html > >> 125. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb1/igt@kms_hdr@static-toggle-suspend.html > >> 126. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a- > planes.html > >> 127. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a- > planes.html > >> 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html > >> 129. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html > >> 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html > >> 131. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html > >> 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html > >> 133. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > iclb3/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- > b-edp-1-downscale-with-pixel-format.html > >> 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- > b-edp-1-downscale-with-pixel-format.html > >> 135. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp- > 1-scaler-with-rotation.html > >> 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk1/igt@kms_psr2_sf@cursor-plane-update-sf.html > >> 137. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html > >> 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html > >> 139. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > iclb2/igt@kms_psr@psr2_no_drrs.html > >> 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb4/igt@kms_psr@psr2_no_drrs.html > >> 141. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@kms_psr@psr2_primary_page_flip.html > >> 142. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html > >> 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl9/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html > >> 144. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@kms_vblank@pipe-d-wait-idle.html > >> 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl9/igt@kms_writeback@writeback-check-output.html > >> 146. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html > >> 147. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@perf@polling-small-buf.html > >> 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > iclb7/igt@prime_nv_pcopy@test3_3.html > >> 149. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > apl4/igt@sysfs_clients@create.html > >> 150. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > skl10/igt@sysfs_clients@recycle-many.html > >> 151. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-rkl- > 2/igt@gem_ctx_persistence@many-contexts.html > >> 152. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-rkl- > 1/igt@gem_ctx_persistence@many-contexts.html > >> 153. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglu- > 2/igt@gem_exec_capture@pi@bcs0.html > >> 154. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglu- > 3/igt@gem_exec_capture@pi@bcs0.html > >> 155. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > glk1/igt@gem_exec_fair@basic-deadline.html > >> 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > glk3/igt@gem_exec_fair@basic-deadline.html > >> 157. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- > tglb2/igt@gem_exec_fair@basic-flow@rcs0.html > >> 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- > tglb1/igt@gem_exec_fair@basic-flow@rcs0.html > >> 159. > >> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@ > >> gem_exec_fa ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) 2022-04-06 11:10 ` Gupta, Anshuman @ 2022-04-07 13:11 ` Tvrtko Ursulin 0 siblings, 0 replies; 7+ messages in thread From: Tvrtko Ursulin @ 2022-04-07 13:11 UTC (permalink / raw) To: Gupta, Anshuman, intel-gfx@lists.freedesktop.org On 06/04/2022 12:10, Gupta, Anshuman wrote: >> -----Original Message----- >> From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >> Sent: Wednesday, April 6, 2022 4:23 PM >> To: Gupta, Anshuman <anshuman.gupta@intel.com>; intel- >> gfx@lists.freedesktop.org >> Subject: Re: [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/pmu: Drop redundant >> IS_VALLEYVIEW check in __get_rc6() (rev2) >> >> >> On 06/04/2022 11:36, Anshuman Gupta wrote: >>> On 2022-03-15 at 05:27:39 +0530, Patchwork wrote: >>> Pushed to drm-intel-next. >>> Thanks for review and patch. >> >> Probably better if went through drm-intel-gt-next (not the files it touches are >> mostly in gt/ and registers have GT in their names, and RC6 is obviously a render >> thing) but it's fine, small so no harm done, just note for the future please. > Thanks for letting me know about it, i was not aware about drm-intel-gt-next. > Will take care of it in future. > Is there any Doc on different intel branches to refer. I was sure it exists, but it looks like that was just on the mailing list and we haven't documented it yet in dim. Stay tuned. Regards, Tvrtko > Thanks, > Anshuman Gupta. >> >> Regards, >> >> Tvrtko >> >>> Anshuman Gupta. >>>> Patch Details >>>> >>>> Series: drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in >> __get_rc6() >>>> (rev2) >>>> URL: [1]https://patchwork.freedesktop.org/series/101301/ >>>> State: success >>>> Details: >>>> >>>> [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.htm >>>> l >>>> >>>> CI Bug Log - changes from CI_DRM_11360_full -> >>>> Patchwork_22559_full >>>> >>>> Summary >>>> >>>> SUCCESS >>>> >>>> No regressions found. >>>> >>>> Participating hosts (13 -> 13) >>>> >>>> No changes in participating hosts >>>> >>>> Known issues >>>> >>>> Here are the changes found in Patchwork_22559_full that come from >> known >>>> issues: >>>> >>>> CI changes >>>> >>>> Possible fixes >>>> >>>> * boot: >>>> + shard-glk: ([3]PASS, [4]PASS, [5]PASS, [6]PASS, [7]PASS, >>>> [8]FAIL, [9]PASS, [10]PASS, [11]PASS, [12]PASS, [13]PASS, >>>> [14]FAIL, [15]PASS, [16]PASS, [17]PASS, [18]PASS, [19]PASS, >>>> [20]PASS, [21]PASS, [22]PASS, [23]PASS, [24]PASS, [25]PASS, >>>> [26]PASS, [27]PASS) ([i915#4392]) -> ([28]PASS, [29]PASS, >>>> [30]PASS, [31]PASS, [32]PASS, [33]PASS, [34]PASS, [35]PASS, >>>> [36]PASS, [37]PASS, [38]PASS, [39]PASS, [40]PASS, [41]PASS, >>>> [42]PASS, [43]PASS, [44]PASS, [45]PASS, [46]PASS, [47]PASS, >>>> [48]PASS, [49]PASS, [50]PASS, [51]PASS, [52]PASS) >>>> >>>> IGT changes >>>> >>>> Issues hit >>>> >>>> * igt@gem_ccs@block-copy-compressed: >>>> + shard-tglb: NOTRUN -> [53]SKIP ([i915#5325]) >>>> * igt@gem_create@create-massive: >>>> + shard-skl: NOTRUN -> [54]DMESG-WARN ([i915#4991]) >>>> * igt@gem_exec_balancer@parallel-balancer: >>>> + shard-iclb: [55]PASS -> [56]SKIP ([i915#4525]) >>>> * igt@gem_exec_fair@basic-none-rrul@rcs0: >>>> + shard-tglb: [57]PASS -> [58]FAIL ([i915#2842]) +1 similar >>>> issue >>>> * igt@gem_exec_fair@basic-none-share@rcs0: >>>> + shard-iclb: [59]PASS -> [60]FAIL ([i915#2842]) >>>> * igt@gem_exec_fair@basic-none@vecs0: >>>> + shard-apl: [61]PASS -> [62]FAIL ([i915#2842]) >>>> * igt@gem_exec_fair@basic-pace@vcs1: >>>> + shard-kbl: [63]PASS -> [64]FAIL ([i915#2842]) +1 similar issue >>>> * igt@gem_exec_whisper@basic-queues-forked-all: >>>> + shard-glk: [65]PASS -> [66]DMESG-WARN ([i915#118]) >>>> * igt@gem_huc_copy@huc-copy: >>>> + shard-glk: NOTRUN -> [67]SKIP ([fdo#109271] / [i915#2190]) >>>> * igt@gem_lmem_swapping@parallel-random: >>>> + shard-iclb: NOTRUN -> [68]SKIP ([i915#4613]) >>>> * igt@gem_lmem_swapping@parallel-random-engines: >>>> + shard-glk: NOTRUN -> [69]SKIP ([fdo#109271] / [i915#4613]) >>>> * igt@gem_lmem_swapping@random: >>>> + shard-apl: NOTRUN -> [70]SKIP ([fdo#109271] / [i915#4613]) +1 >>>> similar issue >>>> * igt@gem_lmem_swapping@random-engines: >>>> + shard-skl: NOTRUN -> [71]SKIP ([fdo#109271] / [i915#4613]) +3 >>>> similar issues >>>> * igt@gem_pread@exhaustion: >>>> + shard-skl: NOTRUN -> [72]WARN ([i915#2658]) >>>> * igt@gem_pxp@create-protected-buffer: >>>> + shard-iclb: NOTRUN -> [73]SKIP ([i915#4270]) >>>> * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: >>>> + shard-iclb: NOTRUN -> [74]SKIP ([i915#768]) >>>> * igt@gem_userptr_blits@input-checking: >>>> + shard-iclb: NOTRUN -> [75]DMESG-WARN ([i915#4991]) >>>> * igt@gem_userptr_blits@unsync-unmap: >>>> + shard-tglb: NOTRUN -> [76]SKIP ([i915#3297]) >>>> * igt@gen7_exec_parse@oacontrol-tracking: >>>> + shard-iclb: NOTRUN -> [77]SKIP ([fdo#109289]) +1 similar issue >>>> * igt@gen9_exec_parse@allowed-all: >>>> + shard-glk: [78]PASS -> [79]DMESG-WARN ([i915#1436] / >>>> [i915#716]) >>>> * igt@i915_module_load@reload-with-fault-injection: >>>> + shard-skl: NOTRUN -> [80]DMESG-WARN ([i915#1982]) >>>> * igt@i915_pm_dc@dc6-dpms: >>>> + shard-skl: NOTRUN -> [81]FAIL ([i915#454]) +1 similar issue >>>> * igt@i915_pm_rpm@modeset-lpsp-stress: >>>> + shard-apl: NOTRUN -> [82]SKIP ([fdo#109271]) +114 similar >>>> issues >>>> * igt@i915_suspend@fence-restore-untiled: >>>> + shard-tglb: [83]PASS -> [84]DMESG-WARN ([i915#2411] / >>>> [i915#2867]) >>>> * igt@kms_big_fb@4-tiled-32bpp-rotate-270: >>>> + shard-iclb: NOTRUN -> [85]SKIP ([i915#5286]) +1 similar issue >>>> * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: >>>> + shard-apl: NOTRUN -> [86]SKIP ([fdo#109271] / [i915#3777]) +2 >>>> similar issues >>>> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-fli >>>> p: >>>> + shard-skl: NOTRUN -> [87]SKIP ([fdo#109271] / [i915#3777]) +7 >>>> similar issues >>>> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: >>>> + shard-kbl: NOTRUN -> [88]SKIP ([fdo#109271]) +3 similar issues >>>> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: >>>> + shard-glk: NOTRUN -> [89]SKIP ([fdo#109271] / [i915#3777]) +1 >>>> similar issue >>>> * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: >>>> + shard-glk: NOTRUN -> [90]SKIP ([fdo#109271] / [i915#3886]) +5 >>>> similar issues >>>> * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: >>>> + shard-apl: NOTRUN -> [91]SKIP ([fdo#109271] / [i915#3886]) +4 >>>> similar issues >>>> * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: >>>> + shard-skl: NOTRUN -> [92]SKIP ([fdo#109271] / [i915#3886]) +11 >>>> similar issues >>>> * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: >>>> + shard-iclb: NOTRUN -> [93]SKIP ([fdo#109278] / [i915#3886]) +2 >>>> similar issues >>>> * igt@kms_chamelium@dp-crc-multiple: >>>> + shard-apl: NOTRUN -> [94]SKIP ([fdo#109271] / [fdo#111827]) +7 >>>> similar issues >>>> * igt@kms_color@pipe-d-ctm-blue-to-red: >>>> + shard-iclb: NOTRUN -> [95]SKIP ([fdo#109278] / [i915#1149]) >>>> * igt@kms_color_chamelium@pipe-a-ctm-0-5: >>>> + shard-glk: NOTRUN -> [96]SKIP ([fdo#109271] / [fdo#111827]) +5 >>>> similar issues >>>> * igt@kms_color_chamelium@pipe-a-degamma: >>>> + shard-iclb: NOTRUN -> [97]SKIP ([fdo#109284] / [fdo#111827]) >>>> +1 similar issue >>>> * igt@kms_color_chamelium@pipe-b-ctm-max: >>>> + shard-skl: NOTRUN -> [98]SKIP ([fdo#109271] / [fdo#111827]) >>>> +25 similar issues >>>> * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: >>>> + shard-iclb: NOTRUN -> [99]SKIP ([fdo#109278] / [fdo#109284] / >>>> [fdo#111827]) >>>> * igt@kms_content_protection@atomic-dpms: >>>> + shard-apl: NOTRUN -> [100]TIMEOUT ([i915#1319]) >>>> * igt@kms_content_protection@dp-mst-type-1: >>>> + shard-iclb: NOTRUN -> [101]SKIP ([i915#3116]) >>>> * igt@kms_content_protection@srm: >>>> + shard-glk: NOTRUN -> [102]SKIP ([fdo#109271]) +85 similar >>>> issues >>>> * igt@kms_cursor_crc@pipe-a-cursor-suspend: >>>> + shard-kbl: [103]PASS -> [104]DMESG-WARN ([i915#180]) +1 >>>> similar issue >>>> * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: >>>> + shard-tglb: NOTRUN -> [105]SKIP ([fdo#109279] / [i915#3359]) >>>> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-s >>>> ize: >>>> + shard-iclb: NOTRUN -> [106]SKIP ([fdo#109274] / [fdo#109278]) >>>> +1 similar issue >>>> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: >>>> + shard-skl: [107]PASS -> [108]FAIL ([i915#2346]) >>>> * igt@kms_cursor_legacy@pipe-d-single-bo: >>>> + shard-glk: NOTRUN -> [109]SKIP ([fdo#109271] / [i915#533]) >>>> * igt@kms_dp_tiled_display@basic-test-pattern: >>>> + shard-iclb: NOTRUN -> [110]SKIP ([i915#426]) >>>> * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled: >>>> + shard-iclb: NOTRUN -> [111]SKIP ([i915#5287]) +1 similar issue >>>> * igt@kms_fbcon_fbt@fbc-suspend: >>>> + shard-kbl: [112]PASS -> [113]INCOMPLETE ([i915#180] / >>>> [i915#636]) >>>> * igt@kms_flip@2x-flip-vs-fences-interruptible: >>>> + shard-tglb: NOTRUN -> [114]SKIP ([fdo#109274] / [fdo#111825]) >>>> * igt@kms_flip@2x-flip-vs-wf_vblank: >>>> + shard-iclb: NOTRUN -> [115]SKIP ([fdo#109274]) +3 similar >>>> issues >>>> * igt@kms_flip@flip-vs-suspend@b-edp1: >>>> + shard-skl: [116]PASS -> [117]INCOMPLETE ([i915#4839] / >>>> [i915#636]) >>>> * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: >>>> + shard-skl: [118]PASS -> [119]FAIL ([i915#2122]) +2 similar >>>> issues >>>> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscal >>>> ing: >>>> + shard-skl: NOTRUN -> [120]INCOMPLETE ([i915#3701]) >>>> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: >>>> + shard-tglb: NOTRUN -> [121]SKIP ([fdo#109280] / [fdo#111825]) >>>> +1 similar issue >>>> * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: >>>> + shard-iclb: NOTRUN -> [122]SKIP ([fdo#109280]) +16 similar >>>> issues >>>> * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: >>>> + shard-snb: [123]PASS -> [124]SKIP ([fdo#109271]) +2 similar >>>> issues >>>> * igt@kms_hdr@static-toggle-suspend: >>>> + shard-iclb: NOTRUN -> [125]SKIP ([i915#3555]) >>>> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: >>>> + shard-apl: [126]PASS -> [127]DMESG-WARN ([i915#180]) +4 >>>> similar issues >>>> * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: >>>> + shard-skl: NOTRUN -> [128]FAIL ([fdo#108145] / [i915#265]) +4 >>>> similar issues >>>> * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: >>>> + shard-apl: NOTRUN -> [129]FAIL ([fdo#108145] / [i915#265]) >>>> * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: >>>> + shard-glk: NOTRUN -> [130]FAIL ([fdo#108145] / [i915#265]) +1 >>>> similar issue >>>> * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: >>>> + shard-apl: NOTRUN -> [131]FAIL ([i915#265]) >>>> * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: >>>> + shard-iclb: NOTRUN -> [132]SKIP ([fdo#109278]) +18 similar >>>> issues >>>> * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0- >> 75@pipe- >>>> b-edp-1-downscale-with-pixel-format: >>>> + shard-iclb: [133]PASS -> [134]INCOMPLETE ([i915#5293]) >>>> * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp >>>> -1-scaler-with-rotation: >>>> + shard-iclb: NOTRUN -> [135]SKIP ([i915#5176]) +2 similar >>>> issues >>>> * igt@kms_psr2_sf@cursor-plane-update-sf: >>>> + shard-glk: NOTRUN -> [136]SKIP ([fdo#109271] / [i915#658]) +1 >>>> similar issue >>>> * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: >>>> + shard-iclb: NOTRUN -> [137]SKIP ([fdo#111068] / [i915#658]) >>>> * igt@kms_psr2_sf@plane-move-sf-dmg-area: >>>> + shard-skl: NOTRUN -> [138]SKIP ([fdo#109271] / [i915#658]) +2 >>>> similar issues >>>> * igt@kms_psr@psr2_no_drrs: >>>> + shard-iclb: [139]PASS -> [140]SKIP ([fdo#109441]) +3 similar >>>> issues >>>> * igt@kms_psr@psr2_primary_page_flip: >>>> + shard-iclb: NOTRUN -> [141]SKIP ([fdo#109441]) >>>> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: >>>> + shard-iclb: NOTRUN -> [142]SKIP ([i915#5289]) >>>> * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: >>>> + shard-skl: NOTRUN -> [143]SKIP ([fdo#109271]) +307 similar >>>> issues >>>> * igt@kms_vblank@pipe-d-wait-idle: >>>> + shard-skl: NOTRUN -> [144]SKIP ([fdo#109271] / [i915#533]) >>>> * igt@kms_writeback@writeback-check-output: >>>> + shard-skl: NOTRUN -> [145]SKIP ([fdo#109271] / [i915#2437]) >>>> * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: >>>> + shard-iclb: NOTRUN -> [146]SKIP ([i915#2530]) >>>> * igt@perf@polling-small-buf: >>>> + shard-skl: NOTRUN -> [147]FAIL ([i915#1722]) >>>> * igt@prime_nv_pcopy@test3_3: >>>> + shard-iclb: NOTRUN -> [148]SKIP ([fdo#109291]) +2 similar >>>> issues >>>> * igt@sysfs_clients@create: >>>> + shard-apl: NOTRUN -> [149]SKIP ([fdo#109271] / [i915#2994]) +2 >>>> similar issues >>>> * igt@sysfs_clients@recycle-many: >>>> + shard-skl: NOTRUN -> [150]SKIP ([fdo#109271] / [i915#2994]) +3 >>>> similar issues >>>> >>>> Possible fixes >>>> >>>> * igt@gem_ctx_persistence@many-contexts: >>>> + {shard-rkl}: [151]FAIL ([i915#2410]) -> [152]PASS >>>> * igt@gem_exec_capture@pi@bcs0: >>>> + {shard-tglu}: [153]INCOMPLETE ([i915#3371] / [i915#3731]) -> >>>> [154]PASS >>>> * igt@gem_exec_fair@basic-deadline: >>>> + shard-glk: [155]FAIL ([i915#2846]) -> [156]PASS >>>> * igt@gem_exec_fair@basic-flow@rcs0: >>>> + shard-tglb: [157]FAIL ([i915#2842]) -> [158]PASS >>>> * igt@gem_exec_fair@basic-none@vcs0: >>>> + shard-kbl: [159]FAIL ([i915#2842]) -> [PASS][158] +1 similar >>>> issue >>>> >>>> References >>>> >>>> 1. https://patchwork.freedesktop.org/series/101301/ >>>> 2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/index.html >>>> 3. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk6/boot.html >>>> 4. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk1/boot.html >>>> 5. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk1/boot.html >>>> 6. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk2/boot.html >>>> 7. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk2/boot.html >>>> 8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk3/boot.html >>>> 9. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk3/boot.html >>>> 10. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk3/boot.html >>>> 11. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk3/boot.html >>>> 12. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk4/boot.html >>>> 13. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk4/boot.html >>>> 14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk4/boot.html >>>> 15. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk4/boot.html >>>> 16. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk5/boot.html >>>> 17. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk9/boot.html >>>> 18. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk9/boot.html >>>> 19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk9/boot.html >>>> 20. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk5/boot.html >>>> 21. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk8/boot.html >>>> 22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk8/boot.html >>>> 23. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk8/boot.html >>>> 24. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk7/boot.html >>>> 25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk7/boot.html >>>> 26. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk7/boot.html >>>> 27. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk6/boot.html >>>> 28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk4/boot.html >>>> 29. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk9/boot.html >>>> 30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk9/boot.html >>>> 31. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk9/boot.html >>>> 32. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk8/boot.html >>>> 33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk8/boot.html >>>> 34. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk8/boot.html >>>> 35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk7/boot.html >>>> 36. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk7/boot.html >>>> 37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk6/boot.html >>>> 38. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk6/boot.html >>>> 39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk6/boot.html >>>> 40. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk5/boot.html >>>> 41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk5/boot.html >>>> 42. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk5/boot.html >>>> 43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk4/boot.html >>>> 44. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk4/boot.html >>>> 45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk3/boot.html >>>> 46. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk3/boot.html >>>> 47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk2/boot.html >>>> 48. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk2/boot.html >>>> 49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk2/boot.html >>>> 50. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/boot.html >>>> 51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/boot.html >>>> 52. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/boot.html >>>> 53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb2/igt@gem_ccs@block-copy-compressed.html >>>> 54. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl6/igt@gem_create@create-massive.html >>>> 55. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> iclb1/igt@gem_exec_balancer@parallel-balancer.html >>>> 56. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@gem_exec_balancer@parallel-balancer.html >>>> 57. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> tglb6/igt@gem_exec_fair@basic-none-rrul@rcs0.html >>>> 58. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb2/igt@gem_exec_fair@basic-none-rrul@rcs0.html >>>> 59. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html >>>> 60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html >>>> 61. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> apl7/igt@gem_exec_fair@basic-none@vecs0.html >>>> 62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl2/igt@gem_exec_fair@basic-none@vecs0.html >>>> 63. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> kbl4/igt@gem_exec_fair@basic-pace@vcs1.html >>>> 64. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> kbl1/igt@gem_exec_fair@basic-pace@vcs1.html >>>> 65. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk5/igt@gem_exec_whisper@basic-queues-forked-all.html >>>> 66. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk2/igt@gem_exec_whisper@basic-queues-forked-all.html >>>> 67. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@gem_huc_copy@huc-copy.html >>>> 68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@gem_lmem_swapping@parallel-random.html >>>> 69. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk5/igt@gem_lmem_swapping@parallel-random-engines.html >>>> 70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl1/igt@gem_lmem_swapping@random.html >>>> 71. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl6/igt@gem_lmem_swapping@random-engines.html >>>> 72. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@gem_pread@exhaustion.html >>>> 73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@gem_pxp@create-protected-buffer.html >>>> 74. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html >>>> 75. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@gem_userptr_blits@input-checking.html >>>> 76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb8/igt@gem_userptr_blits@unsync-unmap.html >>>> 77. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@gen7_exec_parse@oacontrol-tracking.html >>>> 78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk4/igt@gen9_exec_parse@allowed-all.html >>>> 79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@gen9_exec_parse@allowed-all.html >>>> 80. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@i915_module_load@reload-with-fault-injection.html >>>> 81. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@i915_pm_dc@dc6-dpms.html >>>> 82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl4/igt@i915_pm_rpm@modeset-lpsp-stress.html >>>> 83. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> tglb3/igt@i915_suspend@fence-restore-untiled.html >>>> 84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb7/igt@i915_suspend@fence-restore-untiled.html >>>> 85. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html >>>> 86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html >>>> 87. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async- >> flip.html >>>> 88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> kbl6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html >>>> 89. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html >>>> 90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html >>>> 91. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html >>>> 92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html >>>> 93. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html >>>> 94. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl1/igt@kms_chamelium@dp-crc-multiple.html >>>> 95. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_color@pipe-d-ctm-blue-to-red.html >>>> 96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html >>>> 97. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_color_chamelium@pipe-a-degamma.html >>>> 98. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl4/igt@kms_color_chamelium@pipe-b-ctm-max.html >>>> 99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html >>>> 100. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl1/igt@kms_content_protection@atomic-dpms.html >>>> 101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_content_protection@dp-mst-type-1.html >>>> 102. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_content_protection@srm.html >>>> 103. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html >>>> 104. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html >>>> 105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html >>>> 106. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying- >> size.html >>>> 107. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html >>>> 108. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html >>>> 109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_cursor_legacy@pipe-d-single-bo.html >>>> 110. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_dp_tiled_display@basic-test-pattern.html >>>> 111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html >>>> 112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> kbl3/igt@kms_fbcon_fbt@fbc-suspend.html >>>> 113. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> kbl7/igt@kms_fbcon_fbt@fbc-suspend.html >>>> 114. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb8/igt@kms_flip@2x-flip-vs-fences-interruptible.html >>>> 115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb6/igt@kms_flip@2x-flip-vs-wf_vblank.html >>>> 116. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> skl7/igt@kms_flip@flip-vs-suspend@b-edp1.html >>>> 117. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl2/igt@kms_flip@flip-vs-suspend@b-edp1.html >>>> 118. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> skl10/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html >>>> 119. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl2/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html >>>> 120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs- >> downscaling.html >>>> 121. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html >>>> 122. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html >>>> 123. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> snb2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html >>>> 124. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> snb7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html >>>> 125. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb1/igt@kms_hdr@static-toggle-suspend.html >>>> 126. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a- >> planes.html >>>> 127. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a- >> planes.html >>>> 128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl1/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html >>>> 129. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html >>>> 130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html >>>> 131. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html >>>> 132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html >>>> 133. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> iclb3/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- >> b-edp-1-downscale-with-pixel-format.html >>>> 134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-75@pipe- >> b-edp-1-downscale-with-pixel-format.html >>>> 135. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-b-edp- >> 1-scaler-with-rotation.html >>>> 136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk1/igt@kms_psr2_sf@cursor-plane-update-sf.html >>>> 137. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html >>>> 138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html >>>> 139. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> iclb2/igt@kms_psr@psr2_no_drrs.html >>>> 140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb4/igt@kms_psr@psr2_no_drrs.html >>>> 141. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@kms_psr@psr2_primary_page_flip.html >>>> 142. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html >>>> 143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl9/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html >>>> 144. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@kms_vblank@pipe-d-wait-idle.html >>>> 145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl9/igt@kms_writeback@writeback-check-output.html >>>> 146. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html >>>> 147. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@perf@polling-small-buf.html >>>> 148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> iclb7/igt@prime_nv_pcopy@test3_3.html >>>> 149. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> apl4/igt@sysfs_clients@create.html >>>> 150. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> skl10/igt@sysfs_clients@recycle-many.html >>>> 151. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-rkl- >> 2/igt@gem_ctx_persistence@many-contexts.html >>>> 152. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-rkl- >> 1/igt@gem_ctx_persistence@many-contexts.html >>>> 153. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-tglu- >> 2/igt@gem_exec_capture@pi@bcs0.html >>>> 154. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard-tglu- >> 3/igt@gem_exec_capture@pi@bcs0.html >>>> 155. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> glk1/igt@gem_exec_fair@basic-deadline.html >>>> 156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> glk3/igt@gem_exec_fair@basic-deadline.html >>>> 157. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard- >> tglb2/igt@gem_exec_fair@basic-flow@rcs0.html >>>> 158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22559/shard- >> tglb1/igt@gem_exec_fair@basic-flow@rcs0.html >>>> 159. >>>> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11360/shard-kbl3/igt@ >>>> gem_exec_fa ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-04-07 13:12 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-03-14 16:13 [Intel-gfx] [PATCH] drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() Ashutosh Dixit 2022-03-14 20:11 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Drop redundant IS_VALLEYVIEW check in __get_rc6() (rev2) Patchwork 2022-03-14 23:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2022-04-06 10:36 ` Anshuman Gupta 2022-04-06 10:53 ` Tvrtko Ursulin 2022-04-06 11:10 ` Gupta, Anshuman 2022-04-07 13:11 ` Tvrtko Ursulin
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.