All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t] i915/guc: Disable i915_pm_rps when SLPC is enabled
@ 2022-08-19  0:37 ` Vinay Belgaumkar
  0 siblings, 0 replies; 5+ messages in thread
From: Vinay Belgaumkar @ 2022-08-19  0:37 UTC (permalink / raw)
  To: intel-gfx, igt-dev; +Cc: Rodrigo Vivi

These tests were specifically designed for host Turbo. Skip
them when SLPC is enabled as they fail frequently. We will look
to keep adding to SLPC test coverage with these scenarios.

Bug: https://gitlab.freedesktop.org/drm/intel/-/issues/3963
Bug: https://gitlab.freedesktop.org/drm/intel/issues/4016
Bug: https://gitlab.freedesktop.org/drm/intel/issues/5468
Bug: https://gitlab.freedesktop.org/drm/intel/issues/5831

v2: Add \n for the skip message, and close fd in helper

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
 lib/igt_pm.c             | 17 +++++++++++++++++
 lib/igt_pm.h             |  1 +
 tests/i915/i915_pm_rps.c | 29 ++++++++++++++++++++++++-----
 3 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 6ebbad33..99251b40 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1202,3 +1202,20 @@ void igt_pm_print_pci_card_runtime_status(void)
 		igt_pm_print_pci_dev_runtime_status(__pci_dev_pwrattr[i].pci_dev);
 	}
 }
+
+bool i915_is_slpc_enabled(int fd)
+{
+	int debugfs_fd = igt_debugfs_dir(fd);
+	char buf[4096] = {};
+	int len;
+
+	igt_require(debugfs_fd != -1);
+
+	len = igt_debugfs_simple_read(debugfs_fd, "gt/uc/guc_slpc_info", buf, sizeof(buf));
+	close(debugfs_fd);
+
+	if (len < 0)
+		return false;
+	else
+		return strstr(buf, "SLPC state: running");
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index f28b6ebf..cbbde12b 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -79,5 +79,6 @@ void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
 void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);
 void igt_pm_restore_pci_card_runtime_pm(void);
 void igt_pm_print_pci_card_runtime_status(void);
+bool i915_is_slpc_enabled(int fd);
 
 #endif /* IGT_PM_H */
diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c
index d06ade27..0f92273d 100644
--- a/tests/i915/i915_pm_rps.c
+++ b/tests/i915/i915_pm_rps.c
@@ -914,35 +914,54 @@ igt_main
 		igt_install_exit_handler(pm_rps_exit_handler);
 	}
 
-	igt_subtest("basic-api")
+	igt_subtest("basic-api") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		min_max_config(basic_check, false);
+	}
 
 	/* Verify the constraints, check if we can reach idle */
-	igt_subtest("min-max-config-idle")
+	igt_subtest("min-max-config-idle") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		min_max_config(idle_check, true);
+	}
 
 	/* Verify the constraints with high load, check if we can reach max */
 	igt_subtest("min-max-config-loaded") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		load_helper_run(HIGH);
 		min_max_config(loaded_check, false);
 		load_helper_stop();
 	}
 
 	/* Checks if we achieve boost using gem_wait */
-	igt_subtest("waitboost")
+	igt_subtest("waitboost") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		waitboost(drm_fd, false);
+	}
 
 	igt_describe("Check if the order of fences does not affect waitboosting");
-	igt_subtest("fence-order")
+	igt_subtest("fence-order") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		fence_order(drm_fd);
+	}
 
 	igt_describe("Check if context reuse does not affect waitboosting");
-	igt_subtest("engine-order")
+	igt_subtest("engine-order") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		engine_order(drm_fd);
+	}
 
 	/* Test boost frequency after GPU reset */
 	igt_subtest("reset") {
 		igt_hang_t hang = igt_allow_hang(drm_fd, 0, 0);
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		waitboost(drm_fd, true);
 		igt_disallow_hang(drm_fd, hang);
 	}
-- 
2.35.1


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

* [igt-dev] [PATCH i-g-t] i915/guc: Disable i915_pm_rps when SLPC is enabled
@ 2022-08-19  0:37 ` Vinay Belgaumkar
  0 siblings, 0 replies; 5+ messages in thread
From: Vinay Belgaumkar @ 2022-08-19  0:37 UTC (permalink / raw)
  To: intel-gfx, igt-dev; +Cc: Rodrigo Vivi

These tests were specifically designed for host Turbo. Skip
them when SLPC is enabled as they fail frequently. We will look
to keep adding to SLPC test coverage with these scenarios.

Bug: https://gitlab.freedesktop.org/drm/intel/-/issues/3963
Bug: https://gitlab.freedesktop.org/drm/intel/issues/4016
Bug: https://gitlab.freedesktop.org/drm/intel/issues/5468
Bug: https://gitlab.freedesktop.org/drm/intel/issues/5831

v2: Add \n for the skip message, and close fd in helper

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
 lib/igt_pm.c             | 17 +++++++++++++++++
 lib/igt_pm.h             |  1 +
 tests/i915/i915_pm_rps.c | 29 ++++++++++++++++++++++++-----
 3 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 6ebbad33..99251b40 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -1202,3 +1202,20 @@ void igt_pm_print_pci_card_runtime_status(void)
 		igt_pm_print_pci_dev_runtime_status(__pci_dev_pwrattr[i].pci_dev);
 	}
 }
+
+bool i915_is_slpc_enabled(int fd)
+{
+	int debugfs_fd = igt_debugfs_dir(fd);
+	char buf[4096] = {};
+	int len;
+
+	igt_require(debugfs_fd != -1);
+
+	len = igt_debugfs_simple_read(debugfs_fd, "gt/uc/guc_slpc_info", buf, sizeof(buf));
+	close(debugfs_fd);
+
+	if (len < 0)
+		return false;
+	else
+		return strstr(buf, "SLPC state: running");
+}
diff --git a/lib/igt_pm.h b/lib/igt_pm.h
index f28b6ebf..cbbde12b 100644
--- a/lib/igt_pm.h
+++ b/lib/igt_pm.h
@@ -79,5 +79,6 @@ void igt_pm_enable_pci_card_runtime_pm(struct pci_device *root,
 void igt_pm_setup_pci_card_runtime_pm(struct pci_device *pci_dev);
 void igt_pm_restore_pci_card_runtime_pm(void);
 void igt_pm_print_pci_card_runtime_status(void);
+bool i915_is_slpc_enabled(int fd);
 
 #endif /* IGT_PM_H */
diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c
index d06ade27..0f92273d 100644
--- a/tests/i915/i915_pm_rps.c
+++ b/tests/i915/i915_pm_rps.c
@@ -914,35 +914,54 @@ igt_main
 		igt_install_exit_handler(pm_rps_exit_handler);
 	}
 
-	igt_subtest("basic-api")
+	igt_subtest("basic-api") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		min_max_config(basic_check, false);
+	}
 
 	/* Verify the constraints, check if we can reach idle */
-	igt_subtest("min-max-config-idle")
+	igt_subtest("min-max-config-idle") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		min_max_config(idle_check, true);
+	}
 
 	/* Verify the constraints with high load, check if we can reach max */
 	igt_subtest("min-max-config-loaded") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		load_helper_run(HIGH);
 		min_max_config(loaded_check, false);
 		load_helper_stop();
 	}
 
 	/* Checks if we achieve boost using gem_wait */
-	igt_subtest("waitboost")
+	igt_subtest("waitboost") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		waitboost(drm_fd, false);
+	}
 
 	igt_describe("Check if the order of fences does not affect waitboosting");
-	igt_subtest("fence-order")
+	igt_subtest("fence-order") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		fence_order(drm_fd);
+	}
 
 	igt_describe("Check if context reuse does not affect waitboosting");
-	igt_subtest("engine-order")
+	igt_subtest("engine-order") {
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		engine_order(drm_fd);
+	}
 
 	/* Test boost frequency after GPU reset */
 	igt_subtest("reset") {
 		igt_hang_t hang = igt_allow_hang(drm_fd, 0, 0);
+		igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
+			      "This subtest is not supported when SLPC is enabled\n");
 		waitboost(drm_fd, true);
 		igt_disallow_hang(drm_fd, hang);
 	}
-- 
2.35.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
  2022-08-19  0:37 ` [igt-dev] " Vinay Belgaumkar
  (?)
@ 2022-08-19  1:29 ` Patchwork
  -1 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-08-19  1:29 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: igt-dev

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

== Series Details ==

Series: i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
URL   : https://patchwork.freedesktop.org/series/107472/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12002 -> IGTPW_7663
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (32 -> 27)
------------------------------

  Additional (1): fi-hsw-4770 
  Missing    (6): fi-rkl-11600 bat-dg1-6 fi-icl-u2 bat-rplp-1 bat-rpls-1 bat-rpls-2 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#3012])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-hsw-g3258:       NOTRUN -> [INCOMPLETE][2] ([i915#4817] / [i915#6598])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-g3258/igt@i915_suspend@basic-s3-without-i915.html
    - fi-hsw-4770:        NOTRUN -> [INCOMPLETE][3] ([i915#4817] / [i915#6598])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-4770/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][4] ([fdo#109271]) +9 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-hsw-4770:        NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_psr@sprite_plane_onoff:
    - fi-hsw-4770:        NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1072]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - fi-hsw-g3258:       [INCOMPLETE][7] ([i915#3303] / [i915#4785]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6632 -> IGTPW_7663

  CI-20190529: 20190529
  CI_DRM_12002: d97b20df74df568772dda6a32ee447884fd4286a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7663: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/index.html
  IGT_6632: a0ac4d449e551fd5c78b56f85cd534330ea60507 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
  2022-08-19  0:37 ` [igt-dev] " Vinay Belgaumkar
  (?)
  (?)
@ 2022-08-20  0:24 ` Patchwork
  2022-08-22 15:00   ` Rodrigo Vivi
  -1 siblings, 1 reply; 5+ messages in thread
From: Patchwork @ 2022-08-20  0:24 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: igt-dev

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

== Series Details ==

Series: i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
URL   : https://patchwork.freedesktop.org/series/107472/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12002_full -> IGTPW_7663_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7663_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7663_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_7663/index.html

Participating hosts (12 -> 9)
------------------------------

  Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_eio@hibernate:
    - shard-glk:          NOTRUN -> [INCOMPLETE][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@gem_eio@hibernate.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk:          [PASS][2] -> [INCOMPLETE][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk5/igt@i915_suspend@sysfs-reader.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@i915_suspend@sysfs-reader.html
    - shard-iclb:         [PASS][4] -> [INCOMPLETE][5] +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb2/igt@i915_suspend@sysfs-reader.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-iclb:         NOTRUN -> [INCOMPLETE][6] +5 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-suspend.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-iclb:         NOTRUN -> [SKIP][7] ([i915#6230])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@api_intel_bb@crc32.html
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#6230])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@api_intel_bb@crc32.html

  * igt@feature_discovery@chamelium:
    - shard-iclb:         NOTRUN -> [SKIP][9] ([fdo#111827])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@feature_discovery@chamelium.html

  * igt@feature_discovery@display-3x:
    - shard-iclb:         NOTRUN -> [SKIP][10] ([i915#1839])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@feature_discovery@display-3x.html

  * igt@gem_ctx_persistence@smoketest:
    - shard-snb:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +5 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@gem_ctx_persistence@smoketest.html

  * igt@gem_eio@hibernate:
    - shard-snb:          NOTRUN -> [INCOMPLETE][12] ([i915#6598])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@gem_eio@hibernate.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [PASS][13] -> [SKIP][14] ([i915#4525]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-iclb:         NOTRUN -> [SKIP][15] ([i915#6344])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2846])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-deadline.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          NOTRUN -> [FAIL][18] ([i915#2842]) +4 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842]) +6 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          [PASS][20] -> [FAIL][21] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][22] -> [FAIL][23] ([i915#2842]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109313])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_params@secure-non-root:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#112283]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gem_exec_params@secure-non-root.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#4613]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@gem_lmem_swapping@parallel-random-engines.html
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#4613]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@gem_lmem_swapping@smem-oom.html
    - shard-glk:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-iclb:         NOTRUN -> [SKIP][30] ([i915#4270]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_pxp@create-valid-protected-context.html
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#4270])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][32] ([fdo#109271]) +226 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#768]) +4 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3323])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-glk:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3323])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#3323])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@input-checking:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][37] ([i915#4991])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_userptr_blits@input-checking.html
    - shard-apl:          NOTRUN -> [DMESG-WARN][38] ([i915#4991])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@gem_userptr_blits@input-checking.html
    - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#4991])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#3297]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gen3_mixed_blits:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109289]) +8 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gen3_mixed_blits.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109289]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [PASS][43] -> [DMESG-WARN][44] ([i915#5566] / [i915#716])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk2/igt@gen9_exec_parse@allowed-all.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk3/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#2856]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_module_load@load:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#6227])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@i915_module_load@load.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#6227])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@i915_module_load@load.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#6590])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#1937])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#1937])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rpm@system-suspend-devices:
    - shard-glk:          NOTRUN -> [INCOMPLETE][51] ([i915#6598]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk8/igt@i915_pm_rpm@system-suspend-devices.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-apl:          NOTRUN -> [INCOMPLETE][52] ([i915#4939])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([i915#5723])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@i915_query@test-query-geometry-subslices.html

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

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [PASS][55] -> [INCOMPLETE][56] ([i915#4939])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl7/igt@i915_suspend@sysfs-reader.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@i915_suspend@sysfs-reader.html
    - shard-snb:          [PASS][57] -> [INCOMPLETE][58] ([i915#4817] / [i915#4939])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb5/igt@i915_suspend@sysfs-reader.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@i915_suspend@sysfs-reader.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([i915#1769])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_atomic_transition@plane-all-modeset-transition.html
    - shard-tglb:         NOTRUN -> [SKIP][60] ([i915#1769])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([i915#5286]) +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#110725] / [fdo#111614]) +6 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#110723]) +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111615])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_big_joiner@basic:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([i915#2705]) +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_big_joiner@basic.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#3886]) +16 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271]) +233 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([i915#3689] / [i915#6095])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#3689] / [i915#3886])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#3886]) +20 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278]) +37 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#3689])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109278] / [i915#3886]) +18 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#3886]) +6 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([fdo#111615] / [i915#3689]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#6095])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#3742]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@dp-hpd-storm:
    - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_chamelium@dp-hpd-storm.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +16 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_chamelium@hdmi-crc-multiple:
    - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@kms_chamelium@hdmi-crc-multiple.html

  * igt@kms_chamelium@vga-hpd-without-ddc:
    - shard-snb:          NOTRUN -> [SKIP][81] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb4/igt@kms_chamelium@vga-hpd-without-ddc.html

  * igt@kms_color_chamelium@ctm-0-50:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_color_chamelium@ctm-0-50.html

  * igt@kms_color_chamelium@ctm-blue-to-red:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([fdo#109284] / [fdo#111827])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_color_chamelium@ctm-blue-to-red.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#3116])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@type1:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109300] / [fdo#111066]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@kms_content_protection@type1.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([fdo#109274] / [fdo#111825])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
    - shard-glk:          NOTRUN -> [FAIL][87] ([i915#2346])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#5287])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#5287]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-4tiled.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([i915#3555] / [i915#3828])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109274]) +11 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][92] -> [FAIL][93] ([i915#2122])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
    - shard-glk:          [PASS][94] -> [FAIL][95] ([i915#79])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][97] ([i915#2672] / [i915#3555])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-iclb:         NOTRUN -> [SKIP][98] ([fdo#109285])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-rte:
    - shard-kbl:          NOTRUN -> [SKIP][99] ([fdo#109271]) +63 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-snb:          NOTRUN -> [INCOMPLETE][100] ([i915#6598] / [i915#6625])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([fdo#109280] / [fdo#111825]) +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][102] ([fdo#109271]) +360 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([fdo#109280]) +48 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [INCOMPLETE][104] ([i915#6598]) +2 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl4/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html

  * igt@kms_hdr@static-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#3555]) +4 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_hdr@static-toggle.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][106] ([i915#265]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
    - shard-glk:          NOTRUN -> [FAIL][107] ([i915#265])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

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

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][109] ([fdo#108145] / [i915#265]) +3 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][110] ([fdo#108145] / [i915#265]) +2 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][111] ([i915#5176]) +5 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-edp-1.html

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

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
    - shard-tglb:         NOTRUN -> [SKIP][113] ([i915#5235]) +3 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
    - shard-iclb:         [PASS][114] -> [SKIP][115] ([i915#5235]) +2 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-iclb:         NOTRUN -> [SKIP][116] ([i915#6524])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([i915#658])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-glk:          NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#658]) +4 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk9/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#658]) +3 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         NOTRUN -> [SKIP][120] ([fdo#111068] / [i915#658])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
    - shard-kbl:          NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#658])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([fdo#109642] / [fdo#111068] / [i915#658])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-iclb:         NOTRUN -> [FAIL][123] ([i915#5939])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][124] -> [SKIP][125] ([fdo#109441]) +1 similar issue
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         NOTRUN -> [SKIP][126] ([fdo#109441]) +4 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-iclb:         NOTRUN -> [SKIP][127] ([fdo#109309])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-snb:          [PASS][128] -> [INCOMPLETE][129] ([i915#4939] / [i915#6598]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-apl:          [PASS][130] -> [INCOMPLETE][131] ([i915#4939] / [i915#6598]) +2 similar issues
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
    - shard-iclb:         [PASS][132] -> [INCOMPLETE][133] ([fdo#111764])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-glk:          NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#2437])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_writeback@writeback-pixel-formats.html
    - shard-iclb:         NOTRUN -> [SKIP][135] ([i915#2437])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([i915#2530])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html

  * igt@nouveau_crc@pipe-a-ctx-flip-detection:
    - shard-iclb:         NOTRUN -> [SKIP][137] ([i915#2530]) +4 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@nouveau_crc@pipe-a-ctx-flip-detection.html

  * igt@nouveau_crc@pipe-d-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#109278] / [i915#2530])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@nouveau_crc@pipe-d-source-outp-inactive.html

  * igt@prime_nv_test@i915_import_pread_pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][139] ([fdo#109291]) +6 similar issues
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@prime_nv_test@i915_import_pread_pwrite.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         NOTRUN -> [SKIP][140] ([i915#2994]) +1 similar issue
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@sema-50:
    - shard-apl:          NOTRUN -> [SKIP][141] ([fdo#109271] / [i915#2994]) +2 similar issues
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@sysfs_clients@sema-50.html
    - shard-glk:          NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#2994]) +2 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@sysfs_clients@sema-50.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> [SKIP][143] ([fdo#109307])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@device_reset@unbind-reset-rebind:
    - {shard-rkl}:        [FAIL][144] ([i915#4778]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@device_reset@unbind-reset-rebind.html

  * igt@gem_busy@close-race:
    - shard-kbl:          [TIMEOUT][146] -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl7/igt@gem_busy@close-race.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl4/igt@gem_busy@close-race.html

  * igt@gem_ctx_persistence@heartbeat-close:
    - {shard-rkl}:        [SKIP][148] ([fdo#109315]) -> [PASS][149] +3 similar issues
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@gem_ctx_persistence@heartbeat-close.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-2/igt@gem_ctx_persistence@heartbeat-close.html

  * igt@gem_eio@kms:
    - shard-tglb:         [FAIL][150] ([i915#5784]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglb5/igt@gem_eio@kms.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [SKIP][152] ([i915#4525]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_capture@pi@vcs0:
    - {shard-tglu}:       [INCOMPLETE][154] ([i915#3371]) -> [PASS][155]
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-1/igt@gem_exec_capture@pi@vcs0.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-4/igt@gem_exec_capture@pi@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][156] ([i915#2842]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [SKIP][158] ([fdo#109271]) -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [FAIL][160] ([i915#2842]) -> [PASS][161] +1 similar issue
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_ppgtt@blt-vs-render-ctxn:
    - {shard-rkl}:        [INCOMPLETE][162] ([i915#3692]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@gem_ppgtt@blt-vs-render-ctxn.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@gem_ppgtt@blt-vs-render-ctxn.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [DMESG-WARN][164] ([i915#5566] / [i915#716]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@gen9_exec_parse@allowed-single.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-rkl}:        [SKIP][166] ([i915#3361]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - {shard-tglu}:       [FAIL][168] ([i915#3825]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - {shard-tglu}:       [WARN][170] ([i915#2681]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-iclb:         [INCOMPLETE][172] -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb5/igt@i915_pm_rpm@system-suspend.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_selftest@perf@engine_cs:
    - shard-snb:          [SKIP][174] ([fdo#109271]) -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@i915_selftest@perf@engine_cs.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb4/igt@i915_selftest@perf@engine_cs.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - {shard-tglu}:       [FAIL][176] ([i915#2346]) -> [PASS][177]
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
    - shard-kbl:          [FAIL][178] ([i915#1188]) -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - {shard-tglu}:       [DMESG-WARN][180] ([i915#5122]) -> [PASS][181] +1 similar issue
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-apl:          [DMESG-WARN][182] ([i915#180]) -> [PASS][183]
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [SKIP][184] ([fdo#109441]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-kbl:          [INCOMPLETE][186] ([i915#4939]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html

  * igt@syncobj_wait@wait-all-interrupted:
    - {shard-rkl}:        [SKIP][188] ([i915#2575]) -> [PASS][189] +1 similar issue
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@syncobj_wait@wait-all-interrupted.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-5/igt@syncobj_wait@wait-all-interrupted.html

  
#### Warnings ####

  * igt@gem_eio@suspend:
    - shard-snb:          [INCOMPLETE][190] -> [INCOMPLETE][191] ([i915#6598])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb2/igt@gem_eio@suspend.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@gem_eio@suspend.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-iclb:         [SKIP][192] ([i915#658]) -> [SKIP][193] ([i915#2920])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-snb:          [SKIP][194] ([fdo#109271]) -> [INCOMPLETE][195] ([i915#4939] / [i915#6598])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][196], [FAIL][197]) ([fdo#109271] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599]) -> ([FAIL][198], [FAIL][199], [FAIL][200]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#6599])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@runner@aborted.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@runner@aborted.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@runner@aborted.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@runner@aborted.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@runner@aborted.html

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

  [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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111764]: https://bugs.freedesktop.org/show_bug.cgi?id=111764
  [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#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [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#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371
  [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3692]: https://gitlab.freedesktop.org/drm/intel/issues/3692
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5775]: https://gitlab.freedesktop.org/drm/intel/issues/5775
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
  [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6598]: https://gitlab.freedesktop.org/drm/intel/issues/6598
  [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599
  [i915#6625]: https://gitlab.freedesktop.org/drm/intel/issues/6625
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6632 -> IGTPW_7663
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12002: d97b20df74df568772dda6a32ee447884fd4286a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7663: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/index.html
  IGT_6632: a0ac4d449e551fd5c78b56f85cd534330ea60507 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
  2022-08-20  0:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-08-22 15:00   ` Rodrigo Vivi
  0 siblings, 0 replies; 5+ messages in thread
From: Rodrigo Vivi @ 2022-08-22 15:00 UTC (permalink / raw)
  To: igt-dev

On Sat, Aug 20, 2022 at 12:24:36AM -0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2)
>    URL:     [1]https://patchwork.freedesktop.org/series/107472/
>    State:   failure
>    Details:
>    [2]https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/index.html
> 
>          CI Bug Log - changes from CI_DRM_12002_full -> IGTPW_7663_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_7663_full absolutely need to
>    be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_7663_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_7663/index.html
> 
> Participating hosts (12 -> 9)
> 
>    Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_7663_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@gem_eio@hibernate:
>           + shard-glk: NOTRUN -> [3]INCOMPLETE +1 similar issue
>      * igt@i915_suspend@sysfs-reader:
>           + shard-glk: [4]PASS -> [5]INCOMPLETE
>           + shard-iclb: [6]PASS -> [7]INCOMPLETE +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-suspend:
>           + shard-iclb: NOTRUN -> [8]INCOMPLETE +5 similar issues

false positives here since new igt_skips couldn't cause this and the
debugfs check is correct.

So I pushed this patch. Thanks for the patch.

> 
> Known issues
> 
>    Here are the changes found in IGTPW_7663_full that come from known
>    issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@api_intel_bb@crc32:
>           + shard-iclb: NOTRUN -> [9]SKIP ([10]i915#6230)
>           + shard-tglb: NOTRUN -> [11]SKIP ([12]i915#6230)
>      * igt@feature_discovery@chamelium:
>           + shard-iclb: NOTRUN -> [13]SKIP ([14]fdo#111827)
>      * igt@feature_discovery@display-3x:
>           + shard-iclb: NOTRUN -> [15]SKIP ([16]i915#1839)
>      * igt@gem_ctx_persistence@smoketest:
>           + shard-snb: NOTRUN -> [17]SKIP ([18]fdo#109271 / [19]i915#1099)
>             +5 similar issues
>      * igt@gem_eio@hibernate:
>           + shard-snb: NOTRUN -> [20]INCOMPLETE ([21]i915#6598)
>      * igt@gem_exec_balancer@parallel-keep-in-fence:
>           + shard-iclb: [22]PASS -> [23]SKIP ([24]i915#4525) +1 similar
>             issue
>      * igt@gem_exec_capture@capture-recoverable:
>           + shard-iclb: NOTRUN -> [25]SKIP ([26]i915#6344)
>      * igt@gem_exec_fair@basic-deadline:
>           + shard-kbl: [27]PASS -> [28]FAIL ([29]i915#2846)
>      * igt@gem_exec_fair@basic-none-rrul@rcs0:
>           + shard-glk: NOTRUN -> [30]FAIL ([31]i915#2842) +4 similar
>             issues
>      * igt@gem_exec_fair@basic-none@vecs0:
>           + shard-iclb: NOTRUN -> [32]FAIL ([33]i915#2842) +6 similar
>             issues
>      * igt@gem_exec_fair@basic-pace-solo@rcs0:
>           + shard-apl: [34]PASS -> [35]FAIL ([36]i915#2842)
>      * igt@gem_exec_fair@basic-pace@rcs0:
>           + shard-kbl: [37]PASS -> [38]FAIL ([39]i915#2842) +1 similar
>             issue
>      * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>           + shard-iclb: NOTRUN -> [40]SKIP ([41]fdo#109313)
>      * igt@gem_exec_params@secure-non-root:
>           + shard-iclb: NOTRUN -> [42]SKIP ([43]fdo#112283) +1 similar
>             issue
>      * igt@gem_lmem_swapping@parallel-random-engines:
>           + shard-iclb: NOTRUN -> [44]SKIP ([45]i915#4613) +3 similar
>             issues
>           + shard-kbl: NOTRUN -> [46]SKIP ([47]fdo#109271 / [48]i915#4613)
>      * igt@gem_lmem_swapping@smem-oom:
>           + shard-apl: NOTRUN -> [49]SKIP ([50]fdo#109271 / [51]i915#4613)
>             +2 similar issues
>           + shard-glk: NOTRUN -> [52]SKIP ([53]fdo#109271 / [54]i915#4613)
>             +3 similar issues
>      * igt@gem_pxp@create-valid-protected-context:
>           + shard-iclb: NOTRUN -> [55]SKIP ([56]i915#4270) +3 similar
>             issues
>           + shard-tglb: NOTRUN -> [57]SKIP ([58]i915#4270)
>      * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
>           + shard-glk: NOTRUN -> [59]SKIP ([60]fdo#109271) +226 similar
>             issues
>      * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
>           + shard-iclb: NOTRUN -> [61]SKIP ([62]i915#768) +4 similar
>             issues
>      * igt@gem_userptr_blits@dmabuf-sync:
>           + shard-apl: NOTRUN -> [63]SKIP ([64]fdo#109271 / [65]i915#3323)
>           + shard-glk: NOTRUN -> [66]SKIP ([67]fdo#109271 / [68]i915#3323)
>           + shard-iclb: NOTRUN -> [69]SKIP ([70]i915#3323)
>      * igt@gem_userptr_blits@input-checking:
>           + shard-iclb: NOTRUN -> [71]DMESG-WARN ([72]i915#4991)
>           + shard-apl: NOTRUN -> [73]DMESG-WARN ([74]i915#4991)
>           + shard-glk: NOTRUN -> [75]DMESG-WARN ([76]i915#4991)
>      * igt@gem_userptr_blits@unsync-overlap:
>           + shard-iclb: NOTRUN -> [77]SKIP ([78]i915#3297) +2 similar
>             issues
>      * igt@gen3_mixed_blits:
>           + shard-iclb: NOTRUN -> [79]SKIP ([80]fdo#109289) +8 similar
>             issues
>      * igt@gen7_exec_parse@basic-allowed:
>           + shard-tglb: NOTRUN -> [81]SKIP ([82]fdo#109289) +2 similar
>             issues
>      * igt@gen9_exec_parse@allowed-all:
>           + shard-glk: [83]PASS -> [84]DMESG-WARN ([85]i915#5566 /
>             [86]i915#716)
>      * igt@gen9_exec_parse@bb-start-param:
>           + shard-iclb: NOTRUN -> [87]SKIP ([88]i915#2856) +3 similar
>             issues
>      * igt@i915_module_load@load:
>           + shard-tglb: NOTRUN -> [89]SKIP ([90]i915#6227)
>           + shard-iclb: NOTRUN -> [91]SKIP ([92]i915#6227)
>      * igt@i915_pm_freq_mult@media-freq@gt0:
>           + shard-iclb: NOTRUN -> [93]SKIP ([94]i915#6590)
>      * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>           + shard-apl: NOTRUN -> [95]SKIP ([96]fdo#109271 / [97]i915#1937)
>      * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>           + shard-glk: NOTRUN -> [98]SKIP ([99]fdo#109271 /
>             [100]i915#1937)
>      * igt@i915_pm_rpm@system-suspend-devices:
>           + shard-glk: NOTRUN -> [101]INCOMPLETE ([102]i915#6598) +4
>             similar issues
>      * igt@i915_pm_rpm@system-suspend-execbuf:
>           + shard-apl: NOTRUN -> [103]INCOMPLETE ([104]i915#4939)
>      * igt@i915_query@test-query-geometry-subslices:
>           + shard-iclb: NOTRUN -> [105]SKIP ([106]i915#5723)
>      * igt@i915_suspend@fence-restore-tiled2untiled:
>           + shard-apl: NOTRUN -> [107]DMESG-WARN ([108]i915#180)
>      * igt@i915_suspend@sysfs-reader:
>           + shard-apl: [109]PASS -> [110]INCOMPLETE ([111]i915#4939)
>           + shard-snb: [112]PASS -> [113]INCOMPLETE ([114]i915#4817 /
>             [115]i915#4939)
>      * igt@kms_atomic_transition@plane-all-modeset-transition:
>           + shard-iclb: NOTRUN -> [116]SKIP ([117]i915#1769)
>           + shard-tglb: NOTRUN -> [118]SKIP ([119]i915#1769)
>      * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>           + shard-iclb: NOTRUN -> [120]SKIP ([121]i915#5286) +4 similar
>             issues
>      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>           + shard-iclb: NOTRUN -> [122]SKIP ([123]fdo#110725 /
>             [124]fdo#111614) +6 similar issues
>      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
>           + shard-iclb: NOTRUN -> [125]SKIP ([126]fdo#110723) +2 similar
>             issues
>           + shard-tglb: NOTRUN -> [127]SKIP ([128]fdo#111615)
>      * igt@kms_big_joiner@basic:
>           + shard-iclb: NOTRUN -> [129]SKIP ([130]i915#2705) +1 similar
>             issue
>      * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
>           + shard-glk: NOTRUN -> [131]SKIP ([132]fdo#109271 /
>             [133]i915#3886) +16 similar issues
>      * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
>           + shard-apl: NOTRUN -> [134]SKIP ([135]fdo#109271) +233 similar
>             issues
>      * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs:
>           + shard-tglb: NOTRUN -> [136]SKIP ([137]i915#3689 /
>             [138]i915#6095)
>      * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs:
>           + shard-tglb: NOTRUN -> [139]SKIP ([140]i915#3689 /
>             [141]i915#3886)
>      * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc
>        :
>           + shard-apl: NOTRUN -> [142]SKIP ([143]fdo#109271 /
>             [144]i915#3886) +20 similar issues
>      * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs:
>           + shard-iclb: NOTRUN -> [145]SKIP ([146]fdo#109278) +37 similar
>             issues
>      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs:
>           + shard-tglb: NOTRUN -> [147]SKIP ([148]i915#3689)
>      * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc
>        :
>           + shard-iclb: NOTRUN -> [149]SKIP ([150]fdo#109278 /
>             [151]i915#3886) +18 similar issues
>      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
>           + shard-kbl: NOTRUN -> [152]SKIP ([153]fdo#109271 /
>             [154]i915#3886) +6 similar issues
>      * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
>           + shard-tglb: NOTRUN -> [155]SKIP ([156]fdo#111615 /
>             [157]i915#3689) +1 similar issue
>      * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
>           + shard-tglb: NOTRUN -> [158]SKIP ([159]i915#6095)
>      * igt@kms_cdclk@plane-scaling:
>           + shard-iclb: NOTRUN -> [160]SKIP ([161]i915#3742) +1 similar
>             issue
>      * igt@kms_chamelium@dp-hpd-storm:
>           + shard-kbl: NOTRUN -> [162]SKIP ([163]fdo#109271 /
>             [164]fdo#111827) +4 similar issues
>      * igt@kms_chamelium@dp-mode-timings:
>           + shard-iclb: NOTRUN -> [165]SKIP ([166]fdo#109284 /
>             [167]fdo#111827) +16 similar issues
>      * igt@kms_chamelium@hdmi-crc-multiple:
>           + shard-glk: NOTRUN -> [168]SKIP ([169]fdo#109271 /
>             [170]fdo#111827) +15 similar issues
>      * igt@kms_chamelium@vga-hpd-without-ddc:
>           + shard-snb: NOTRUN -> [171]SKIP ([172]fdo#109271 /
>             [173]fdo#111827) +13 similar issues
>      * igt@kms_color_chamelium@ctm-0-50:
>           + shard-apl: NOTRUN -> [174]SKIP ([175]fdo#109271 /
>             [176]fdo#111827) +17 similar issues
>      * igt@kms_color_chamelium@ctm-blue-to-red:
>           + shard-tglb: NOTRUN -> [177]SKIP ([178]fdo#109284 /
>             [179]fdo#111827)
>      * igt@kms_content_protection@dp-mst-lic-type-1:
>           + shard-iclb: NOTRUN -> [180]SKIP ([181]i915#3116)
>      * igt@kms_content_protection@type1:
>           + shard-iclb: NOTRUN -> [182]SKIP ([183]fdo#109300 /
>             [184]fdo#111066) +2 similar issues
>      * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
>           + shard-tglb: NOTRUN -> [185]SKIP ([186]fdo#109274 /
>             [187]fdo#111825)
>      * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-siz
>        e:
>           + shard-glk: NOTRUN -> [188]FAIL ([189]i915#2346)
>      * igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-4tiled:
>           + shard-tglb: NOTRUN -> [190]SKIP ([191]i915#5287)
>      * igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-4tiled:
>           + shard-iclb: NOTRUN -> [192]SKIP ([193]i915#5287) +1 similar
>             issue
>      * igt@kms_dsc@dsc-with-formats:
>           + shard-iclb: NOTRUN -> [194]SKIP ([195]i915#3555 /
>             [196]i915#3828)
>      * igt@kms_flip@2x-blocking-wf_vblank:
>           + shard-iclb: NOTRUN -> [197]SKIP ([198]fdo#109274) +11 similar
>             issues
>      * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>           + shard-glk: [199]PASS -> [200]FAIL ([201]i915#2122)
>      * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
>           + shard-glk: [202]PASS -> [203]FAIL ([204]i915#79)
>      * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-dow
>        nscaling@pipe-a-valid-mode:
>           + shard-iclb: NOTRUN -> [205]SKIP ([206]i915#2672) +5 similar
>             issues
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downsc
>        aling@pipe-a-default-mode:
>           + shard-iclb: NOTRUN -> [207]SKIP ([208]i915#2672 /
>             [209]i915#3555)
>      * igt@kms_force_connector_basic@force-load-detect:
>           + shard-iclb: NOTRUN -> [210]SKIP ([211]fdo#109285)
>      * igt@kms_frontbuffer_tracking@fbc-2p-rte:
>           + shard-kbl: NOTRUN -> [212]SKIP ([213]fdo#109271) +63 similar
>             issues
>      * igt@kms_frontbuffer_tracking@fbc-suspend:
>           + shard-snb: NOTRUN -> [214]INCOMPLETE ([215]i915#6598 /
>             [216]i915#6625)
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwri
>        te:
>           + shard-tglb: NOTRUN -> [217]SKIP ([218]fdo#109280 /
>             [219]fdo#111825) +1 similar issue
>      * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cp
>        u:
>           + shard-snb: NOTRUN -> [220]SKIP ([221]fdo#109271) +360 similar
>             issues
>      * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc
>        :
>           + shard-iclb: NOTRUN -> [222]SKIP ([223]fdo#109280) +48 similar
>             issues
>      * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
>           + shard-apl: NOTRUN -> [224]INCOMPLETE ([225]i915#6598) +2
>             similar issues
>      * igt@kms_hdr@static-toggle:
>           + shard-iclb: NOTRUN -> [226]SKIP ([227]i915#3555) +4 similar
>             issues
>      * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>           + shard-apl: NOTRUN -> [228]FAIL ([229]i915#265) +1 similar
>             issue
>           + shard-glk: NOTRUN -> [230]FAIL ([231]i915#265)
>      * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
>           + shard-kbl: NOTRUN -> [232]FAIL ([233]fdo#108145 /
>             [234]i915#265)
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>           + shard-apl: NOTRUN -> [235]FAIL ([236]fdo#108145 /
>             [237]i915#265) +3 similar issues
>           + shard-glk: NOTRUN -> [238]FAIL ([239]fdo#108145 /
>             [240]i915#265) +2 similar issues
>      * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25
>        @pipe-c-edp-1:
>           + shard-iclb: NOTRUN -> [241]SKIP ([242]i915#5176) +5 similar
>             issues
>      * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pi
>        pe-b-edp-1:
>           + shard-iclb: NOTRUN -> [243]SKIP ([244]i915#5235) +2 similar
>             issues
>      * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pi
>        pe-d-edp-1:
>           + shard-tglb: NOTRUN -> [245]SKIP ([246]i915#5235) +3 similar
>             issues
>      * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0
>        -5@pipe-a-edp-1:
>           + shard-iclb: [247]PASS -> [248]SKIP ([249]i915#5235) +2 similar
>             issues
>      * igt@kms_prime@basic-modeset-hybrid:
>           + shard-iclb: NOTRUN -> [250]SKIP ([251]i915#6524)
>      * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
>           + shard-iclb: NOTRUN -> [252]SKIP ([253]i915#658)
>      * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
>           + shard-glk: NOTRUN -> [254]SKIP ([255]fdo#109271 /
>             [256]i915#658) +4 similar issues
>      * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>           + shard-apl: NOTRUN -> [257]SKIP ([258]fdo#109271 /
>             [259]i915#658) +3 similar issues
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
>           + shard-iclb: NOTRUN -> [260]SKIP ([261]fdo#111068 /
>             [262]i915#658)
>           + shard-kbl: NOTRUN -> [263]SKIP ([264]fdo#109271 /
>             [265]i915#658)
>      * igt@kms_psr2_su@page_flip-nv12:
>           + shard-iclb: NOTRUN -> [266]SKIP ([267]fdo#109642 /
>             [268]fdo#111068 / [269]i915#658)
>      * igt@kms_psr2_su@page_flip-p010:
>           + shard-iclb: NOTRUN -> [270]FAIL ([271]i915#5939)
>      * igt@kms_psr@psr2_cursor_render:
>           + shard-iclb: [272]PASS -> [273]SKIP ([274]fdo#109441) +1
>             similar issue
>      * igt@kms_psr@psr2_no_drrs:
>           + shard-iclb: NOTRUN -> [275]SKIP ([276]fdo#109441) +4 similar
>             issues
>      * igt@kms_tv_load_detect@load-detect:
>           + shard-iclb: NOTRUN -> [277]SKIP ([278]fdo#109309)
>      * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>           + shard-snb: [279]PASS -> [280]INCOMPLETE ([281]i915#4939 /
>             [282]i915#6598) +1 similar issue
>      * igt@kms_vblank@pipe-b-ts-continuation-suspend:
>           + shard-apl: [283]PASS -> [284]INCOMPLETE ([285]i915#4939 /
>             [286]i915#6598) +2 similar issues
>           + shard-iclb: [287]PASS -> [288]INCOMPLETE ([289]fdo#111764)
>      * igt@kms_writeback@writeback-pixel-formats:
>           + shard-glk: NOTRUN -> [290]SKIP ([291]fdo#109271 /
>             [292]i915#2437)
>           + shard-iclb: NOTRUN -> [293]SKIP ([294]i915#2437)
>      * igt@nouveau_crc@ctx-flip-threshold-reset-after-capture:
>           + shard-tglb: NOTRUN -> [295]SKIP ([296]i915#2530)
>      * igt@nouveau_crc@pipe-a-ctx-flip-detection:
>           + shard-iclb: NOTRUN -> [297]SKIP ([298]i915#2530) +4 similar
>             issues
>      * igt@nouveau_crc@pipe-d-source-outp-inactive:
>           + shard-iclb: NOTRUN -> [299]SKIP ([300]fdo#109278 /
>             [301]i915#2530)
>      * igt@prime_nv_test@i915_import_pread_pwrite:
>           + shard-iclb: NOTRUN -> [302]SKIP ([303]fdo#109291) +6 similar
>             issues
>      * igt@sysfs_clients@recycle-many:
>           + shard-iclb: NOTRUN -> [304]SKIP ([305]i915#2994) +1 similar
>             issue
>      * igt@sysfs_clients@sema-50:
>           + shard-apl: NOTRUN -> [306]SKIP ([307]fdo#109271 /
>             [308]i915#2994) +2 similar issues
>           + shard-glk: NOTRUN -> [309]SKIP ([310]fdo#109271 /
>             [311]i915#2994) +2 similar issues
>      * igt@tools_test@sysfs_l3_parity:
>           + shard-iclb: NOTRUN -> [312]SKIP ([313]fdo#109307)
> 
>     Possible fixes
> 
>      * igt@device_reset@unbind-reset-rebind:
>           + {shard-rkl}: [314]FAIL ([315]i915#4778) -> [316]PASS
>      * igt@gem_busy@close-race:
>           + shard-kbl: [317]TIMEOUT -> [318]PASS
>      * igt@gem_ctx_persistence@heartbeat-close:
>           + {shard-rkl}: [319]SKIP ([320]fdo#109315) -> [321]PASS +3
>             similar issues
>      * igt@gem_eio@kms:
>           + shard-tglb: [322]FAIL ([323]i915#5784) -> [324]PASS
>      * igt@gem_exec_balancer@parallel-out-fence:
>           + shard-iclb: [325]SKIP ([326]i915#4525) -> [327]PASS
>      * igt@gem_exec_capture@pi@vcs0:
>           + {shard-tglu}: [328]INCOMPLETE ([329]i915#3371) -> [330]PASS
>      * igt@gem_exec_fair@basic-pace-share@rcs0:
>           + shard-glk: [331]FAIL ([332]i915#2842) -> [333]PASS
>      * igt@gem_exec_fair@basic-pace@vcs0:
>           + shard-kbl: [334]SKIP ([335]fdo#109271) -> [336]PASS
>      * igt@gem_exec_fair@basic-pace@vcs1:
>           + shard-kbl: [337]FAIL ([338]i915#2842) -> [339]PASS +1 similar
>             issue
>      * igt@gem_ppgtt@blt-vs-render-ctxn:
>           + {shard-rkl}: [340]INCOMPLETE ([341]i915#3692) -> [342]PASS
>      * igt@gen9_exec_parse@allowed-single:
>           + shard-apl: [343]DMESG-WARN ([344]i915#5566 / [345]i915#716) ->
>             [346]PASS
>      * igt@i915_pm_dc@dc9-dpms:
>           + {shard-rkl}: [347]SKIP ([348]i915#3361) -> [349]PASS
>      * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>           + {shard-tglu}: [350]FAIL ([351]i915#3825) -> [352]PASS
>      * igt@i915_pm_rc6_residency@rc6-fence:
>           + {shard-tglu}: [353]WARN ([354]i915#2681) -> [355]PASS
>      * igt@i915_pm_rpm@system-suspend:
>           + shard-iclb: [356]INCOMPLETE -> [357]PASS
>      * igt@i915_selftest@perf@engine_cs:
>           + shard-snb: [358]SKIP ([359]fdo#109271) -> [360]PASS
>      * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>           + {shard-tglu}: [361]FAIL ([362]i915#2346) -> [363]PASS
>      * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
>           + shard-kbl: [364]FAIL ([365]i915#1188) -> [366]PASS
>      * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
>           + {shard-tglu}: [367]DMESG-WARN ([368]i915#5122) -> [369]PASS +1
>             similar issue
>      * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
>           + shard-apl: [370]DMESG-WARN ([371]i915#180) -> [372]PASS
>      * igt@kms_psr@psr2_primary_page_flip:
>           + shard-iclb: [373]SKIP ([374]fdo#109441) -> [375]PASS
>      * igt@kms_vblank@pipe-c-ts-continuation-suspend:
>           + shard-kbl: [376]INCOMPLETE ([377]i915#4939) -> [378]PASS
>      * igt@syncobj_wait@wait-all-interrupted:
>           + {shard-rkl}: [379]SKIP ([380]i915#2575) -> [381]PASS +1
>             similar issue
> 
>     Warnings
> 
>      * igt@gem_eio@suspend:
>           + shard-snb: [382]INCOMPLETE -> [383]INCOMPLETE ([384]i915#6598)
>      * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
>           + shard-iclb: [385]SKIP ([386]i915#658) -> [387]SKIP
>             ([388]i915#2920)
>      * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
>           + shard-snb: [389]SKIP ([390]fdo#109271) -> [391]INCOMPLETE
>             ([392]i915#4939 / [393]i915#6598)
>      * igt@runner@aborted:
>           + shard-apl: ([394]FAIL, [395]FAIL) ([396]fdo#109271 /
>             [397]i915#3002 / [398]i915#4312 / [399]i915#5257 /
>             [400]i915#6599) -> ([401]FAIL, [402]FAIL, [403]FAIL)
>             ([404]i915#180 / [405]i915#3002 / [406]i915#4312 /
>             [407]i915#5257 / [408]i915#6599)
> 
>    {name}: This element is suppressed. This means it is ignored when
>    computing
>    the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> Build changes
> 
>      * CI: CI-20190529 -> None
>      * IGT: IGT_6632 -> IGTPW_7663
>      * Piglit: piglit_4509 -> None
> 
>    CI-20190529: 20190529
>    CI_DRM_12002: d97b20df74df568772dda6a32ee447884fd4286a @
>    git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_7663:
>    https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/index.html
>    IGT_6632: a0ac4d449e551fd5c78b56f85cd534330ea60507 @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>    git://anongit.freedesktop.org/piglit
> 
> References
> 
>    1. https://patchwork.freedesktop.org/series/107472/
>    2. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/index.html
>    3. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@gem_eio@hibernate.html
>    4. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk5/igt@i915_suspend@sysfs-reader.html
>    5. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@i915_suspend@sysfs-reader.html
>    6. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb2/igt@i915_suspend@sysfs-reader.html
>    7. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@i915_suspend@sysfs-reader.html
>    8. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-suspend.html
>    9. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@api_intel_bb@crc32.html
>   10. https://gitlab.freedesktop.org/drm/intel/issues/6230
>   11. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@api_intel_bb@crc32.html
>   12. https://gitlab.freedesktop.org/drm/intel/issues/6230
>   13. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@feature_discovery@chamelium.html
>   14. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   15. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@feature_discovery@display-3x.html
>   16. https://gitlab.freedesktop.org/drm/intel/issues/1839
>   17. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@gem_ctx_persistence@smoketest.html
>   18. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   19. https://gitlab.freedesktop.org/drm/intel/issues/1099
>   20. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@gem_eio@hibernate.html
>   21. https://gitlab.freedesktop.org/drm/intel/issues/6598
>   22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html
>   23. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html
>   24. https://gitlab.freedesktop.org/drm/intel/issues/4525
>   25. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_exec_capture@capture-recoverable.html
>   26. https://gitlab.freedesktop.org/drm/intel/issues/6344
>   27. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-deadline.html
>   28. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>   29. https://gitlab.freedesktop.org/drm/intel/issues/2846
>   30. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html
>   31. https://gitlab.freedesktop.org/drm/intel/issues/2842
>   32. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_exec_fair@basic-none@vecs0.html
>   33. https://gitlab.freedesktop.org/drm/intel/issues/2842
>   34. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>   35. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
>   36. https://gitlab.freedesktop.org/drm/intel/issues/2842
>   37. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html
>   38. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html
>   39. https://gitlab.freedesktop.org/drm/intel/issues/2842
>   40. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
>   41. https://bugs.freedesktop.org/show_bug.cgi?id=109313
>   42. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gem_exec_params@secure-non-root.html
>   43. https://bugs.freedesktop.org/show_bug.cgi?id=112283
>   44. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@gem_lmem_swapping@parallel-random-engines.html
>   45. https://gitlab.freedesktop.org/drm/intel/issues/4613
>   46. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@gem_lmem_swapping@parallel-random-engines.html
>   47. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   48. https://gitlab.freedesktop.org/drm/intel/issues/4613
>   49. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@gem_lmem_swapping@smem-oom.html
>   50. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   51. https://gitlab.freedesktop.org/drm/intel/issues/4613
>   52. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@gem_lmem_swapping@smem-oom.html
>   53. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   54. https://gitlab.freedesktop.org/drm/intel/issues/4613
>   55. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_pxp@create-valid-protected-context.html
>   56. https://gitlab.freedesktop.org/drm/intel/issues/4270
>   57. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@gem_pxp@create-valid-protected-context.html
>   58. https://gitlab.freedesktop.org/drm/intel/issues/4270
>   59. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
>   60. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   61. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
>   62. https://gitlab.freedesktop.org/drm/intel/issues/768
>   63. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@gem_userptr_blits@dmabuf-sync.html
>   64. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   65. https://gitlab.freedesktop.org/drm/intel/issues/3323
>   66. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html
>   67. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   68. https://gitlab.freedesktop.org/drm/intel/issues/3323
>   69. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_userptr_blits@dmabuf-sync.html
>   70. https://gitlab.freedesktop.org/drm/intel/issues/3323
>   71. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@gem_userptr_blits@input-checking.html
>   72. https://gitlab.freedesktop.org/drm/intel/issues/4991
>   73. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@gem_userptr_blits@input-checking.html
>   74. https://gitlab.freedesktop.org/drm/intel/issues/4991
>   75. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk6/igt@gem_userptr_blits@input-checking.html
>   76. https://gitlab.freedesktop.org/drm/intel/issues/4991
>   77. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@gem_userptr_blits@unsync-overlap.html
>   78. https://gitlab.freedesktop.org/drm/intel/issues/3297
>   79. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@gen3_mixed_blits.html
>   80. https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   81. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@gen7_exec_parse@basic-allowed.html
>   82. https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   83. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk2/igt@gen9_exec_parse@allowed-all.html
>   84. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk3/igt@gen9_exec_parse@allowed-all.html
>   85. https://gitlab.freedesktop.org/drm/intel/issues/5566
>   86. https://gitlab.freedesktop.org/drm/intel/issues/716
>   87. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@gen9_exec_parse@bb-start-param.html
>   88. https://gitlab.freedesktop.org/drm/intel/issues/2856
>   89. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@i915_module_load@load.html
>   90. https://gitlab.freedesktop.org/drm/intel/issues/6227
>   91. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@i915_module_load@load.html
>   92. https://gitlab.freedesktop.org/drm/intel/issues/6227
>   93. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@i915_pm_freq_mult@media-freq@gt0.html
>   94. https://gitlab.freedesktop.org/drm/intel/issues/6590
>   95. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
>   96. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   97. https://gitlab.freedesktop.org/drm/intel/issues/1937
>   98. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>   99. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  100. https://gitlab.freedesktop.org/drm/intel/issues/1937
>  101. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk8/igt@i915_pm_rpm@system-suspend-devices.html
>  102. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  103. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@i915_pm_rpm@system-suspend-execbuf.html
>  104. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  105. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@i915_query@test-query-geometry-subslices.html
>  106. https://gitlab.freedesktop.org/drm/intel/issues/5723
>  107. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html
>  108. https://gitlab.freedesktop.org/drm/intel/issues/180
>  109. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl7/igt@i915_suspend@sysfs-reader.html
>  110. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@i915_suspend@sysfs-reader.html
>  111. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  112. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb5/igt@i915_suspend@sysfs-reader.html
>  113. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@i915_suspend@sysfs-reader.html
>  114. https://gitlab.freedesktop.org/drm/intel/issues/4817
>  115. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  116. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_atomic_transition@plane-all-modeset-transition.html
>  117. https://gitlab.freedesktop.org/drm/intel/issues/1769
>  118. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_atomic_transition@plane-all-modeset-transition.html
>  119. https://gitlab.freedesktop.org/drm/intel/issues/1769
>  120. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
>  121. https://gitlab.freedesktop.org/drm/intel/issues/5286
>  122. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
>  123. https://bugs.freedesktop.org/show_bug.cgi?id=110725
>  124. https://bugs.freedesktop.org/show_bug.cgi?id=111614
>  125. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
>  126. https://bugs.freedesktop.org/show_bug.cgi?id=110723
>  127. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
>  128. https://bugs.freedesktop.org/show_bug.cgi?id=111615
>  129. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_big_joiner@basic.html
>  130. https://gitlab.freedesktop.org/drm/intel/issues/2705
>  131. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
>  132. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  133. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  134. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
>  135. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  136. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html
>  137. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  138. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  139. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb3/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html
>  140. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  141. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  142. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
>  143. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  144. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  145. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html
>  146. https://bugs.freedesktop.org/show_bug.cgi?id=109278
>  147. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html
>  148. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  149. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
>  150. https://bugs.freedesktop.org/show_bug.cgi?id=109278
>  151. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  152. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
>  153. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  154. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  155. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb3/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
>  156. https://bugs.freedesktop.org/show_bug.cgi?id=111615
>  157. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  158. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
>  159. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  160. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_cdclk@plane-scaling.html
>  161. https://gitlab.freedesktop.org/drm/intel/issues/3742
>  162. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_chamelium@dp-hpd-storm.html
>  163. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  164. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  165. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_chamelium@dp-mode-timings.html
>  166. https://bugs.freedesktop.org/show_bug.cgi?id=109284
>  167. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  168. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@kms_chamelium@hdmi-crc-multiple.html
>  169. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  170. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  171. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb4/igt@kms_chamelium@vga-hpd-without-ddc.html
>  172. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  173. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  174. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_color_chamelium@ctm-0-50.html
>  175. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  176. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  177. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_color_chamelium@ctm-blue-to-red.html
>  178. https://bugs.freedesktop.org/show_bug.cgi?id=109284
>  179. https://bugs.freedesktop.org/show_bug.cgi?id=111827
>  180. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@kms_content_protection@dp-mst-lic-type-1.html
>  181. https://gitlab.freedesktop.org/drm/intel/issues/3116
>  182. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@kms_content_protection@type1.html
>  183. https://bugs.freedesktop.org/show_bug.cgi?id=109300
>  184. https://bugs.freedesktop.org/show_bug.cgi?id=111066
>  185. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
>  186. https://bugs.freedesktop.org/show_bug.cgi?id=109274
>  187. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>  188. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
>  189. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  190. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-pwrite-4tiled.html
>  191. https://gitlab.freedesktop.org/drm/intel/issues/5287
>  192. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-4tiled.html
>  193. https://gitlab.freedesktop.org/drm/intel/issues/5287
>  194. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_dsc@dsc-with-formats.html
>  195. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  196. https://gitlab.freedesktop.org/drm/intel/issues/3828
>  197. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_flip@2x-blocking-wf_vblank.html
>  198. https://bugs.freedesktop.org/show_bug.cgi?id=109274
>  199. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>  200. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>  201. https://gitlab.freedesktop.org/drm/intel/issues/2122
>  202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
>  203. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
>  204. https://gitlab.freedesktop.org/drm/intel/issues/79
>  205. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
>  206. https://gitlab.freedesktop.org/drm/intel/issues/2672
>  207. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
>  208. https://gitlab.freedesktop.org/drm/intel/issues/2672
>  209. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  210. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@kms_force_connector_basic@force-load-detect.html
>  211. https://bugs.freedesktop.org/show_bug.cgi?id=109285
>  212. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
>  213. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  214. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@kms_frontbuffer_tracking@fbc-suspend.html
>  215. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  216. https://gitlab.freedesktop.org/drm/intel/issues/6625
>  217. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
>  218. https://bugs.freedesktop.org/show_bug.cgi?id=109280
>  219. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>  220. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
>  221. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  222. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
>  223. https://bugs.freedesktop.org/show_bug.cgi?id=109280
>  224. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl4/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
>  225. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  226. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_hdr@static-toggle.html
>  227. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  228. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
>  229. https://gitlab.freedesktop.org/drm/intel/issues/265
>  230. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
>  231. https://gitlab.freedesktop.org/drm/intel/issues/265
>  232. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
>  233. https://bugs.freedesktop.org/show_bug.cgi?id=108145
>  234. https://gitlab.freedesktop.org/drm/intel/issues/265
>  235. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>  236. https://bugs.freedesktop.org/show_bug.cgi?id=108145
>  237. https://gitlab.freedesktop.org/drm/intel/issues/265
>  238. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>  239. https://bugs.freedesktop.org/show_bug.cgi?id=108145
>  240. https://gitlab.freedesktop.org/drm/intel/issues/265
>  241. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-edp-1.html
>  242. https://gitlab.freedesktop.org/drm/intel/issues/5176
>  243. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1.html
>  244. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  245. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
>  246. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
>  248. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
>  249. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  250. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_prime@basic-modeset-hybrid.html
>  251. https://gitlab.freedesktop.org/drm/intel/issues/6524
>  252. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
>  253. https://gitlab.freedesktop.org/drm/intel/issues/658
>  254. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk9/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
>  255. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  256. https://gitlab.freedesktop.org/drm/intel/issues/658
>  257. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
>  258. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  259. https://gitlab.freedesktop.org/drm/intel/issues/658
>  260. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
>  261. https://bugs.freedesktop.org/show_bug.cgi?id=111068
>  262. https://gitlab.freedesktop.org/drm/intel/issues/658
>  263. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
>  264. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  265. https://gitlab.freedesktop.org/drm/intel/issues/658
>  266. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb8/igt@kms_psr2_su@page_flip-nv12.html
>  267. https://bugs.freedesktop.org/show_bug.cgi?id=109642
>  268. https://bugs.freedesktop.org/show_bug.cgi?id=111068
>  269. https://gitlab.freedesktop.org/drm/intel/issues/658
>  270. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html
>  271. https://gitlab.freedesktop.org/drm/intel/issues/5939
>  272. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
>  273. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
>  274. https://bugs.freedesktop.org/show_bug.cgi?id=109441
>  275. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
>  276. https://bugs.freedesktop.org/show_bug.cgi?id=109441
>  277. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_tv_load_detect@load-detect.html
>  278. https://bugs.freedesktop.org/show_bug.cgi?id=109309
>  279. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>  280. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>  281. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  282. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  283. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>  284. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>  285. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  286. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  287. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>  288. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
>  289. https://bugs.freedesktop.org/show_bug.cgi?id=111764
>  290. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk2/igt@kms_writeback@writeback-pixel-formats.html
>  291. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  292. https://gitlab.freedesktop.org/drm/intel/issues/2437
>  293. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@kms_writeback@writeback-pixel-formats.html
>  294. https://gitlab.freedesktop.org/drm/intel/issues/2437
>  295. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html
>  296. https://gitlab.freedesktop.org/drm/intel/issues/2530
>  297. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@nouveau_crc@pipe-a-ctx-flip-detection.html
>  298. https://gitlab.freedesktop.org/drm/intel/issues/2530
>  299. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb5/igt@nouveau_crc@pipe-d-source-outp-inactive.html
>  300. https://bugs.freedesktop.org/show_bug.cgi?id=109278
>  301. https://gitlab.freedesktop.org/drm/intel/issues/2530
>  302. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@prime_nv_test@i915_import_pread_pwrite.html
>  303. https://bugs.freedesktop.org/show_bug.cgi?id=109291
>  304. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb6/igt@sysfs_clients@recycle-many.html
>  305. https://gitlab.freedesktop.org/drm/intel/issues/2994
>  306. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@sysfs_clients@sema-50.html
>  307. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  308. https://gitlab.freedesktop.org/drm/intel/issues/2994
>  309. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk1/igt@sysfs_clients@sema-50.html
>  310. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  311. https://gitlab.freedesktop.org/drm/intel/issues/2994
>  312. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb3/igt@tools_test@sysfs_l3_parity.html
>  313. https://bugs.freedesktop.org/show_bug.cgi?id=109307
>  314. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
>  315. https://gitlab.freedesktop.org/drm/intel/issues/4778
>  316. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@device_reset@unbind-reset-rebind.html
>  317. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl7/igt@gem_busy@close-race.html
>  318. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl4/igt@gem_busy@close-race.html
>  319. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@gem_ctx_persistence@heartbeat-close.html
>  320. https://bugs.freedesktop.org/show_bug.cgi?id=109315
>  321. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-2/igt@gem_ctx_persistence@heartbeat-close.html
>  322. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglb5/igt@gem_eio@kms.html
>  323. https://gitlab.freedesktop.org/drm/intel/issues/5784
>  324. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglb7/igt@gem_eio@kms.html
>  325. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html
>  326. https://gitlab.freedesktop.org/drm/intel/issues/4525
>  327. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html
>  328. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-1/igt@gem_exec_capture@pi@vcs0.html
>  329. https://gitlab.freedesktop.org/drm/intel/issues/3371
>  330. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-4/igt@gem_exec_capture@pi@vcs0.html
>  331. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
>  332. https://gitlab.freedesktop.org/drm/intel/issues/2842
>  333. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
>  334. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
>  335. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  336. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html
>  337. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html
>  338. https://gitlab.freedesktop.org/drm/intel/issues/2842
>  339. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
>  340. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@gem_ppgtt@blt-vs-render-ctxn.html
>  341. https://gitlab.freedesktop.org/drm/intel/issues/3692
>  342. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@gem_ppgtt@blt-vs-render-ctxn.html
>  343. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@gen9_exec_parse@allowed-single.html
>  344. https://gitlab.freedesktop.org/drm/intel/issues/5566
>  345. https://gitlab.freedesktop.org/drm/intel/issues/716
>  346. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@gen9_exec_parse@allowed-single.html
>  347. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
>  348. https://gitlab.freedesktop.org/drm/intel/issues/3361
>  349. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html
>  350. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>  351. https://gitlab.freedesktop.org/drm/intel/issues/3825
>  352. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>  353. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
>  354. https://gitlab.freedesktop.org/drm/intel/issues/2681
>  355. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html
>  356. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb5/igt@i915_pm_rpm@system-suspend.html
>  357. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@i915_pm_rpm@system-suspend.html
>  358. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@i915_selftest@perf@engine_cs.html
>  359. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  360. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb4/igt@i915_selftest@perf@engine_cs.html
>  361. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
>  362. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  363. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
>  364. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
>  365. https://gitlab.freedesktop.org/drm/intel/issues/1188
>  366. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
>  367. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-tglu-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
>  368. https://gitlab.freedesktop.org/drm/intel/issues/5122
>  369. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-tglu-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
>  370. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>  371. https://gitlab.freedesktop.org/drm/intel/issues/180
>  372. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>  373. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html
>  374. https://bugs.freedesktop.org/show_bug.cgi?id=109441
>  375. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
>  376. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-kbl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
>  377. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  378. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
>  379. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-rkl-5/igt@syncobj_wait@wait-all-interrupted.html
>  380. https://gitlab.freedesktop.org/drm/intel/issues/2575
>  381. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-rkl-5/igt@syncobj_wait@wait-all-interrupted.html
>  382. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb2/igt@gem_eio@suspend.html
>  383. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@gem_eio@suspend.html
>  384. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  385. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
>  386. https://gitlab.freedesktop.org/drm/intel/issues/658
>  387. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
>  388. https://gitlab.freedesktop.org/drm/intel/issues/2920
>  389. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
>  390. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  391. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-snb6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
>  392. https://gitlab.freedesktop.org/drm/intel/issues/4939
>  393. https://gitlab.freedesktop.org/drm/intel/issues/6598
>  394. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@runner@aborted.html
>  395. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12002/shard-apl3/igt@runner@aborted.html
>  396. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  397. https://gitlab.freedesktop.org/drm/intel/issues/3002
>  398. https://gitlab.freedesktop.org/drm/intel/issues/4312
>  399. https://gitlab.freedesktop.org/drm/intel/issues/5257
>  400. https://gitlab.freedesktop.org/drm/intel/issues/6599
>  401. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl3/igt@runner@aborted.html
>  402. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl2/igt@runner@aborted.html
>  403. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7663/shard-apl1/igt@runner@aborted.html
>  404. https://gitlab.freedesktop.org/drm/intel/issues/180
>  405. https://gitlab.freedesktop.org/drm/intel/issues/3002
>  406. https://gitlab.freedesktop.org/drm/intel/issues/4312
>  407. https://gitlab.freedesktop.org/drm/intel/issues/5257
>  408. https://gitlab.freedesktop.org/drm/intel/issues/6599

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

end of thread, other threads:[~2022-08-22 15:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-19  0:37 [Intel-gfx] [PATCH i-g-t] i915/guc: Disable i915_pm_rps when SLPC is enabled Vinay Belgaumkar
2022-08-19  0:37 ` [igt-dev] " Vinay Belgaumkar
2022-08-19  1:29 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/guc: Disable i915_pm_rps when SLPC is enabled (rev2) Patchwork
2022-08-20  0:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-08-22 15:00   ` Rodrigo Vivi

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.