All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel
@ 2021-02-22 17:09 José Roberto de Souza
  2021-02-22 18:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: José Roberto de Souza @ 2021-02-22 17:09 UTC (permalink / raw)
  To: igt-dev

Enable PSR2 selective fetch using debugfs during test setup, this will
allow us to have some test coverage of this feature by CI.

Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 lib/igt_psr.c       |  3 +++
 lib/igt_psr.h       |  3 ++-
 tests/kms_psr2_sf.c | 10 ++++++----
 3 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index d5167fbad..68240f9a3 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -158,6 +158,9 @@ static bool psr_set(int device, int debugfs_fd, int mode)
 		case PSR_MODE_2:
 			debug_val = "0x2";
 			break;
+		case PSR_MODE_2_SEL_FETCH:
+			debug_val = "0x4";
+			break;
 		default:
 			/* Disables PSR */
 			debug_val = "0x1";
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index 25111cc2b..c47b197b1 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -32,7 +32,8 @@
 
 enum psr_mode {
 	PSR_MODE_1,
-	PSR_MODE_2
+	PSR_MODE_2,
+	PSR_MODE_2_SEL_FETCH,
 };
 
 bool psr_disabled_check(int debugfs_fd);
diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c
index 296ed8476..8d3e13019 100644
--- a/tests/kms_psr2_sf.c
+++ b/tests/kms_psr2_sf.c
@@ -560,9 +560,6 @@ igt_main
 					       data.debugfs_fd, PSR_MODE_2),
 			      "Sink does not support PSR2\n");
 
-		igt_require_f(psr2_selective_fetch_check(data.debugfs_fd),
-			      "PSR2 selective fetch not enabled\n");
-
 		data.bufmgr = drm_intel_bufmgr_gem_init(data.drm_fd, 4096);
 		igt_assert(data.bufmgr);
 		drm_intel_bufmgr_gem_enable_reuse(data.bufmgr);
@@ -571,7 +568,7 @@ igt_main
 
 		/* Test if PSR2 can be enabled */
 		igt_require_f(psr_enable(data.drm_fd,
-					 data.debugfs_fd, PSR_MODE_2),
+					 data.debugfs_fd, PSR_MODE_2_SEL_FETCH),
 			      "Error enabling PSR2\n");
 
 		data.damage_area_count = MAX_DAMAGE_AREAS;
@@ -579,6 +576,11 @@ igt_main
 		data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
 		prepare(&data);
 		r = psr_wait_entry(data.debugfs_fd, PSR_MODE_2);
+		if (!r)
+			psr_print_debugfs(data.debugfs_fd);
+
+		igt_require_f(psr2_selective_fetch_check(data.debugfs_fd),
+			      "PSR2 selective fetch not enabled\n");
 		cleanup(&data);
 		if (!r)
 			psr_print_debugfs(data.debugfs_fd);
-- 
2.30.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_psr2_sf: Enable selective fetch feature in kernel
  2021-02-22 17:09 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel José Roberto de Souza
@ 2021-02-22 18:41 ` Patchwork
  2021-02-22 21:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2021-03-02 13:03 ` [igt-dev] [PATCH i-g-t] " Mun, Gwan-gyeong
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2021-02-22 18:41 UTC (permalink / raw)
  To: José Roberto de Souza; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 4575 bytes --]

== Series Details ==

Series: tests/kms_psr2_sf: Enable selective fetch feature in kernel
URL   : https://patchwork.freedesktop.org/series/87294/
State : success

== Summary ==

CI Bug Log - changes from IGT_6012 -> IGTPW_5544
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_flink_basic@bad-flink:
    - fi-tgl-y:           [PASS][1] -> [DMESG-WARN][2] ([i915#402]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-tgl-y/igt@gem_flink_basic@bad-flink.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-tgl-y/igt@gem_flink_basic@bad-flink.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-kefka:       [PASS][3] -> [INCOMPLETE][4] ([i915#2940])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-bsw-kefka/igt@i915_selftest@live@execlists.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-bsw-kefka/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-skl-guc:         [PASS][5] -> [DMESG-FAIL][6] ([i915#2291] / [i915#541])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-skl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-skl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gt_pm:
    - fi-tgl-y:           NOTRUN -> [DMESG-FAIL][7] ([i915#1759])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-tgl-y/igt@i915_selftest@live@gt_pm.html

  * igt@runner@aborted:
    - fi-bsw-kefka:       NOTRUN -> [FAIL][8] ([i915#1436] / [i915#2722])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-bsw-kefka/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@debugfs_test@read_all_entries:
    - fi-tgl-y:           [DMESG-WARN][9] ([i915#402]) -> [PASS][10] +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-tgl-y/igt@debugfs_test@read_all_entries.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-tgl-y/igt@debugfs_test@read_all_entries.html

  * igt@i915_module_load@reload:
    - {fi-tgl-dsi}:       [DMESG-WARN][11] ([i915#1982] / [k.org#205379]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-tgl-dsi/igt@i915_module_load@reload.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-tgl-dsi/igt@i915_module_load@reload.html

  
#### Warnings ####

  * igt@i915_selftest@live@gt_lrc:
    - fi-tgl-y:           [INCOMPLETE][13] ([i915#750]) -> [DMESG-FAIL][14] ([i915#2373])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/fi-tgl-y/igt@i915_selftest@live@gt_lrc.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/fi-tgl-y/igt@i915_selftest@live@gt_lrc.html

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

  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541
  [i915#750]: https://gitlab.freedesktop.org/drm/intel/issues/750
  [k.org#205379]: https://bugzilla.kernel.org/show_bug.cgi?id=205379


Participating hosts (45 -> 39)
------------------------------

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6012 -> IGTPW_5544

  CI-20190529: 20190529
  CI_DRM_9795: 5f1072de87a90be6d0ba8f4e4cffdbbe13166f03 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5544: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/index.html
  IGT_6012: 232db375fcd86bef00badb1e3913630a2a5649d6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 5427 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_psr2_sf: Enable selective fetch feature in kernel
  2021-02-22 17:09 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel José Roberto de Souza
  2021-02-22 18:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-02-22 21:34 ` Patchwork
  2021-03-02 13:45   ` Souza, Jose
  2021-03-02 13:03 ` [igt-dev] [PATCH i-g-t] " Mun, Gwan-gyeong
  2 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2021-02-22 21:34 UTC (permalink / raw)
  To: Souza, Jose; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 30277 bytes --]

== Series Details ==

Series: tests/kms_psr2_sf: Enable selective fetch feature in kernel
URL   : https://patchwork.freedesktop.org/series/87294/
State : success

== Summary ==

CI Bug Log - changes from IGT_6012_full -> IGTPW_5544_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_5544_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5544_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_5544/index.html

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

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

### IGT changes ###

#### Warnings ####

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][1], [FAIL][2], [FAIL][3]) ([i915#2724]) -> ([FAIL][4], [FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8]) ([i915#1814] / [i915#3002])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl7/igt@runner@aborted.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@runner@aborted.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@runner@aborted.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@runner@aborted.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@runner@aborted.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@runner@aborted.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@runner@aborted.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-hsw:          NOTRUN -> [WARN][9] ([i915#2283])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([fdo#109314])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@legacy-engines-mixed:
    - shard-snb:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +4 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2846])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842]) +4 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         NOTRUN -> [FAIL][14] ([i915#2842]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
    - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#2849])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#112283])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-many-active@vcs0:
    - shard-kbl:          NOTRUN -> [FAIL][20] ([i915#2389]) +4 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@gem_exec_reloc@basic-many-active@vcs0.html

  * igt@gem_exec_schedule@u-fairslice@vcs0:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][21] ([i915#2803])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb8/igt@gem_exec_schedule@u-fairslice@vcs0.html

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - shard-glk:          [PASS][22] -> [DMESG-WARN][23] ([i915#118] / [i915#95])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk2/igt@gem_exec_whisper@basic-contexts-priority-all.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk2/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - shard-glk:          NOTRUN -> [DMESG-WARN][24] ([i915#118] / [i915#95])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@gem_exec_whisper@basic-queues-priority-all.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][25] ([i915#2658])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl6/igt@gem_pread@exhaustion.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][26] ([i915#2658])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
    - shard-hsw:          NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@gem_pwrite@basic-exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][28] ([i915#2658])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html
    - shard-tglb:         NOTRUN -> [WARN][29] ([i915#2658])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][30] ([fdo#109271]) +298 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([i915#768]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][32] ([i915#3002]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#1317]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt.html

  * igt@gem_userptr_blits@mmap-offset-invalidate-idle@uc:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#1317]) +3 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb2/igt@gem_userptr_blits@mmap-offset-invalidate-idle@uc.html

  * igt@gem_userptr_blits@process-exit-mmap@gtt:
    - shard-kbl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1699]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@gem_userptr_blits@process-exit-mmap@gtt.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-snb:          NOTRUN -> [FAIL][36] ([i915#2724])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb5/igt@gem_userptr_blits@vma-merge.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-hsw:          [PASS][37] -> [INCOMPLETE][38] ([i915#2880])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-hsw8/igt@i915_module_load@reload-with-fault-injection.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-hsw:          [PASS][39] -> [WARN][40] ([i915#1519])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-hsw2/igt@i915_pm_rc6_residency@rc6-idle.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111644] / [i915#1397] / [i915#2411])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#110892])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@system-suspend-modeset:
    - shard-kbl:          [PASS][43] -> [INCOMPLETE][44] ([i915#151] / [i915#155])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-kbl4/igt@i915_pm_rpm@system-suspend-modeset.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@i915_pm_rpm@system-suspend-modeset.html

  * igt@i915_pm_sseu@full-enable:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109288])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@i915_pm_sseu@full-enable.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109303])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@i915_query@query-topology-known-pci-ids.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109303])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@i915_query@query-topology-known-pci-ids.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          NOTRUN -> [DMESG-WARN][48] ([i915#180])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#110725] / [fdo#111614])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_big_fb@linear-32bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#111614])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111615]) +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-hsw:          NOTRUN -> [SKIP][52] ([fdo#109271]) +108 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2705])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_chamelium@hdmi-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +31 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium@vga-hpd:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) +24 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color@pipe-a-degamma:
    - shard-tglb:         NOTRUN -> [FAIL][56] ([i915#1149])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@kms_color@pipe-a-degamma.html

  * igt@kms_color@pipe-b-ctm-0-25:
    - shard-iclb:         NOTRUN -> [FAIL][57] ([i915#1149] / [i915#315])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb7/igt@kms_color@pipe-b-ctm-0-25.html
    - shard-tglb:         NOTRUN -> [FAIL][58] ([i915#1149] / [i915#315])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@kms_color@pipe-b-ctm-0-25.html

  * igt@kms_color@pipe-d-degamma:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278] / [i915#1149])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb8/igt@kms_color@pipe-d-degamma.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-hsw:          NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw8/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@kms_color_chamelium@pipe-c-ctm-0-5.html
    - shard-glk:          NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@kms_color_chamelium@pipe-c-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#109284] / [fdo#111827]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:
    - shard-snb:          NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +21 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][66] ([i915#1319]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_content_protection@legacy.html
    - shard-tglb:         NOTRUN -> [SKIP][68] ([fdo#111828]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][69] ([i915#1319])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl7/igt@kms_content_protection@lic.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-128x42-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278]) +11 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-128x42-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#109279]) +4 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html

  * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
    - shard-snb:          NOTRUN -> [SKIP][73] ([fdo#109271]) +317 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb6/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-glk:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109274]) +3 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2:
    - shard-glk:          [PASS][77] -> [FAIL][78] ([i915#79])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [PASS][79] -> [DMESG-WARN][80] ([i915#180]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
    - shard-kbl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2672]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2672])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-kbl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2642])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:
    - shard-apl:          NOTRUN -> [FAIL][84] ([i915#2641])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
    - shard-glk:          [PASS][85] -> [FAIL][86] ([i915#49])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          NOTRUN -> [INCOMPLETE][87] ([i915#155])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271]) +207 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109280]) +14 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([fdo#111825]) +27 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
    - shard-glk:          NOTRUN -> [SKIP][91] ([fdo#109271]) +64 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#1187])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@kms_hdr@static-toggle-dpms.html
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#1187])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_invalid_dotclock:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#110577])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb8/igt@kms_invalid_dotclock.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#533]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][96] ([fdo#108145] / [i915#265]) +3 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][97] ([fdo#108145] / [i915#265])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][98] ([fdo#108145] / [i915#265]) +4 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_multiple@atomic-pipe-d-tiling-none:
    - shard-hsw:          NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) +17 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@kms_plane_multiple@atomic-pipe-d-tiling-none.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:
    - shard-glk:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#658]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
    - shard-apl:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658]) +6 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
    - shard-iclb:         NOTRUN -> [SKIP][102] ([i915#658]) +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-kbl:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +8 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         [PASS][104] -> [SKIP][105] ([fdo#109441]) +2 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-iclb2/igt@kms_psr@psr2_dpms.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb6/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-hsw:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#1072]) +4 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_sysfs_edid_timing:
    - shard-kbl:          NOTRUN -> [FAIL][107] ([IGT#2])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#533]) +5 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-kbl:          NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#2437])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2437]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([i915#2530])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@nouveau_crc@pipe-d-ctx-flip-detection:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([i915#2530]) +2 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html
    - shard-iclb:         NOTRUN -> [SKIP][113] ([fdo#109278] / [i915#2530])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@nouveau_crc@pipe-d-ctx-flip-detection.html

  * igt@prime_nv_api@i915_nv_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][114] ([fdo#109291]) +2 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html

  * igt@prime_nv_test@i915_import_pread_pwrite:
    - shard-tglb:         NOTRUN -> [SKIP][115] ([fdo#109291]) +3 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@prime_nv_test@i915_import_pread_pwrite.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][116] ([fdo#111656])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][117] ([fdo#109292])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb3/igt@prime_vgem@coherency-gtt.html

  * igt@sysfs_clients@recycle:
    - shard-tglb:         [PASS][118] -> [FAIL][119] ([i915#3028])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-tglb8/igt@sysfs_clients@recycle.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@sysfs_clients@recycle.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         NOTRUN -> [FAIL][120] ([i915#3028])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb6/igt@sysfs_clients@recycle-many.html
    - shard-kbl:          NOTRUN -> [FAIL][121] ([i915#3028])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@sysfs_clients@recycle-many.html
    - shard-tglb:         NOTRUN -> [FAIL][122] ([i915#3028])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@sysfs_clients@recycle-many.html
    - shard-snb:          NOTRUN -> [FAIL][123] ([i915#3028])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@split-10@bcs0:
    - shard-glk:          [PASS][124] -> [SKIP][125] ([fdo#109271] / [i915#3026])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk7/igt@sysfs_clients@split-10@bcs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk2/igt@sysfs_clients@split-10@bcs0.html
    - shard-apl:          NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#3026])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@sysfs_clients@split-10@bcs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-glk:          [TIMEOUT][127] ([i915#2918]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [FAIL][129] ([i915#2842]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [FAIL][131] ([i915#2842]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [FAIL][133] ([i915#2842]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_whisper@basic-contexts-all:
    - shard-glk:          [DMESG-WARN][135] ([i915#118] / [i915#95]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@gem_exec_whisper@basic-contexts-all.html

  * igt@kms_cursor_legacy@curs

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 33873 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel
  2021-02-22 17:09 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel José Roberto de Souza
  2021-02-22 18:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2021-02-22 21:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-03-02 13:03 ` Mun, Gwan-gyeong
  2 siblings, 0 replies; 5+ messages in thread
From: Mun, Gwan-gyeong @ 2021-03-02 13:03 UTC (permalink / raw)
  To: igt-dev, Souza, Jose

On Mon, 2021-02-22 at 09:09 -0800, José Roberto de Souza wrote:
> Enable PSR2 selective fetch using debugfs during test setup, this will
> allow us to have some test coverage of this feature by CI.
> 
> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
> Cc: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
> Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
> ---
>  lib/igt_psr.c       |  3 +++
>  lib/igt_psr.h       |  3 ++-
>  tests/kms_psr2_sf.c | 10 ++++++----
>  3 files changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/lib/igt_psr.c b/lib/igt_psr.c
> index d5167fbad..68240f9a3 100644
> --- a/lib/igt_psr.c
> +++ b/lib/igt_psr.c
> @@ -158,6 +158,9 @@ static bool psr_set(int device, int debugfs_fd, int
> mode)
>                 case PSR_MODE_2:
>                         debug_val = "0x2";
>                         break;
> +               case PSR_MODE_2_SEL_FETCH:
> +                       debug_val = "0x4";
> +                       break;
>                 default:
>                         /* Disables PSR */
>                         debug_val = "0x1";
> diff --git a/lib/igt_psr.h b/lib/igt_psr.h
> index 25111cc2b..c47b197b1 100644
> --- a/lib/igt_psr.h
> +++ b/lib/igt_psr.h
> @@ -32,7 +32,8 @@
>  
>  enum psr_mode {
>         PSR_MODE_1,
> -       PSR_MODE_2
> +       PSR_MODE_2,
> +       PSR_MODE_2_SEL_FETCH,
>  };
>  
>  bool psr_disabled_check(int debugfs_fd);
> diff --git a/tests/kms_psr2_sf.c b/tests/kms_psr2_sf.c
> index 296ed8476..8d3e13019 100644
> --- a/tests/kms_psr2_sf.c
> +++ b/tests/kms_psr2_sf.c
> @@ -560,9 +560,6 @@ igt_main
>                                                data.debugfs_fd,
> PSR_MODE_2),
>                               "Sink does not support PSR2\n");
>  
> -
>                igt_require_f(psr2_selective_fetch_check(data.debugfs_fd)
> ,
> -                             "PSR2 selective fetch not enabled\n");
> -
>                 data.bufmgr = drm_intel_bufmgr_gem_init(data.drm_fd,
> 4096);
>                 igt_assert(data.bufmgr);
>                 drm_intel_bufmgr_gem_enable_reuse(data.bufmgr);
> @@ -571,7 +568,7 @@ igt_main
>  
>                 /* Test if PSR2 can be enabled */
>                 igt_require_f(psr_enable(data.drm_fd,
> -                                        data.debugfs_fd, PSR_MODE_2),
> +                                        data.debugfs_fd,
> PSR_MODE_2_SEL_FETCH),
>                               "Error enabling PSR2\n");
>  
>                 data.damage_area_count = MAX_DAMAGE_AREAS;
> @@ -579,6 +576,11 @@ igt_main
>                 data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
>                 prepare(&data);
>                 r = psr_wait_entry(data.debugfs_fd, PSR_MODE_2);
> +               if (!r)
> +                       psr_print_debugfs(data.debugfs_fd);
> +
> +               igt_require_f(psr2_selective_fetch_check(data.debugfs_f
> d),
> +                             "PSR2 selective fetch not enabled\n");
>                 cleanup(&data);
>                 if (!r)
>                         psr_print_debugfs(data.debugfs_fd);

Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_psr2_sf: Enable selective fetch feature in kernel
  2021-02-22 21:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2021-03-02 13:45   ` Souza, Jose
  0 siblings, 0 replies; 5+ messages in thread
From: Souza, Jose @ 2021-03-02 13:45 UTC (permalink / raw)
  To: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 28180 bytes --]

On Mon, 2021-02-22 at 21:34 +0000, Patchwork wrote:
Patch Details
Series: tests/kms_psr2_sf: Enable selective fetch feature in kernel
URL:    https://patchwork.freedesktop.org/series/87294/
State:  success
Details:        https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/index.html
CI Bug Log - changes from IGT_6012_full -> IGTPW_5544_full
Summary

WARNING

Minor unknown changes coming with IGTPW_5544_full need to be verified
manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5544_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_5544/index.html

Possible new issues

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

IGT changes
Warnings

  *   igt@runner@aborted:
     *   shard-apl: (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl7/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@runner@aborted.html>) ([i915#2724]) -> (FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@runner@aborted.html>, FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@runner@aborted.html>) ([i915#1814] / [i915#3002])

Not related, patch pushed. Thanks for the review GG.

Known issues

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

IGT changes
Issues hit

  *   igt@core_hotunplug@unbind-rebind:

     *   shard-hsw: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@core_hotunplug@unbind-rebind.html> ([i915#2283])
  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
  *   igt@gem_ctx_persistence@legacy-engines-mixed:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html> ([fdo#109271] / [i915#1099]) +4 similar issues
  *   igt@gem_exec_fair@basic-deadline:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@gem_exec_fair@basic-deadline.html> ([i915#2846])
  *   igt@gem_exec_fair@basic-pace@bcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html> ([i915#2842]) +4 similar issues
  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) +2 similar issues
  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) +1 similar issue

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2849])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])
  *   igt@gem_exec_reloc@basic-many-active@vcs0:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@gem_exec_reloc@basic-many-active@vcs0.html> ([i915#2389]) +4 similar issues
  *   igt@gem_exec_schedule@u-fairslice@vcs0:

     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb8/igt@gem_exec_schedule@u-fairslice@vcs0.html> ([i915#2803])
  *   igt@gem_exec_whisper@basic-contexts-priority-all:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk2/igt@gem_exec_whisper@basic-contexts-priority-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk2/igt@gem_exec_whisper@basic-contexts-priority-all.html> ([i915#118] / [i915#95])
  *   igt@gem_exec_whisper@basic-queues-priority-all:

     *   shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@gem_exec_whisper@basic-queues-priority-all.html> ([i915#118] / [i915#95])
  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl6/igt@gem_pread@exhaustion.html> ([i915#2658])
  *   igt@gem_pwrite@basic-exhaustion:

     *   shard-snb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])

     *   shard-hsw: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])

     *   shard-kbl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])

     *   shard-tglb: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html> ([i915#2658])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +298 similar issues
  *   igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html> ([i915#768]) +1 similar issue
  *   igt@gem_userptr_blits@input-checking:

     *   shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@gem_userptr_blits@input-checking.html> ([i915#3002]) +1 similar issue
  *   igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@gem_userptr_blits@mmap-offset-invalidate-idle@gtt.html> ([i915#1317]) +3 similar issues
  *   igt@gem_userptr_blits@mmap-offset-invalidate-idle@uc:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb2/igt@gem_userptr_blits@mmap-offset-invalidate-idle@uc.html> ([i915#1317]) +3 similar issues
  *   igt@gem_userptr_blits@process-exit-mmap@gtt:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@gem_userptr_blits@process-exit-mmap@gtt.html> ([fdo#109271] / [i915#1699]) +3 similar issues
  *   igt@gem_userptr_blits@vma-merge:

     *   shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb5/igt@gem_userptr_blits@vma-merge.html> ([i915#2724])
  *   igt@i915_module_load@reload-with-fault-injection:

     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-hsw8/igt@i915_module_load@reload-with-fault-injection.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@i915_module_load@reload-with-fault-injection.html> ([i915#2880])
  *   igt@i915_pm_rc6_residency@rc6-idle:

     *   shard-hsw: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-hsw2/igt@i915_pm_rc6_residency@rc6-idle.html> -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@i915_pm_rc6_residency@rc6-idle.html> ([i915#1519])
  *   igt@i915_pm_rpm@dpms-non-lpsp:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html> ([fdo#111644] / [i915#1397] / [i915#2411])

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html> ([fdo#110892])

  *   igt@i915_pm_rpm@system-suspend-modeset:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-kbl4/igt@i915_pm_rpm@system-suspend-modeset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@i915_pm_rpm@system-suspend-modeset.html> ([i915#151] / [i915#155])
  *   igt@i915_pm_sseu@full-enable:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@i915_pm_sseu@full-enable.html> ([fdo#109288])
  *   igt@i915_query@query-topology-known-pci-ids:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@i915_query@query-topology-known-pci-ids.html> ([fdo#109303])

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@i915_query@query-topology-known-pci-ids.html> ([fdo#109303])

  *   igt@i915_suspend@fence-restore-tiled2untiled:

     *   shard-apl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html> ([i915#180])
  *   igt@kms_big_fb@linear-32bpp-rotate-90:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_big_fb@linear-32bpp-rotate-90.html> ([fdo#110725] / [fdo#111614])

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@kms_big_fb@linear-32bpp-rotate-90.html> ([fdo#111614])

  *   igt@kms_big_fb@yf-tiled-32bpp-rotate-0:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> ([fdo#111615]) +2 similar issues
  *   igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> ([fdo#109271]) +108 similar issues
  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_big_joiner@invalid-modeset.html> ([fdo#109271] / [i915#2705])
  *   igt@kms_chamelium@hdmi-hpd-for-each-pipe:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html> ([fdo#109271] / [fdo#111827]) +31 similar issues
  *   igt@kms_chamelium@vga-hpd:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@kms_chamelium@vga-hpd.html> ([fdo#109271] / [fdo#111827]) +24 similar issues
  *   igt@kms_color@pipe-a-degamma:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@kms_color@pipe-a-degamma.html> ([i915#1149])
  *   igt@kms_color@pipe-b-ctm-0-25:

     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb7/igt@kms_color@pipe-b-ctm-0-25.html> ([i915#1149] / [i915#315])

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@kms_color@pipe-b-ctm-0-25.html> ([i915#1149] / [i915#315])

  *   igt@kms_color@pipe-d-degamma:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb8/igt@kms_color@pipe-d-degamma.html> ([fdo#109278] / [i915#1149])
  *   igt@kms_color_chamelium@pipe-c-ctm-0-25:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw8/igt@kms_color_chamelium@pipe-c-ctm-0-25.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
  *   igt@kms_color_chamelium@pipe-c-ctm-0-5:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@kms_color_chamelium@pipe-c-ctm-0-5.html> ([fdo#109284] / [fdo#111827]) +5 similar issues

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@kms_color_chamelium@pipe-c-ctm-0-5.html> ([fdo#109271] / [fdo#111827]) +6 similar issues

  *   igt@kms_color_chamelium@pipe-d-ctm-0-5:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-0-5.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])
  *   igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html> ([fdo#109284] / [fdo#111827]) +8 similar issues
  *   igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb6/igt@kms_color_chamelium@pipe-invalid-ctm-matrix-sizes.html> ([fdo#109271] / [fdo#111827]) +21 similar issues
  *   igt@kms_content_protection@atomic:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_content_protection@atomic.html> ([i915#1319]) +3 similar issues
  *   igt@kms_content_protection@legacy:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_content_protection@legacy.html> ([fdo#109300] / [fdo#111066]) +1 similar issue

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@kms_content_protection@legacy.html> ([fdo#111828]) +1 similar issue

  *   igt@kms_content_protection@lic:

     *   shard-apl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl7/igt@kms_content_protection@lic.html> ([i915#1319])
  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279]) +2 similar issues
  *   igt@kms_cursor_crc@pipe-d-cursor-128x42-offscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-128x42-offscreen.html> ([fdo#109278]) +11 similar issues
  *   igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html> ([fdo#109279]) +4 similar issues
  *   igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb6/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html> ([fdo#109271]) +317 similar issues
  *   igt@kms_cursor_legacy@cursora-vs-flipb-legacy:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> ([fdo#109274] / [fdo#109278]) +1 similar issue
  *   igt@kms_cursor_legacy@pipe-d-torture-bo:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk1/igt@kms_cursor_legacy@pipe-d-torture-bo.html> ([fdo#109271] / [i915#533]) +1 similar issue
  *   igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([fdo#109274]) +3 similar issues
  *   igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html> ([i915#79])
  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl1/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> ([fdo#109271] / [i915#2672]) +1 similar issue

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> ([fdo#109271] / [i915#2672])

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html> ([fdo#109271] / [i915#2642])
  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#2641])
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html> ([i915#49])
  *   igt@kms_frontbuffer_tracking@fbc-suspend:

     *   shard-kbl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html> ([i915#155])
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> ([fdo#109271]) +207 similar issues
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +14 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html> ([fdo#111825]) +27 similar issues
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html> ([fdo#109271]) +64 similar issues
  *   igt@kms_hdr@static-toggle-dpms:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@kms_hdr@static-toggle-dpms.html> ([i915#1187])

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_hdr@static-toggle-dpms.html> ([i915#1187])

  *   igt@kms_invalid_dotclock:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb8/igt@kms_invalid_dotclock.html> ([fdo#110577])
  *   igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> ([fdo#109271] / [i915#533]) +1 similar issue
  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues
  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265])
  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +4 similar issues
  *   igt@kms_plane_multiple@atomic-pipe-d-tiling-none:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@kms_plane_multiple@atomic-pipe-d-tiling-none.html> ([fdo#109271] / [i915#533]) +17 similar issues
  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5.html> ([fdo#109271] / [i915#658]) +1 similar issue
  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> ([fdo#109271] / [i915#658]) +6 similar issues
  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html> ([i915#658]) +1 similar issue
  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html> ([fdo#109271] / [i915#658]) +8 similar issues
  *   igt@kms_psr@psr2_dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-iclb2/igt@kms_psr@psr2_dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb6/igt@kms_psr@psr2_dpms.html> ([fdo#109441]) +2 similar issues
  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-hsw: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-hsw2/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109271] / [i915#1072]) +4 similar issues
  *   igt@kms_sysfs_edid_timing:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl1/igt@kms_sysfs_edid_timing.html> ([IGT#2])
  *   igt@kms_vblank@pipe-d-wait-idle:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@kms_vblank@pipe-d-wait-idle.html> ([fdo#109271] / [i915#533]) +5 similar issues
  *   igt@kms_writeback@writeback-fb-id:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl6/igt@kms_writeback@writeback-fb-id.html> ([fdo#109271] / [i915#2437])
  *   igt@kms_writeback@writeback-invalid-parameters:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@kms_writeback@writeback-invalid-parameters.html> ([fdo#109271] / [i915#2437]) +1 similar issue
  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530])
  *   igt@nouveau_crc@pipe-d-ctx-flip-detection:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb2/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> ([i915#2530]) +2 similar issues

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb1/igt@nouveau_crc@pipe-d-ctx-flip-detection.html> ([fdo#109278] / [i915#2530])

  *   igt@prime_nv_api@i915_nv_import_twice_check_flink_name:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb4/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html> ([fdo#109291]) +2 similar issues
  *   igt@prime_nv_test@i915_import_pread_pwrite:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb3/igt@prime_nv_test@i915_import_pread_pwrite.html> ([fdo#109291]) +3 similar issues
  *   igt@prime_vgem@coherency-gtt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb6/igt@prime_vgem@coherency-gtt.html> ([fdo#111656])

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb3/igt@prime_vgem@coherency-gtt.html> ([fdo#109292])

  *   igt@sysfs_clients@recycle:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-tglb8/igt@sysfs_clients@recycle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb5/igt@sysfs_clients@recycle.html> ([i915#3028])
  *   igt@sysfs_clients@recycle-many:

     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-iclb6/igt@sysfs_clients@recycle-many.html> ([i915#3028])

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl2/igt@sysfs_clients@recycle-many.html> ([i915#3028])

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb7/igt@sysfs_clients@recycle-many.html> ([i915#3028])

     *   shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-snb7/igt@sysfs_clients@recycle-many.html> ([i915#3028])

  *   igt@sysfs_clients@split-10@bcs0:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk7/igt@sysfs_clients@split-10@bcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk2/igt@sysfs_clients@split-10@bcs0.html> ([fdo#109271] / [i915#3026])

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl1/igt@sysfs_clients@split-10@bcs0.html> ([fdo#109271] / [i915#3026])

Possible fixes

  *   igt@gem_ctx_persistence@close-replace-race:

     *   shard-glk: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk3/igt@gem_ctx_persistence@close-replace-race.html> ([i915#2918]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@gem_ctx_persistence@close-replace-race.html>
  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-tglb1/igt@gem_exec_fair@basic-none-share@rcs0.html>
  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-apl8/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html>
  *   igt@gem_exec_whisper@basic-contexts-all:

     *   shard-glk: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6012/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html> ([i915#118] / [i915#95]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5544/shard-glk9/igt@gem_exec_whisper@basic-contexts-all.html>
  *   igt@kms_cursor_legacy@curs


[-- Attachment #1.2: Type: text/html, Size: 34092 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-03-02 13:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22 17:09 [igt-dev] [PATCH i-g-t] tests/kms_psr2_sf: Enable selective fetch feature in kernel José Roberto de Souza
2021-02-22 18:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-02-22 21:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2021-03-02 13:45   ` Souza, Jose
2021-03-02 13:03 ` [igt-dev] [PATCH i-g-t] " Mun, Gwan-gyeong

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.