All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
@ 2022-09-27  6:28 Ashutosh Dixit
  2022-09-27  7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Ashutosh Dixit @ 2022-09-27  6:28 UTC (permalink / raw)
  To: igt-dev; +Cc: Badal Nilawar

From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

Actual freq read from sysfs can be 0, i.e. less than RPn, in certain
situations. For example when the device is idle (without the runtime PM
wakeref) actual freq read from sysfs will be 0. Also on Gen12+ actual freq
read from HW will be 0 in RC6. Therefore modify checks comparing actual
freq with RPn.

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
 tests/i915/i915_pm_rps.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c
index db39ec69865c..4865ed1f0042 100644
--- a/tests/i915/i915_pm_rps.c
+++ b/tests/i915/i915_pm_rps.c
@@ -483,14 +483,15 @@ static void idle_check(void)
 		read_freqs(freqs);
 		dump(freqs);
 		check_freq_constraints(freqs);
-		if (freqs[ACT] == freqs[RPn])
+		if (freqs[ACT] <= freqs[RPn])
 			break;
 		usleep(1000 * IDLE_WAIT_TIMESTEP_MSEC);
 		wait += IDLE_WAIT_TIMESTEP_MSEC;
 	} while (wait < IDLE_WAIT_TIMEOUT_MSEC);
 
 	igt_debugfs_dump(drm_fd, "i915_rps_boost_info");
-	igt_assert_eq(freqs[ACT], freqs[RPn]);
+	/* Actual freq may be 0 when idle or in RC6 */
+	igt_assert_lte(freqs[ACT], freqs[RPn]);
 	igt_debug("Required %d msec to reach cur=idle\n", wait);
 }
 
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
  2022-09-27  6:28 [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6 Ashutosh Dixit
@ 2022-09-27  7:03 ` Patchwork
  2022-09-27 17:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2022-11-10 14:57 ` [igt-dev] [PATCH i-g-t] " Nilawar, Badal
  2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-09-27  7:03 UTC (permalink / raw)
  To: Ashutosh Dixit; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 3660 bytes --]

== Series Details ==

Series: i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
URL   : https://patchwork.freedesktop.org/series/109102/
State : success

== Summary ==

CI Bug Log - changes from IGT_6664 -> IGTPW_7846
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html

Participating hosts (46 -> 45)
------------------------------

  Additional (1): fi-tgl-dsi 
  Missing    (2): fi-hsw-4770 fi-bdw-samus 

Known issues
------------

  Here are the changes found in IGTPW_7846 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - fi-rkl-11600:       NOTRUN -> [FAIL][1] ([fdo#103375])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-rkl-11600:       NOTRUN -> [SKIP][2] ([fdo#111827])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - {bat-rplp-1}:       [DMESG-WARN][3] ([i915#2867]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/bat-rplp-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-rkl-11600:       [INCOMPLETE][5] ([i915#5982]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982
  [i915#6816]: https://gitlab.freedesktop.org/drm/intel/issues/6816
  [i915#6818]: https://gitlab.freedesktop.org/drm/intel/issues/6818
  [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6664 -> IGTPW_7846

  CI-20190529: 20190529
  CI_DRM_12185: ae6a4bb62f9524823ef5b00552e27231f7936da3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html
  IGT_6664: fac15df438b13f585c128a4c7930e6b08e89e4c0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html

[-- Attachment #2: Type: text/html, Size: 3476 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
  2022-09-27  6:28 [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6 Ashutosh Dixit
  2022-09-27  7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-09-27 17:24 ` Patchwork
  2022-11-11 15:26   ` Gupta, Anshuman
  2022-11-10 14:57 ` [igt-dev] [PATCH i-g-t] " Nilawar, Badal
  2 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2022-09-27 17:24 UTC (permalink / raw)
  To: Ashutosh Dixit; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 36885 bytes --]

== Series Details ==

Series: i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
URL   : https://patchwork.freedesktop.org/series/109102/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6664_full -> IGTPW_7846_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7846_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7846_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html

Participating hosts (8 -> 6)
------------------------------

  Missing    (2): shard-rkl shard-tglu 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_7846_full:

### IGT changes ###

#### Possible regressions ####

  * igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name:
    - shard-tglb:         NOTRUN -> [SKIP][1] +48 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][2] +48 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@prime_nv_test@i915_blt_fill_nv_read.html

  
Known issues
------------

  Here are the changes found in IGTPW_7846_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-glk:          NOTRUN -> [DMESG-WARN][3] ([i915#4991]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@hostile:
    - shard-snb:          NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb4/igt@gem_ctx_persistence@hostile.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [PASS][5] -> [SKIP][6] ([i915#4525]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][7] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][8] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2842]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][11] ([i915#2842]) +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@gem_lmem_swapping@verify-random-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][13] ([i915#4613])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@gem_lmem_swapping@verify-random-ccs.html
    - shard-glk:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk3/igt@gem_lmem_swapping@verify-random-ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_pread@exhaustion:
    - shard-glk:          NOTRUN -> [WARN][16] ([i915#2658])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_pread@exhaustion.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][17] ([fdo#109312])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@gem_softpin@evict-snoop.html
    - shard-iclb:         NOTRUN -> [SKIP][18] ([fdo#109312])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#3297]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@gem_userptr_blits@coherency-unsync.html
    - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#3297])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gen7_exec_parse@load-register-reg:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([fdo#109289]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gen7_exec_parse@load-register-reg.html
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#109289]) +2 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@gen7_exec_parse@load-register-reg.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#3989] / [i915#454])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@i915_pm_dc@dc6-psr.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][25] -> [DMESG-WARN][26] ([i915#5591])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb8/igt@i915_selftest@live@hangcheck.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#5286])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#5286])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_big_fb@linear-8bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111614])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#110723]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#111615])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([fdo#111615] / [i915#3689])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +4 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109278] / [i915#3886]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#3689]) +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#109278]) +3 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3742])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#3742])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium@hdmi-frame-dump:
    - shard-snb:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb7/igt@kms_chamelium@hdmi-frame-dump.html
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@kms_chamelium@hdmi-frame-dump.html
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@kms_chamelium@hdmi-frame-dump.html

  * igt@kms_color@ctm-0-25@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [FAIL][45] ([i915#315]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_color@ctm-0-25@pipe-b-edp-1.html

  * igt@kms_color@ctm-0-25@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [FAIL][46] ([i915#315]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_color@ctm-0-25@pipe-c-edp-1.html

  * igt@kms_color_chamelium@ctm-limited-range:
    - shard-glk:          NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk6/igt@kms_color_chamelium@ctm-limited-range.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#3116] / [i915#3299])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][49] ([i915#3116])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3359])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([i915#3359]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#111825] / [i915#3637])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109274])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#2122])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([i915#6375])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([i915#2672] / [i915#3555]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#2672]) +5 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#3555]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109280]) +10 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#6497]) +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109280] / [fdo#111825]) +7 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
    - shard-apl:          [PASS][64] -> [DMESG-WARN][65] ([i915#180]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][66] ([i915#265]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> [SKIP][68] ([fdo#109271]) +124 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([i915#5176]) +5 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#5176]) +7 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
    - shard-iclb:         [PASS][71] -> [SKIP][72] ([i915#5235]) +5 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271]) +163 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([i915#5235]) +2 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#5235]) +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-iclb:         [PASS][77] -> [SKIP][78] ([fdo#109642] / [fdo#111068] / [i915#658])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][79] -> [SKIP][80] ([fdo#109441]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][81] ([i915#5465]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html

  * igt@kms_writeback@writeback-check-output:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2437])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_writeback@writeback-check-output.html

  * igt@perf@stress-open-close:
    - shard-glk:          [PASS][83] -> [INCOMPLETE][84] ([i915#5213])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@perf@stress-open-close.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@perf@stress-open-close.html

  * igt@perf_pmu@event-wait@rcs0:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#112283])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@perf_pmu@event-wait@rcs0.html
    - shard-tglb:         NOTRUN -> [SKIP][86] ([fdo#112283])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html

  * igt@prime_nv_pcopy@test3_5:
    - shard-snb:          NOTRUN -> [SKIP][87] ([fdo#109271]) +108 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@prime_nv_pcopy@test3_5.html

  * igt@sysfs_clients@pidname:
    - shard-glk:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2994]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@sysfs_clients@pidname.html

  * igt@sysfs_clients@split-25:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#2994]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@sysfs_clients@split-25.html
    - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@sysfs_clients@split-25.html
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#2994])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@sysfs_clients@split-25.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][92] ([i915#658]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@feature_discovery@psr2.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@smoketest:
    - shard-tglb:         [FAIL][94] ([i915#5099]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_ctx_persistence@smoketest.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_ctx_persistence@smoketest.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][96] ([i915#4525]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][98] ([i915#2842]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][100] ([i915#2842]) -> [PASS][101] +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][102] ([i915#2842]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [SKIP][104] ([i915#4281]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-iclb:         [INCOMPLETE][106] ([i915#5982]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_suspend@basic-s3-without-i915.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1:
    - shard-apl:          [DMESG-WARN][108] ([i915#62]) -> [PASS][109] +38 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
    - shard-glk:          [FAIL][110] ([i915#2122]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [SKIP][112] ([i915#433]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@kms_hdmi_inject@inject-audio.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
    - shard-apl:          [DMESG-WARN][114] ([i915#180]) -> [PASS][115] +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         [SKIP][116] ([fdo#109441]) -> [PASS][117] +1 similar issue
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr@psr2_cursor_blt.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         [SKIP][118] ([i915#5519]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-iclb:         [SKIP][120] ([i915#5519]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_vblank@pipe-a-wait-idle:
    - shard-snb:          [SKIP][122] ([fdo#109271]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-snb2/igt@kms_vblank@pipe-a-wait-idle.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb5/igt@kms_vblank@pipe-a-wait-idle.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][124] ([i915#588]) -> [SKIP][125] ([i915#658])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-apl:          [DMESG-FAIL][126] ([fdo#108145] / [i915#62]) -> [FAIL][127] ([fdo#108145] / [i915#265])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1:
    - shard-glk:          [SKIP][128] ([fdo#109271] / [i915#1888]) -> [SKIP][129] ([fdo#109271])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         [SKIP][130] ([i915#658]) -> [SKIP][131] ([i915#2920])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-iclb:         [SKIP][132] ([i915#2920]) -> [SKIP][133] ([i915#658])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-iclb:         [SKIP][134] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][135] ([i915#5939])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr2_su@page_flip-p010.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl2/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@runner@aborted.html
    - shard-glk:          [FAIL][144] ([i915#4312]) -> ([FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148]) ([i915#3002] / [i915#4312])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk1/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@runner@aborted.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@runner@aborted.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@runner@aborted.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#6375]: https://gitlab.freedesktop.org/drm/intel/issues/6375
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6664 -> IGTPW_7846

  CI-20190529: 20190529
  CI_DRM_12185: ae6a4bb62f9524823ef5b00552e27231f7936da3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html
  IGT_6664: fac15df438b13f585c128a4c7930e6b08e89e4c0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html

[-- Attachment #2: Type: text/html, Size: 46187 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
  2022-09-27  6:28 [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6 Ashutosh Dixit
  2022-09-27  7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2022-09-27 17:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-10 14:57 ` Nilawar, Badal
  2 siblings, 0 replies; 6+ messages in thread
From: Nilawar, Badal @ 2022-11-10 14:57 UTC (permalink / raw)
  To: Ashutosh Dixit, igt-dev



On 27-09-2022 11:58, Ashutosh Dixit wrote:
> From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> 
> Actual freq read from sysfs can be 0, i.e. less than RPn, in certain
> situations. For example when the device is idle (without the runtime PM
> wakeref) actual freq read from sysfs will be 0. Also on Gen12+ actual freq
> read from HW will be 0 in RC6. Therefore modify checks comparing actual
> freq with RPn.
> 
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
> ---
>   tests/i915/i915_pm_rps.c | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c
> index db39ec69865c..4865ed1f0042 100644
> --- a/tests/i915/i915_pm_rps.c
> +++ b/tests/i915/i915_pm_rps.c
> @@ -483,14 +483,15 @@ static void idle_check(void)
>   		read_freqs(freqs);
>   		dump(freqs);
>   		check_freq_constraints(freqs);
> -		if (freqs[ACT] == freqs[RPn])
> +		if (freqs[ACT] <= freqs[RPn])
>   			break;
>   		usleep(1000 * IDLE_WAIT_TIMESTEP_MSEC);
>   		wait += IDLE_WAIT_TIMESTEP_MSEC;
>   	} while (wait < IDLE_WAIT_TIMEOUT_MSEC);
>   
>   	igt_debugfs_dump(drm_fd, "i915_rps_boost_info");
> -	igt_assert_eq(freqs[ACT], freqs[RPn]);
> +	/* Actual freq may be 0 when idle or in RC6 */
> +	igt_assert_lte(freqs[ACT], freqs[RPn]);
>   	igt_debug("Required %d msec to reach cur=idle\n", wait);
>   }
>   

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
  2022-09-27 17:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-11 15:26   ` Gupta, Anshuman
  2022-11-11 15:34     ` Nilawar, Badal
  0 siblings, 1 reply; 6+ messages in thread
From: Gupta, Anshuman @ 2022-11-11 15:26 UTC (permalink / raw)
  To: igt-dev, Dixit, Ashutosh, Nilawar, Badal

[-- Attachment #1: Type: text/plain, Size: 38283 bytes --]

Below failure not related to this series.
Pushed to igt upstream.
Br,
Anshuman Gupta.

From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Patchwork
Sent: Tuesday, September 27, 2022 10:55 PM
To: Dixit, Ashutosh <ashutosh.dixit@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: [igt-dev] ✗ Fi.CI.IGT: failure for i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6

Patch Details
Series:
i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
URL:
https://patchwork.freedesktop.org/series/109102/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html
CI Bug Log - changes from IGT_6664_full -> IGTPW_7846_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_7846_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7846_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html

Participating hosts (8 -> 6)

Missing (2): shard-rkl shard-tglu

Possible new issues

Here are the unknown changes that may have been introduced in IGTPW_7846_full:

IGT changes
Possible regressions

  *   igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html> +48 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@prime_nv_test@i915_blt_fill_nv_read.html> +48 similar issues

Known issues

Here are the changes found in IGTPW_7846_full that come from known issues:

IGT changes
Issues hit

  *   igt@gem_create@create-massive:

     *   shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@gem_create@create-massive.html> (i915#4991<https://gitlab.freedesktop.org/drm/intel/issues/4991>) +1 similar issue

  *   igt@gem_ctx_persistence@hostile:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb4/igt@gem_ctx_persistence@hostile.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) +1 similar issue

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@gem_exec_fair@basic-none-vip@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue

  *   igt@gem_lmem_swapping@verify-random-ccs:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@gem_lmem_swapping@verify-random-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk3/igt@gem_lmem_swapping@verify-random-ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)

  *   igt@gem_pread@exhaustion:

     *   shard-glk: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_pread@exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>)

  *   igt@gem_softpin@evict-snoop:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@gem_softpin@evict-snoop.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_softpin@evict-snoop.html> (fdo#109312<https://bugs.freedesktop.org/show_bug.cgi?id=109312>)

  *   igt@gem_userptr_blits@coherency-unsync:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)

  *   igt@gen7_exec_parse@load-register-reg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gen7_exec_parse@load-register-reg.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@gen7_exec_parse@load-register-reg.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2 similar issues

  *   igt@i915_pm_dc@dc6-psr:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@i915_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>)

  *   igt@i915_selftest@live@hangcheck:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb8/igt@i915_selftest@live@hangcheck.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@i915_selftest@live@hangcheck.html> (i915#5591<https://gitlab.freedesktop.org/drm/intel/issues/5591>)

  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>)

  *   igt@kms_big_fb@linear-8bpp-rotate-90:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_big_fb@linear-8bpp-rotate-90.html> (fdo#110725<https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_big_fb@linear-8bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-180:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)

  *   igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>)

  *   igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +4 similar issues

  *   igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3 similar issues

  *   igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 similar issue

  *   igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2 similar issues

  *   igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html> (fdo#109278<https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +3 similar issues

  *   igt@kms_cdclk@mode-transition-all-outputs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742<https://gitlab.freedesktop.org/drm/intel/issues/3742>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742<https://gitlab.freedesktop.org/drm/intel/issues/3742>)

  *   igt@kms_chamelium@hdmi-edid-change-during-suspend:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-suspend.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues

  *   igt@kms_chamelium@hdmi-frame-dump:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb7/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109284<https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)

  *   igt@kms_color@ctm-0-25@pipe-b-edp-1:

     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_color@ctm-0-25@pipe-b-edp-1.html> (i915#315<https://gitlab.freedesktop.org/drm/intel/issues/315>) +2 similar issues

  *   igt@kms_color@ctm-0-25@pipe-c-edp-1:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_color@ctm-0-25@pipe-c-edp-1.html> (i915#315<https://gitlab.freedesktop.org/drm/intel/issues/315>) +3 similar issues

  *   igt@kms_color_chamelium@ctm-limited-range:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk6/igt@kms_color_chamelium@ctm-limited-range.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues

  *   igt@kms_content_protection@dp-mst-lic-type-0:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/intel/issues/3116> / i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/intel/issues/3116>)

  *   igt@kms_cursor_crc@cursor-onscreen-512x512:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>)

  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-panning-vs-hang:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>)
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>)

  *   igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> (i915#6375<https://gitlab.freedesktop.org/drm/intel/issues/6375>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue

  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +5 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +10 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html> (i915#6497<https://gitlab.freedesktop.org/drm/intel/issues/6497>) +4 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +7 similar issues

  *   igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>)

  *   igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +124 similar issues

  *   igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues

  *   igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +7 similar issues

  *   igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +5 similar issues

  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +163 similar issues

  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues

  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)

  *   igt@kms_psr2_su@page_flip-xrgb8888:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)

  *   igt@kms_psr@psr2_sprite_blt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue

  *   igt@kms_setmode@basic@pipe-a-vga-1:

     *   shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465<https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue

  *   igt@kms_writeback@writeback-check-output:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_writeback@writeback-check-output.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>)

  *   igt@perf@stress-open-close:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@perf@stress-open-close.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@perf@stress-open-close.html> (i915#5213<https://gitlab.freedesktop.org/drm/intel/issues/5213>)

  *   igt@perf_pmu@event-wait@rcs0:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@perf_pmu@event-wait@rcs0.html> (fdo#112283<https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html> (fdo#112283<https://bugs.freedesktop.org/show_bug.cgi?id=112283>)

  *   igt@prime_nv_pcopy@test3_5:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +108 similar issues

  *   igt@sysfs_clients@pidname:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@sysfs_clients@pidname.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue

  *   igt@sysfs_clients@split-25:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@sysfs_clients@split-25.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@sysfs_clients@split-25.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>)
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@sysfs_clients@split-25.html> (i915#2994<https://gitlab.freedesktop.org/drm/intel/issues/2994>)

Possible fixes

  *   igt@feature_discovery@psr2:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@feature_discovery@psr2.html>

  *   igt@gem_ctx_persistence@smoketest:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_ctx_persistence@smoketest.html> (i915#5099<https://gitlab.freedesktop.org/drm/intel/issues/5099>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_ctx_persistence@smoketest.html>

  *   igt@gem_exec_balancer@parallel-bb-first:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525<https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html>

  *   igt@gem_exec_fair@basic-flow@rcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html>

  *   igt@gem_exec_fair@basic-none-solo@rcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html> +1 similar issue

  *   igt@gem_exec_fair@basic-pace-share@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html> +1 similar issue

  *   igt@i915_pm_dc@dc9-dpms:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/intel/issues/4281>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html>

  *   igt@i915_suspend@basic-s3-without-i915:

     *   shard-iclb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_suspend@basic-s3-without-i915.html> (i915#5982<https://gitlab.freedesktop.org/drm/intel/issues/5982>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@i915_suspend@basic-s3-without-i915.html>

  *   igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1:

     *   shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html> (i915#62<https://gitlab.freedesktop.org/drm/intel/issues/62>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html> +38 similar issues

  *   igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html>

  *   igt@kms_hdmi_inject@inject-audio:

     *   shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@kms_hdmi_inject@inject-audio.html> (i915#433<https://gitlab.freedesktop.org/drm/intel/issues/433>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html>

  *   igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:

     *   shard-apl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html> +1 similar issue

  *   igt@kms_psr@psr2_cursor_blt:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr@psr2_cursor_blt.html> (fdo#109441<https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html> +1 similar issue

  *   igt@kms_psr_stress_test@flip-primary-invalidate-overlay:

     *   shard-tglb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519<https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>

  *   igt@kms_vblank@pipe-a-wait-idle:

     *   shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-snb2/igt@kms_vblank@pipe-a-wait-idle.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb5/igt@kms_vblank@pipe-a-wait-idle.html>

Warnings

  *   igt@i915_pm_dc@dc3co-vpb-simulation:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588<https://gitlab.freedesktop.org/drm/intel/issues/588>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-apl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#62<https://gitlab.freedesktop.org/drm/intel/issues/62>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145<https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265<https://gitlab.freedesktop.org/drm/intel/issues/265>)

  *   igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1:

     *   shard-glk: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1888<https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>)

  *   igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>)

  *   igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920<https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)

  *   igt@kms_psr2_su@page_flip-p010:

     *   shard-iclb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642<https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939<https://gitlab.freedesktop.org/drm/intel/issues/5939>)

  *   igt@runner@aborted:

     *   shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@runner@aborted.html>) (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@runner@aborted.html>) (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>)
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk1/igt@runner@aborted.html> (i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@runner@aborted.html>) (i915#3002<https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>)

Build changes

  *   CI: CI-20190529 -> None
  *   IGT: IGT_6664 -> IGTPW_7846

CI-20190529: 20190529
CI_DRM_12185: ae6a4bb62f9524823ef5b00552e27231f7936da3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7846: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html
IGT_6664: fac15df438b13f585c128a4c7930e6b08e89e4c0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

[-- Attachment #2: Type: text/html, Size: 78477 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
  2022-11-11 15:26   ` Gupta, Anshuman
@ 2022-11-11 15:34     ` Nilawar, Badal
  0 siblings, 0 replies; 6+ messages in thread
From: Nilawar, Badal @ 2022-11-11 15:34 UTC (permalink / raw)
  To: Gupta, Anshuman, igt-dev, Dixit, Ashutosh

Thanks Anshuman.

Regards,
Badal

On 11-11-2022 20:56, Gupta, Anshuman wrote:
> Below failure not related to this series.
> 
> Pushed to igt upstream.
> 
> Br,
> 
> Anshuman Gupta.
> 
> *From:* igt-dev <igt-dev-bounces@lists.freedesktop.org> *On Behalf Of 
> *Patchwork
> *Sent:* Tuesday, September 27, 2022 10:55 PM
> *To:* Dixit, Ashutosh <ashutosh.dixit@intel.com>
> *Cc:* igt-dev@lists.freedesktop.org
> *Subject:* [igt-dev] ✗ Fi.CI.IGT: failure for i915/i915_pm_rps: Actual 
> freq can be 0 when idle or in RC6
> 
> *Patch Details*
> 
> *Series:*
> 
> 	
> 
> i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6
> 
> *URL:*
> 
> 	
> 
> https://patchwork.freedesktop.org/series/109102/ 
> <https://patchwork.freedesktop.org/series/109102/>
> 
> *State:*
> 
> 	
> 
> failure
> 
> *Details:*
> 
> 	
> 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html>
> 
> 
>   CI Bug Log - changes from IGT_6664_full -> IGTPW_7846_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_7846_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_7846_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives in CI.
> 
> External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html>
> 
> 
>     Participating hosts (8 -> 6)
> 
> Missing (2): shard-rkl shard-tglu
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in 
> IGTPW_7846_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   * igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html> +48 similar issues
> 
>   * igt@prime_nv_test@i915_blt_fill_nv_read:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@prime_nv_test@i915_blt_fill_nv_read.html> +48 similar issues
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_7846_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   * igt@gem_create@create-massive:
> 
>       o shard-glk: NOTRUN -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@gem_create@create-massive.html> (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>) +1 similar issue
> 
>   * igt@gem_ctx_persistence@hostile:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb4/igt@gem_ctx_persistence@hostile.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue
> 
>   * igt@gem_exec_balancer@parallel-out-fence:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) +1 similar issue
> 
>   * igt@gem_exec_fair@basic-none-vip@rcs0:
> 
>       o shard-tglb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@gem_exec_fair@basic-none-vip@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>       o shard-glk: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> 
>   * igt@gem_exec_fair@basic-pace@vcs0:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@gem_exec_fair@basic-pace@vcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +2 similar issues
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
> 
>       o shard-iclb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue
> 
>   * igt@gem_lmem_swapping@verify-random-ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@gem_lmem_swapping@verify-random-ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk3/igt@gem_lmem_swapping@verify-random-ccs.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>   * igt@gem_pread@exhaustion:
> 
>       o shard-glk: NOTRUN -> WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@gem_pread@exhaustion.html> (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>)
> 
>   * igt@gem_softpin@evict-snoop:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_softpin@evict-snoop.html> (fdo#109312 <https://bugs.freedesktop.org/show_bug.cgi?id=109312>)
> 
>   * igt@gem_userptr_blits@coherency-unsync:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 similar issue
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
> 
>   * igt@gen7_exec_parse@load-register-reg:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gen7_exec_parse@load-register-reg.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +1 similar issue
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@gen7_exec_parse@load-register-reg.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2 similar issues
> 
>   * igt@i915_pm_dc@dc6-psr:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@i915_pm_dc@dc6-psr.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@i915_pm_dc@dc6-psr.html> (i915#3989 <https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
> 
>   * igt@i915_selftest@live@hangcheck:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb8/igt@i915_selftest@live@hangcheck.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@i915_selftest@live@hangcheck.html> (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>)
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> 
>   * igt@kms_big_fb@linear-8bpp-rotate-90:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_big_fb@linear-8bpp-rotate-90.html> (fdo#110725 <https://bugs.freedesktop.org/show_bug.cgi?id=110725> / fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_big_fb@linear-8bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> 
>   * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +1 similar issue
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
> 
>   * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
> 
>   * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +4 similar issues
> 
>   * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3 similar issues
> 
>   * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1 similar issue
> 
>   * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2 similar issues
> 
>   * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html> (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +3 similar issues
> 
>   * igt@kms_cdclk@mode-transition-all-outputs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742 <https://gitlab.freedesktop.org/drm/intel/issues/3742>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742 <https://gitlab.freedesktop.org/drm/intel/issues/3742>)
> 
>   * igt@kms_chamelium@hdmi-edid-change-during-suspend:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-suspend.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues
> 
>   * igt@kms_chamelium@hdmi-frame-dump:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb7/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb8/igt@kms_chamelium@hdmi-frame-dump.html> (fdo#109284 <https://bugs.freedesktop.org/show_bug.cgi?id=109284> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> 
>   * igt@kms_color@ctm-0-25@pipe-b-edp-1:
> 
>       o shard-iclb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_color@ctm-0-25@pipe-b-edp-1.html> (i915#315 <https://gitlab.freedesktop.org/drm/intel/issues/315>) +2 similar issues
> 
>   * igt@kms_color@ctm-0-25@pipe-c-edp-1:
> 
>       o shard-tglb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_color@ctm-0-25@pipe-c-edp-1.html> (i915#315 <https://gitlab.freedesktop.org/drm/intel/issues/315>) +3 similar issues
> 
>   * igt@kms_color_chamelium@ctm-limited-range:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk6/igt@kms_color_chamelium@ctm-limited-range.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4 similar issues
> 
>   * igt@kms_content_protection@dp-mst-lic-type-0:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb1/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116 <https://gitlab.freedesktop.org/drm/intel/issues/3116> / i915#3299 <https://gitlab.freedesktop.org/drm/intel/issues/3299>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116 <https://gitlab.freedesktop.org/drm/intel/issues/3116>)
> 
>   * igt@kms_cursor_crc@cursor-onscreen-512x512:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> 
>   * igt@kms_cursor_crc@cursor-random-512x512:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue
> 
>   * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>)
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html> (i915#2122 <https://gitlab.freedesktop.org/drm/intel/issues/2122>)
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html> (i915#6375 <https://gitlab.freedesktop.org/drm/intel/issues/6375>)
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +5 similar issues
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +10 similar issues
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html> (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>) +4 similar issues
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280> / fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +7 similar issues
> 
>   * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) +2 similar issues
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>       o shard-glk: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>) +1 similar issue
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
> 
>       o shard-apl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html> (fdo#108145 <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>   * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +124 similar issues
> 
>   * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues
> 
>   * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-edp-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +7 similar issues
> 
>   * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +5 similar issues
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +163 similar issues
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues
> 
>   * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
>   * igt@kms_psr2_su@page_flip-xrgb8888:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
>   * igt@kms_psr@psr2_sprite_blt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1 similar issue
> 
>   * igt@kms_setmode@basic@pipe-a-vga-1:
> 
>       o shard-snb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/intel/issues/5465>) +1 similar issue
> 
>   * igt@kms_writeback@writeback-check-output:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@kms_writeback@writeback-check-output.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
> 
>   * igt@perf@stress-open-close:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk8/igt@perf@stress-open-close.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@perf@stress-open-close.html> (i915#5213 <https://gitlab.freedesktop.org/drm/intel/issues/5213>)
> 
>   * igt@perf_pmu@event-wait@rcs0:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@perf_pmu@event-wait@rcs0.html> (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html> (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> 
>   * igt@prime_nv_pcopy@test3_5:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb6/igt@prime_nv_pcopy@test3_5.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +108 similar issues
> 
>   * igt@sysfs_clients@pidname:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@sysfs_clients@pidname.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
> 
>   * igt@sysfs_clients@split-25:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb7/igt@sysfs_clients@split-25.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1 similar issue
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@sysfs_clients@split-25.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@sysfs_clients@split-25.html> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
> 
> 
>         Possible fixes
> 
>   * igt@feature_discovery@psr2:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@feature_discovery@psr2.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@feature_discovery@psr2.html>
> 
>   * igt@gem_ctx_persistence@smoketest:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_ctx_persistence@smoketest.html> (i915#5099 <https://gitlab.freedesktop.org/drm/intel/issues/5099>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@gem_ctx_persistence@smoketest.html>
> 
>   * igt@gem_exec_balancer@parallel-bb-first:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html>
> 
>   * igt@gem_exec_fair@basic-flow@rcs0:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html>
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
> 
>       o shard-apl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html> +1 similar issue
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html> +1 similar issue
> 
>   * igt@i915_pm_dc@dc9-dpms:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html>
> 
>   * igt@i915_suspend@basic-s3-without-i915:
> 
>       o shard-iclb: INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@i915_suspend@basic-s3-without-i915.html> (i915#5982 <https://gitlab.freedesktop.org/drm/intel/issues/5982>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb5/igt@i915_suspend@basic-s3-without-i915.html>
> 
>   * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html> (i915#62 <https://gitlab.freedesktop.org/drm/intel/issues/62>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp1.html> +38 similar issues
> 
>   * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html> (i915#2122 <https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a1.html>
> 
>   * igt@kms_hdmi_inject@inject-audio:
> 
>       o shard-tglb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb1/igt@kms_hdmi_inject@inject-audio.html> (i915#433 <https://gitlab.freedesktop.org/drm/intel/issues/433>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html>
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
> 
>       o shard-apl: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html> +1 similar issue
> 
>   * igt@kms_psr@psr2_cursor_blt:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr@psr2_cursor_blt.html> (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html> +1 similar issue
> 
>   * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o shard-tglb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> 
>   * igt@kms_vblank@pipe-a-wait-idle:
> 
>       o shard-snb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-snb2/igt@kms_vblank@pipe-a-wait-idle.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-snb5/igt@kms_vblank@pipe-a-wait-idle.html>
> 
> 
>         Warnings
> 
>   * igt@i915_pm_dc@dc3co-vpb-simulation:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#588 <https://gitlab.freedesktop.org/drm/intel/issues/588>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> 
>       o shard-apl: DMESG-FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145 <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#62 <https://gitlab.freedesktop.org/drm/intel/issues/62>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> (fdo#108145 <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> 
>   * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1:
> 
>       o shard-glk: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1888 <https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-1.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
> 
>   * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
>   * igt@kms_psr2_su@page_flip-p010:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-iclb8/igt@kms_psr2_su@page_flip-p010.html> (fdo#109642 <https://bugs.freedesktop.org/show_bug.cgi?id=109642> / fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html> (i915#5939 <https://gitlab.freedesktop.org/drm/intel/issues/5939>)
> 
>   * igt@runner@aborted:
> 
>       o shard-apl: (FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl1/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl8/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl3/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-apl7/igt@runner@aborted.html>) (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl8/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl3/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl2/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-apl6/igt@runner@aborted.html>) (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180> / i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>)
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6664/shard-glk1/igt@runner@aborted.html> (i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> (FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk7/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk5/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk9/igt@runner@aborted.html>, FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/shard-glk8/igt@runner@aborted.html>) (i915#3002 <https://gitlab.freedesktop.org/drm/intel/issues/3002> / i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>)
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_6664 -> IGTPW_7846
> 
> CI-20190529: 20190529
> CI_DRM_12185: ae6a4bb62f9524823ef5b00552e27231f7936da3 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_7846: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7846/index.html>
> IGT_6664: fac15df438b13f585c128a4c7930e6b08e89e4c0 @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git 
> <https://gitlab.freedesktop.org/drm/igt-gpu-tools.git>
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-11-11 15:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27  6:28 [igt-dev] [PATCH i-g-t] i915/i915_pm_rps: Actual freq can be 0 when idle or in RC6 Ashutosh Dixit
2022-09-27  7:03 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-09-27 17:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-11-11 15:26   ` Gupta, Anshuman
2022-11-11 15:34     ` Nilawar, Badal
2022-11-10 14:57 ` [igt-dev] [PATCH i-g-t] " Nilawar, Badal

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.