Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option
@ 2022-04-01 21:06 David Zhang
  2022-04-01 22:01 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: David Zhang @ 2022-04-01 21:06 UTC (permalink / raw)
  To: igt-dev

[why & how]
AMDGPU DM exposure a debugfs interface entry of visual confirm
debug option which is configured for debugging like surface
programming. It also supports the PSR feature visual confirm
debugging. We'd add helpers to read/write visual confirm debug
option from/to such interface entry.

The interface entry "amdgpu_dm_visual_confirm" is located in the
debugfs directory. We'd add the enumeration of visual confirm
option which is aligned to the amdgpu kernel driver.

Cc: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Cc: Harry Wentland <harry.wentland@amd.com>
Cc: Leo Li <sunpeng.li@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Cc: Wayne Lin <wayne.lin@amd.com>

Signed-off-by: David Zhang <dingchen.zhang@amd.com>
---
 lib/igt_amd.c | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/igt_amd.h | 20 +++++++++++
 2 files changed, 116 insertions(+)

diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 664602da..02b35f68 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -25,6 +25,7 @@
 
 #include "igt_amd.h"
 #include "igt.h"
+#include "igt_sysfs.h"
 #include <amdgpu_drm.h>
 
 #define X0 1
@@ -250,6 +251,38 @@ bool igt_amd_is_tiled(uint64_t modifier)
 		return false;
 }
 
+/**
+ * @brief generic helper to check if the amdgpu dm debugfs entry defined
+ *
+ * @param drm_fd DRM file descriptor
+ * @param interface_name The debugfs interface entry name with prefix "amdgpu_dm_"
+ * @return true if <debugfs_root>/interface_name exists and defined
+ * @return false otherwise
+ */
+static bool amd_dm_has_debugfs(int drm_fd, const char *interface_name)
+{
+	int fd;
+	int res;
+	struct stat stat;
+
+	fd = igt_debugfs_dir(drm_fd);
+	if (fd < 0) {
+		igt_info("Couldn't open debugfs dir!\n");
+		return false;
+	}
+
+	res = fstatat(fd, interface_name, &stat, 0);
+	if (res != 0) {
+		igt_info("debugfs %s not supported\n", interface_name);
+		close(fd);
+		return false;
+	}
+
+	close(fd);
+	return true;
+}
+
+
 /**
  * @brief generic helper to check if the debugfs entry of given connector has the
  *        debugfs interface defined.
@@ -1075,3 +1108,66 @@ int igt_amd_read_psr_state(int drm_fd, char *connector_name)
 
 	return strtol(buf, NULL, 10);
 }
+
+/**
+ * @brief check if AMDGPU DM visual confirm debugfs interface entry exist and defined
+ * 
+ * @param drm_fd DRM file descriptor
+ * @return true if visual confirm debugfs interface exists and defined
+ * @return false otherwise
+ */
+bool igt_amd_dm_has_visual_confirm(int drm_fd)
+{
+	return amd_dm_has_debugfs(drm_fd, DEBUGFS_DM_VISUAL_CONFIRM);
+}
+
+/**
+ * @brief Read amdgpu DM visual confirm debugfs interface
+ *
+ * @param drm_fd DRM file descriptor
+ * @return int visual confirm debug option as integer
+ */
+int  igt_amd_dm_get_visual_confirm(int drm_fd)
+{
+	char buf[4];	/* current 4 bytes are enough */
+	int fd, ret;
+
+	fd = igt_debugfs_dir(drm_fd);
+	if (fd < 0) {
+		igt_info("Couldn't open debugfs dir!\n");
+		return -1;
+	}
+
+	ret = igt_debugfs_simple_read(fd, DEBUGFS_DM_VISUAL_CONFIRM, buf, sizeof(buf));
+	close(fd);
+
+	igt_assert_f(ret >= 0, "Reading %s failed.\n",
+		     DEBUGFS_DM_VISUAL_CONFIRM);
+
+	return strtol(buf, NULL, 10);
+}
+
+/**
+ * @brief Write amdgpu DM visual confirm debug option to debugfs interface
+ *
+ * @param drm_fd DRM file descriptor
+ * @param option amdgpu DC visual confirm debug option
+ * @return true if set visual confirm option success
+ * @return false otherwise
+ */
+bool igt_amd_dm_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option)
+{
+	char buf[4];
+	int fd;
+
+	fd = igt_debugfs_dir(drm_fd);
+	if (fd < 0) {
+		igt_info("Couldn't open debugfs dir!\n");
+		return false;
+	}
+
+	memset(buf, '\0', sizeof(buf));
+	snprintf(buf, sizeof(buf), "%d\n", option);
+
+	return igt_sysfs_set(fd, DEBUGFS_DM_VISUAL_CONFIRM, buf);
+}
diff --git a/lib/igt_amd.h b/lib/igt_amd.h
index e4e12ce5..df76f428 100644
--- a/lib/igt_amd.h
+++ b/lib/igt_amd.h
@@ -49,6 +49,9 @@
 #define DEBUGFS_EDP_PSR_CAP	"psr_capability"
 #define DEBUGFS_EDP_PSR_STATE	"psr_state"
 
+/* amdgpu DM interface entries */
+#define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
+
 enum amd_dsc_clock_force {
 	DSC_AUTOMATIC = 0,
 	DSC_FORCE_ON,
@@ -115,6 +118,19 @@ enum amdgpu_psr_state {
 	PSR_STATE_INVALID = 0xFF
 };
 
+/*
+ * enumeration of amdgpu DC visual confirm debug option
+ * aligned to the upstreamed amdgpu kernel driver 'enum visual_confirm' in dc.h
+ */
+enum amdgpu_debug_visual_confirm {
+	VISUAL_CONFIRM_DISABLE	= 0,
+	VISUAL_CONFIRM_SURFACE	= 1,
+	VISUAL_CONFIRM_HDR	= 2,
+	VISUAL_CONFIRM_MPCTREE	= 4,
+	VISUAL_CONFIRM_PSR	= 5,
+	VISUAL_CONFIRM_SWIZZLE	= 9
+};
+
 uint32_t igt_amd_create_bo(int fd, uint64_t size);
 void *igt_amd_mmap_bo(int fd, uint32_t handle, uint64_t size, int prot);
 unsigned int igt_amd_compute_offset(unsigned int* swizzle_pattern,
@@ -172,4 +188,8 @@ bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mod
 bool igt_amd_output_has_psr_state(int drm_fd, char *connector_name);
 int  igt_amd_read_psr_state(int drm_fd, char *connector_name);
 
+/* DM interface helpers */
+bool igt_amd_dm_has_visual_confirm(int drm_fd);
+int  igt_amd_dm_get_visual_confirm(int drm_fd);
+bool igt_amd_dm_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option);
 #endif /* IGT_AMD_H */
-- 
2.25.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-01 21:06 [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option David Zhang
@ 2022-04-01 22:01 ` Patchwork
  2022-04-02  0:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2022-04-01 22:01 UTC (permalink / raw)
  To: David Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
URL   : https://patchwork.freedesktop.org/series/102091/
State : success

== Summary ==

CI Bug Log - changes from IGT_6406 -> IGTPW_6862
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (43 -> 42)
------------------------------

  Additional (3): fi-kbl-soraka fi-icl-u2 fi-pnv-d510 
  Missing    (4): bat-dg2-8 fi-bdw-samus fi-bsw-cyan bat-jsl-1 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-icl-u2:          NOTRUN -> [SKIP][1] ([fdo#109315]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][2] ([fdo#109271]) +9 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
    - fi-icl-u2:          NOTRUN -> [SKIP][4] ([i915#2190])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-icl-u2:          NOTRUN -> [SKIP][6] ([i915#4613]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html

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

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

  * igt@kms_busy@basic@flip:
    - fi-tgl-u2:          [PASS][10] -> [DMESG-WARN][11] ([i915#402]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/fi-tgl-u2/igt@kms_busy@basic@flip.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-tgl-u2/igt@kms_busy@basic@flip.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][12] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][13] ([fdo#111827]) +8 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          NOTRUN -> [SKIP][14] ([fdo#109278]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-icl-u2:          NOTRUN -> [SKIP][15] ([fdo#109285])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
    - fi-pnv-d510:        NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#5341])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-pnv-d510/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#533])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-icl-u2:          NOTRUN -> [SKIP][18] ([i915#3555])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-userptr:
    - fi-pnv-d510:        NOTRUN -> [SKIP][19] ([fdo#109271]) +57 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-pnv-d510/igt@prime_vgem@basic-userptr.html
    - fi-icl-u2:          NOTRUN -> [SKIP][20] ([i915#3301])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-icl-u2/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-hsw-g3258:       NOTRUN -> [FAIL][21] ([fdo#109271] / [i915#1436] / [i915#4312])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-hsw-g3258/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_pm:
    - fi-tgl-1115g4:      [DMESG-FAIL][22] ([i915#3987]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@memory_region:
    - {bat-jsl-2}:        [DMESG-FAIL][24] -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/bat-jsl-2/igt@i915_selftest@live@memory_region.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/bat-jsl-2/igt@i915_selftest@live@memory_region.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6406 -> IGTPW_6862

  CI-20190529: 20190529
  CI_DRM_11440: 1aba80b3bc8c8e2cc405cd96fe95770ecbadde71 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6862: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/index.html
  IGT_6406: f3110b3083b4fecfa2153563990720a7b82485c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-01 21:06 [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option David Zhang
  2022-04-01 22:01 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2) Patchwork
@ 2022-04-02  0:44 ` Patchwork
  2022-04-04 13:52   ` Zhang, Dingchen (David)
  2022-04-04 15:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2022-04-05 14:58 ` [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option Aurabindo Pillai
  3 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2022-04-02  0:44 UTC (permalink / raw)
  To: David Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
URL   : https://patchwork.freedesktop.org/series/102091/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6406_full -> IGTPW_6862_full
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (8 -> 7)
------------------------------

  Missing    (1): shard-skl 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@fbdev@unaligned-write:
    - shard-glk:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk2/igt@fbdev@unaligned-write.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk3/igt@fbdev@unaligned-write.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-noreloc-purge-cache-random:
    - shard-snb:          NOTRUN -> [SKIP][3] ([fdo#109271]) +192 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-snb5/igt@api_intel_bb@blit-noreloc-purge-cache-random.html

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@feature_discovery@psr2.html

  * igt@gem_ccs@block-copy-inplace:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#5327])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gem_ccs@block-copy-inplace.html
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@gem_ccs@block-copy-inplace.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][7] ([i915#4991])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_create@create-massive.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][8] ([i915#4991])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][10] -> [TIMEOUT][11] ([i915#3063] / [i915#3648])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-tglb6/igt@gem_eio@unwedge-stress.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2842]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([fdo#109283])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#109283] / [i915#4877])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gem_exec_params@no-vebox.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl1/igt@gem_lmem_swapping@heavy-random.html
    - shard-glk:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk1/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613]) +2 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl7/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_media_vme:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#284])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_media_vme.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#4270]) +4 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#4270]) +4 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html

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

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#768]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_softpin@allocator-evict-all-engines:
    - shard-glk:          [PASS][29] -> [FAIL][30] ([i915#4171])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk2/igt@gem_softpin@allocator-evict-all-engines.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk8/igt@gem_softpin@allocator-evict-all-engines.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109312]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109312])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#3297]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#3297])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gen3_render_linear_blits:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#109289]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109289]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#2527] / [i915#2856]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#2856]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#1904])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][40] ([i915#454])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
    - shard-tglb:         NOTRUN -> [FAIL][41] ([i915#454])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@i915_pm_dc@dc6-dpms.html

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

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#1902])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_lpsp@screens-disabled.html
    - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#1902])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#110892]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@pc8-residency:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109293] / [fdo#109506])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109506] / [i915#2411])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#5286]) +3 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#5286]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111614]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#110725] / [fdo#111614]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3777])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3777])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3777]) +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111615]) +8 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#110723]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk9/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#3689] / [i915#3886]) +3 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#3886]) +10 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111615] / [i915#3689]) +5 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109278]) +45 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278] / [i915#3886]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([i915#3689]) +4 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl7/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +19 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb5/igt@kms_chamelium@hdmi-crc-fast.html

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

  * igt@kms_color@pipe-a-deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#3555])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb1/igt@kms_color@pipe-a-deep-color.html

  * igt@kms_color@pipe-d-ctm-negative:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109278] / [i915#1149]) +3 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_color@pipe-d-ctm-negative.html

  * igt@kms_color@pipe-d-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3555]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_color@pipe-d-deep-color.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +26 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-5:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([fdo#109284] / [fdo#111827]) +22 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk8/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_color_chamelium@pipe-d-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_color_chamelium@pipe-d-gamma.html

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

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen:
    - shard-glk:          [PASS][77] -> [DMESG-WARN][78] ([i915#118])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk6/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3319]) +5 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) +3 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][82] ([i915#3359]) +8 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109274] / [fdo#109278]) +8 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-rgb565-render-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#5287]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_draw_crc@draw-method-rgb565-render-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#5287]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html

  * igt@kms_dsc@xrgb8888-dsc-compression:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([i915#3828])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_dsc@xrgb8888-dsc-compression.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([fdo#109274] / [fdo#111825] / [i915#3966])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#111825]) +15 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109274]) +8 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][90] ([i915#180]) +6 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([i915#2587])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-apl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +132 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-glk:          [PASS][93] -> [FAIL][94] ([i915#1888] / [i915#2546])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([fdo#109280] / [fdo#111825]) +44 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][96] ([fdo#109280]) +35 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#5439]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
    - shard-iclb:         NOTRUN -> [SKIP][98] ([i915#5438])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1839])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-apl:          [PASS][102] -> [DMESG-WARN][103] ([i915#180]) +2 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
    - shard-apl:          NOTRUN -> [FAIL][104] ([fdo#108145] / [i915#265])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][105] ([fdo#108145] / [i915#265]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][106] ([i915#265])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [SKIP][107] ([fdo#109271]) +95 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk3/igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([i915#3536])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#3536]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#111615] / [fdo#112054]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_multiple@atomic-pipe-a-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][111] ([i915#5288]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_plane_multiple@atomic-pipe-a-tiling-4.html

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

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

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [PASS][116] -> [INCOMPLETE][117] ([i915#5243])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#5176]) +7 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][119] ([i915#1836])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_prime@basic-crc@first-to-second.html
    - shard-tglb:         NOTRUN -> [SKIP][120] ([i915#1836])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_prime@basic-crc@first-to-second.html

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

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#2920]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-02  0:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-04 13:52   ` Zhang, Dingchen (David)
  2022-04-04 15:36     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 8+ messages in thread
From: Zhang, Dingchen (David) @ 2022-04-04 13:52 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org, Vudum, Lakshminarayana

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

[AMD Official Use Only]

Hi Lakshmi,

I'd think this is a negative-positive since it failed a test that does not associate with the patch. Below is the link to the patch:
https://patchwork.freedesktop.org/series/102091/

Could you help to take a look?

Thanks
David
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, April 1, 2022 8:44 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)

Patch Details
Series: lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
URL:    https://patchwork.freedesktop.org/series/102091/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102091%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2BaxtpHiee8WKVLdb4QguVZuD5Ikml42HkCBtwjhh4xY%3D&reserved=0>
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/index.html<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Findex.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=o4LHqfKu7pvfjp5Wy1WW0jIpS4oqwe%2BTSmHn8HQlRPQ%3D&reserved=0>
CI Bug Log - changes from IGT_6406_full -> IGTPW_6862_full
Summary

FAILURE

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

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

Participating hosts (8 -> 7)

Missing (1): shard-skl

Possible new issues

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

IGT changes
Possible regressions

  *   igt@fbdev@unaligned-write:
     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qxgA7qh0%2FYUzSVNEs9X%2FW8iNhRzAgy4cQ6FaBznBpFk%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=RnPwX2UnFsw93FfRJVi1a6CR9sTE1x%2FYvAZ7oPvxP1o%3D&reserved=0>

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@blit-noreloc-purge-cache-random:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb5%2Figt%40api_intel_bb%40blit-noreloc-purge-cache-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4V3ZeLs9qL%2Bu8oLqJIlD0FHD2EMhqDWialiLjafYujo%3D&reserved=0> ([fdo#109271]) +192 similar issues
  *   igt@feature_discovery@psr2:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40feature_discovery%40psr2.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=24XsYCLbVWOoia1AljB9UPhogZqcLFyCtfYkIcrrP%2B0%3D&reserved=0> ([i915#658]) +2 similar issues
  *   igt@gem_ccs@block-copy-inplace:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jBvh8fs2o9MMv7wMj4Dc%2Bed2rjYhL0CcgFvomAbBHqk%3D&reserved=0> ([i915#5327])

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Bs8XbIB3qNsKhdrAB87nOoBLRZQFx7gmJTI0FCC4EsA%3D&reserved=0> ([i915#3555] / [i915#5325])

  *   igt@gem_create@create-massive:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_create%40create-massive.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=85%2B1ispFNpu5jcVk98DSTLVVkvqDCIjeJU2ClTeq%2FL0%3D&reserved=0> ([i915#4991])

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_create%40create-massive.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HEMZZ1BZTLhNgRs0RCYfdhIH%2Bg6u22cZsKb4gmSF95s%3D&reserved=0> ([i915#4991])

  *   igt@gem_ctx_persistence@legacy-engines-mixed-process:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb2%2Figt%40gem_ctx_persistence%40legacy-engines-mixed-process.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qj5VGMmdnbmOpN16uQ9UUAdRxgnyG9X%2Bejbd%2BEAr2cY%3D&reserved=0> ([fdo#109271] / [i915#1099]) +1 similar issue
  *   igt@gem_eio@unwedge-stress:

     *   shard-tglb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=sEhCYsUdi1rPlrPKOO8J4Ms%2FJS0EQ2jPX8k7JwsiXE0%3D&reserved=0> -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=iXdyfPmcJHtfknGFNMd3yQ2LnhOoUQsH9bEAE0W4C90%3D&reserved=0> ([i915#3063] / [i915#3648])
  *   igt@gem_exec_balancer@parallel-keep-in-fence:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_balancer%40parallel-keep-in-fence.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=g%2Buag7d8eOYQXzRGE41THuLtoogyx0Nt6N7PpIKnm8k%3D&reserved=0> ([i915#5076])
  *   igt@gem_exec_fair@basic-pace-share@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=0sS7IF%2BonBzvOtIBoT2TJ6JalCYJWihUHgbB3g8soP0%3D&reserved=0> ([i915#2842])

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=9qlM1aa8AOEO3lP3J2s%2BzLvtzqw66UvRPc7u2QWdzBo%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk7%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=vHHhHi6wRnWFjwhHtedbVNNUUbTHlUwEUtHayFK4GRk%3D&reserved=0> ([i915#2842]) +2 similar issues

  *   igt@gem_exec_fair@basic-pace@rcs0:

     *   shard-kbl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-kbl7%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=W8sGq%2Fm%2B6Ju1KlqSmX57VxwRDZfqXpZ76H9y2%2FDn0xY%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Rtfpez4%2FbSpY8OcytvsscWbDWs7za3BNqAXWdtTk%2FAI%3D&reserved=0> ([i915#2842]) +1 similar issue
  *   igt@gem_exec_params@no-vebox:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=aosavNsLqb7SWq9MnUk81DBhYFRljtcwAp%2FXHcHjUos%3D&reserved=0> ([fdo#109283])

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jujcWwW5LRueFuRTIcDspLwoN9LBsRKFO%2BJYc5ulFEk%3D&reserved=0> ([fdo#109283] / [i915#4877])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_exec_params%40secure-non-master.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=50C07%2FyS2rasrWHES2xow3eupTpo1uJP%2Bhr%2Fu99Qfuo%3D&reserved=0> ([fdo#112283])
  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Yo1QJMOQFm35POS4rS1pacC%2F5Jz9ojR5%2BmolWKS9LTU%3D&reserved=0> ([fdo#109271] / [i915#4613])

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Fm%2FeRnxkuOPqwf0vZiK8qWWo1XrhJCQLTdMQIwqvR9M%3D&reserved=0> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random-verify:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl7%2Figt%40gem_lmem_swapping%40parallel-random-verify.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ByA8ClddY3jWGoI0uAiZV1JfeUEAbodtLVdKSOpiyto%3D&reserved=0> ([fdo#109271] / [i915#4613]) +2 similar issues
  *   igt@gem_media_vme:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_media_vme.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OKsfHQYRMesr53GpDRvgeLo0XKvEOSFHeOZ%2FP9D%2FSW4%3D&reserved=0> ([i915#284])
  *   igt@gem_pxp@create-regular-context-1:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_pxp%40create-regular-context-1.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=bDvtYumAcbrTGNbL6xUULHHj4skP71SMds1nxFDiXto%3D&reserved=0> ([i915#4270]) +4 similar issues
  *   igt@gem_pxp@regular-baseline-src-copy-readible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40gem_pxp%40regular-baseline-src-copy-readible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qYYbUGMcslAwDGo6TeWtWTv%2F%2Fg%2FZeTa%2Bw2clBSEaUk0%3D&reserved=0> ([i915#4270]) +4 similar issues
  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40gem_render_copy%40x-tiled-to-vebox-yf-tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=DClTdvFU4hL8Hb0rgaZAs1x9uzUrBCenZiSW9Uh4kPY%3D&reserved=0> ([fdo#109271]) +327 similar issues
  *   igt@gem_render_copy@y-tiled-to-vebox-linear:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_render_copy%40y-tiled-to-vebox-linear.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=gJ5Oi98KsHNbz%2Fx0b7P3siSqifdMjvp703OXXNJ%2BWxk%3D&reserved=0> ([i915#768]) +3 similar issues
  *   igt@gem_softpin@allocator-evict-all-engines:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=n4xES%2FcKz8BWQ6bEHRtnO%2Ftq9wssAPbVzUTtyiB7gY0%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=E9LHafhpRcJQeWxioM2sVMgSrleZS9Zxbs42%2BV%2B9AFE%3D&reserved=0> ([i915#4171])
  *   igt@gem_softpin@evict-snoop-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4lE2ogEFBQs2U%2Fj24rxOlu4fpG8GMVv7h6%2FbBBaq%2FdY%3D&reserved=0> ([fdo#109312]) +1 similar issue

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=lpj85SybyrnXLGsivj52L%2BeweffasXVHnys%2FyV9fCLA%3D&reserved=0> ([fdo#109312])

  *   igt@gem_userptr_blits@coherency-unsync:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_userptr_blits%40coherency-unsync.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2Bq8ODUNmh6k05kHgLsWC8sll6QJ1wSQK9gUy5qS9sbA%3D&reserved=0> ([i915#3297]) +2 similar issues
  *   igt@gem_userptr_blits@unsync-overlap:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gem_userptr_blits%40unsync-overlap.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=FvjHz2FCnPRKFMtR4S85g1aomkZCpT6QmGJV%2FK4Voyw%3D&reserved=0> ([i915#3297])
  *   igt@gen3_render_linear_blits:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gen3_render_linear_blits.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2BzNRGxXEm7gpu4E3xmrSo1XOmH8wIYoSoFr%2FNbvB%2Bl4%3D&reserved=0> ([fdo#109289]) +3 similar issues
  *   igt@gen7_exec_parse@chained-batch:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gen7_exec_parse%40chained-batch.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Q81wGnS%2Fx0chk0uYyajIAuXdyvafOxvGPtHXyAeA9R4%3D&reserved=0> ([fdo#109289]) +2 similar issues
  *   igt@gen9_exec_parse@bb-secure:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gen9_exec_parse%40bb-secure.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=3SnUf%2FzGzX88xNVB%2BWmXRcxMU2Np92sa4fFsjubayHA%3D&reserved=0> ([i915#2527] / [i915#2856]) +3 similar issues
  *   igt@gen9_exec_parse@valid-registers:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gen9_exec_parse%40valid-registers.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=BDcD%2FcPGmcSodSuW%2BFY409JjGJA%2BVoLxSVy%2F3ZP0eZQ%3D&reserved=0> ([i915#2856]) +2 similar issues
  *   igt@i915_pm_dc@dc3co-vpb-simulation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_dc%40dc3co-vpb-simulation.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=lqePombGSy4h6s4ZUv93jpHq0dt%2FgDfmh%2B8NaVyrf8c%3D&reserved=0> ([i915#1904])
  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=g6uAC3kg50LgeX5ave3IpS%2Fg4CqEUziTVSJ9evdpTR4%3D&reserved=0> ([i915#454])

     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=SnkE2DZXVBlYWKPClWTTnN1Mp6iP7AUdHzroQPxtRS8%3D&reserved=0> ([i915#454])

  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40i915_pm_lpsp%40kms-lpsp%40kms-lpsp-dp.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=SNrTVc3voFv0Fo4LaTAsoWM%2BbZyNth4DdtXc2S3d91s%3D&reserved=0> ([fdo#109271] / [i915#1937])
  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=pnevsE9kp5SwM%2FzZK3Bkowj41%2BqmiNNWV3a%2B9PtwNnQ%3D&reserved=0> ([i915#1902])

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5VLMd6ahminAVdp40ovsO2dACyUZsNIs02Y7bv1leW0%3D&reserved=0> ([i915#1902])

  *   igt@i915_pm_rpm@dpms-non-lpsp:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_rpm%40dpms-non-lpsp.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=itRtVYpYsrVI39fRrhft%2BF9Li8Mq2%2BNljUfwco17L4A%3D&reserved=0> ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
  *   igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40i915_pm_rpm%40modeset-non-lpsp-stress-no-wait.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=zhsxqu5f8E%2B%2F2xzCdLime9pHUfpLEtzVI4BC4kQCBr4%3D&reserved=0> ([fdo#110892]) +1 similar issue
  *   igt@i915_pm_rpm@pc8-residency:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=td48BXisulTCY4jqyAfalbmp%2FY%2F4x8dYvpbLImkYk4M%3D&reserved=0> ([fdo#109293] / [fdo#109506])

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=r%2F8XbVSJroHLakuzHoWTSGcqEyWJOjZVdR%2Bg8B%2FRw2g%3D&reserved=0> ([fdo#109506] / [i915#2411])

  *   igt@kms_big_fb@4-tiled-64bpp-rotate-0:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%404-tiled-64bpp-rotate-0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2FdovUVLe470BLNugS4IpugPSqfp56D8cg4%2Bv0s58VpU%3D&reserved=0> ([i915#5286]) +3 similar issues
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-180:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_big_fb%404-tiled-8bpp-rotate-180.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=z9ZU9Cj%2Bs5vddmQ0vwcCj0uZuO2bKVXfaHtqz1emLKY%3D&reserved=0> ([i915#5286]) +1 similar issue
  *   igt@kms_big_fb@linear-8bpp-rotate-270:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%40linear-8bpp-rotate-270.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=JQpoGbSbpw3bMAMs7nJX%2By%2FrfPawOJtd47KuYyf9fxc%3D&reserved=0> ([fdo#111614]) +4 similar issues
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_big_fb%40x-tiled-16bpp-rotate-270.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=K7xdswBVwwmtSYOIZxxQyKmTJq3iTIXk81QJrTMbsko%3D&reserved=0> ([fdo#110725] / [fdo#111614]) +4 similar issues
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PMWCzch2s0kp4nEiw5QhGBBUtRAWuArkxI%2FoeYPXS%2BY%3D&reserved=0> ([fdo#109271] / [i915#3777])

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=wJx0GMdxcdHI%2BQZamUWQadT2MUpVmkrPTrShvOTaf1k%3D&reserved=0> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_big_fb%40y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=j0VoB4%2FhS8GDrXnymO39tQYtr%2Fb%2FSdA85w9o2QX5jz0%3D&reserved=0> ([fdo#109271] / [i915#3777]) +4 similar issues
  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-180:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_big_fb%40yf-tiled-8bpp-rotate-180.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=rpIhSeNgrDLID7PI62FR1bMLiLPqpKDsA9bic%2Bl9J2I%3D&reserved=0> ([fdo#111615]) +8 similar issues
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_big_fb%40yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PzSg%2BcDHXH5TqqlGXCDKIfYkxCN4GmfYSr0s2867bHo%3D&reserved=0> ([fdo#110723]) +2 similar issues
  *   igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_ccs%40pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=6Aiudu4KnUMe%2F7Q8RVu%2BW5h7SFDwpOo2IQODKZaI5hI%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues
  *   igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=XZOn2AxVLxtLthHCJk8HRMI8dqE5L4JK3x2tazPe%2BWw%3D&reserved=0> ([i915#3689] / [i915#3886]) +3 similar issues

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl4%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=uZcc4slmQ8tYJ1A0joyHNjfQhjmiUlAxXbfBwUvvDVc%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=NLrSJJGGUblX33%2FUtHqt0lMvalWjKAKBhC0vAhgX3Zk%3D&reserved=0> ([fdo#109271] / [i915#3886]) +10 similar issues
  *   igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-yf_tiled_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2B96z7ep3a4EPKNQ33P8zhNiiy6cWuFYSxYg%2BuFJbP%2Bs%3D&reserved=0> ([fdo#111615] / [i915#3689]) +5 similar issues
  *   igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_ccs%40pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=N5kTO%2FhIdMQ7VoDG3m%2BtC6NfGGdbuTfS%2BYIKZfRDBK4%3D&reserved=0> ([fdo#109278]) +45 similar issues
  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_ccs%40pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4mu4xH4Xu6nX9BqlRzTuA3Un8f9QzyoiStkP8sNVUZc%3D&reserved=0> ([fdo#109278] / [i915#3886]) +8 similar issues
  *   igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PFDWqpUDVSHyde3%2BpIXLzkGGB9vuATxiGPhkou9OJlU%3D&reserved=0> ([i915#3689]) +4 similar issues
  *   igt@kms_chamelium@hdmi-cmp-planar-formats:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl7%2Figt%40kms_chamelium%40hdmi-cmp-planar-formats.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=TeuFOgm9ZIpxZDaN7KYYBDCS4qaMlN1rPIYphFolWos%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues
  *   igt@kms_chamelium@hdmi-crc-fast:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_chamelium%40hdmi-crc-fast.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GMBQs4tsaHQLv53Fehv2vA5d4vPe2k0qO4O8rNJlrS8%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +19 similar issues
  *   igt@kms_chamelium@vga-hpd-without-ddc:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb7%2Figt%40kms_chamelium%40vga-hpd-without-ddc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HLEksxwsryMRF5kY%2BCMMghnZ0WzukFwLiKlEFIzrJsQ%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues
  *   igt@kms_color@pipe-a-deep-color:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb1%2Figt%40kms_color%40pipe-a-deep-color.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=xpiqlcgACmFMVvOqKeZVxafE9ZCESX5AvkMy4M2OJC8%3D&reserved=0> ([fdo#109278] / [i915#3555])
  *   igt@kms_color@pipe-d-ctm-negative:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_color%40pipe-d-ctm-negative.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=udm1v5Z%2BOaeumm0HGF4c8PNCDbajVcjJdaMaYKpOWjw%3D&reserved=0> ([fdo#109278] / [i915#1149]) +3 similar issues
  *   igt@kms_color@pipe-d-deep-color:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_color%40pipe-d-deep-color.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=1sLuSBufPx44qLARIUlXZ3ELZcNOfGX1xjl%2BHuvjKI0%3D&reserved=0> ([i915#3555]) +1 similar issue
  *   igt@kms_color_chamelium@pipe-a-degamma:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_color_chamelium%40pipe-a-degamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=EsdsaAP1WZDF3e6BauGe5IdnXy%2FKHaUXE4Mj7HgN0YQ%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +26 similar issues
  *   igt@kms_color_chamelium@pipe-b-ctm-0-5:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_color_chamelium%40pipe-b-ctm-0-5.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=gYN2iYMfFOIqZRfbsYwjVMU%2FcgwlThUqwPela%2FSL2LQ%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +22 similar issues
  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40kms_color_chamelium%40pipe-d-degamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=MiXH4VbMazTwgkcg2f3m2BZTQDsjJZgishu37qJc0WU%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues
  *   igt@kms_color_chamelium@pipe-d-gamma:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_color_chamelium%40pipe-d-gamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=U1IcebrG9ve7aqxwZHDIsOtMp0wBQ0Tshd%2FEAdTJKsI%3D&reserved=0> ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues
  *   igt@kms_content_protection@atomic:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_content_protection%40atomic.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=TAKJtRpwd94nkra7DIQQOcL7KaYmT2y6Qhv5iBWJiEs%3D&reserved=0> ([i915#1319])
  *   igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk7%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=A7mmY0i%2BEOfgfFzMJLULns1q9kAB%2Fx4jL2jhIFqffP8%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk6%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OE2g8qnUyZ6y%2Fk67KvnNgfDN2rOvlHC8XI0HsukQmgs%3D&reserved=0> ([i915#118])
  *   igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-32x32-sliding.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2FWEQY%2F9AupMOOfSnLqVOHNJQ0cRvvnmcQXOPzd4QoT0%3D&reserved=0> ([i915#3319]) +5 similar issues
  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-512x512-sliding.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ViR5XgoJtdCF81aZR0Zb%2BPfDSTtW%2BHNaQv0iFkvp3fQ%3D&reserved=0> ([fdo#109278] / [fdo#109279]) +1 similar issue
  *   igt@kms_cursor_crc@pipe-b-cursor-512x170-random:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_cursor_crc%40pipe-b-cursor-512x170-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OuLV2I%2FOM13%2FFD3NLBKdY11irhJAEMNQUSqbJLV1H3s%3D&reserved=0> ([fdo#109279] / [i915#3359]) +3 similar issues
  *   igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_cursor_crc%40pipe-c-cursor-max-size-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=R8Mo%2Brh5N9XRPa9zFDJgalVgHgGP5nHSTfkfDwwRlBg%3D&reserved=0> ([i915#3359]) +8 similar issues
  *   igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_cursor_legacy%402x-long-nonblocking-modeset-vs-cursor-atomic.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PPWZG8wcN%2FeeJZTyfShi%2BA%2BCKEYooIYX3psuqDNDohM%3D&reserved=0> ([fdo#109274] / [fdo#109278]) +8 similar issues
  *   igt@kms_draw_crc@draw-method-rgb565-render-4tiled:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_draw_crc%40draw-method-rgb565-render-4tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=VL1Dp9bG9d8iAlCOXt%2BA7G08YXsYfbv1Icbcya8uY2Q%3D&reserved=0> ([i915#5287]) +1 similar issue
  *   igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_draw_crc%40draw-method-xrgb2101010-render-4tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=3UGq%2Blfn49vDmylf0RcCfrnACYkltuQsUHLjmpvfQaE%3D&reserved=0> ([i915#5287]) +1 similar issue
  *   igt@kms_dsc@xrgb8888-dsc-compression:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_dsc%40xrgb8888-dsc-compression.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=X6B3pfgWcJOL59nBonPJWA83vwlRoukpwA%2BfF0wVQdQ%3D&reserved=0> ([i915#3828])
  *   igt@kms_flip@2x-absolute-wf_vblank:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_flip%402x-absolute-wf_vblank.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=2dLcB%2F7pLAgK8oQaXy2G%2Fg8hJHTu4g5nQ7aDp6QA1eI%3D&reserved=0> ([fdo#109274] / [fdo#111825] / [i915#3966])
  *   igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_flip%402x-blocking-absolute-wf_vblank-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GCuxUNEPrmxhHqLNBXpzVDkdbAwZof0F9udTRMW8faM%3D&reserved=0> ([fdo#109274] / [fdo#111825]) +15 similar issues
  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip%402x-flip-vs-rmfb-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ZM3QZuliMo0%2BHCeiOHfYrHllhezs9w6eBw%2FjsRit%2FW4%3D&reserved=0> ([fdo#109274]) +8 similar issues
  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_flip%40flip-vs-suspend-interruptible%40a-dp1.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GkRUCHdL%2F7FmnJsnHUvcfa0mORXZcU3j08dGX157zeo%3D&reserved=0> ([i915#180]) +6 similar issues
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip_scaled_crc%40flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=209CPK4VrnVk98wzA%2BPwfW8jhgQa0DPynb6z%2Flk5wtg%3D&reserved=0> ([i915#2587])
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jX6QuFL9EUSi%2FVkByHwPyosaUhsjsiSoJUUREM9EEwY%3D&reserved=0> ([fdo#109271]) +132 similar issues
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=RkqRlQ2S4%2FXvyWwazz71ysXoS4G%2BKiA5HsizxYC8HXU%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk5%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=l93QObaOlMJqxgIgPaWxeqJynbHYyA7w3nifkpthJhQ%3D&reserved=0> ([i915#1888] / [i915#2546])
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-indfb-plflip-blt.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ezifO5bYjGay%2BXPkHVst%2BkCjspLCCb2krDMceF82BW8%3D&reserved=0> ([fdo#109280] / [fdo#111825]) +44 similar issues
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-shrfb-plflip-blt.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=i%2F0VEH%2BKE67rmUF%2F5kQMvqMAXug5PljngYKWpavf0jc%3D&reserved=0> ([fdo#109280]) +35 similar issues
  *   igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=9kBlEo%2F3n9caSnHcwHa4Dsg2YptlPbJ1XsqVeNOftKg%3D&reserved=0> ([i915#5439]) +1 similar issue

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=fwoqQl1hheohlbjr9BOrvjOs1DBBA%2B5A%2F9nYHzBgQY8%3D&reserved=0> ([i915#5438])

  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_multipipe_modeset%40basic-max-pipe-crc-check.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ZIAYyGwawX01lB2lB9AuGTzKXkagXru81SLXvURZlX8%3D&reserved=0> ([i915#1839])
  *   igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=xEthbAZFgUTGQhbxg%2FLL4rmf%2BEh2z6K7oumpWU85FHA%3D&reserved=0> ([fdo#109271] / [i915#533])

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk4%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=QN4j%2Ff0kwmVKuu0RIGRGF46WDXoPU7R6YJDGgA2OPHE%3D&reserved=0> ([fdo#109271] / [i915#533])

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

     *   shard-apl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-apl8%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=0Z1zru2iciWTEtuN0QLYouUXe0G%2FhXlqQ%2BXMDHh7GxU%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl3%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=C6EECGKR4T41FSvrgP5mxvfmULpixlLQ%2FfN1q82qXg4%3D&reserved=0> ([i915#180]) +2 similar issues
  *   igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:

     *   shard-apl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_plane_alpha_blend%40pipe-b-alpha-7efc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=QKcJ9VVu74fcG0KCxou17hlr4e4BzoBl2JCZrHNLR48%3D&reserved=0> ([fdo#108145] / [i915#265])
  *   igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-opaque-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=nV0mB2w3gJkT29IRNk4z9vwZu%2Ba2nN2FXeLsKrcXm94%3D&reserved=0> ([fdo#108145] / [i915#265]) +1 similar issue
  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-transparent-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HlO7MXN0FehuGu5s1bGcJvPMklFERQUGmg9ntANYq%2Fw%3D&reserved=0> ([i915#265])
  *   igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40kms_plane_alpha_blend%40pipe-d-alpha-opaque-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=tNOJPdG9A4fcbYMuMWSSW28KGZtTmp1C4hRdQjaBdlw%3D&reserved=0> ([fdo#109271]) +95 similar issues
  *   igt@kms_plane_lowres@pipe-a-tiling-x:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5r%2B5GmeAt8Hu4NJXis1RQeikoiFqb8DADSZ2c8vJIuQ%3D&reserved=0> ([i915#3536])

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PkioYlehiyecCbXmyGBVHQJU9sGhfCWV6do4y%2BHY0rc%3D&reserved=0> ([i915#3536]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-d-tiling-yf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_plane_lowres%40pipe-d-tiling-yf.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Hys3gt8mDBmIk4IMsbqiGkFh02WCf%2BmAE8CzWIJ%2B%2Fzc%3D&reserved=0> ([fdo#111615] / [fdo#112054]) +1 similar issue
  *   igt@kms_plane_multiple@atomic-pipe-a-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_multiple%40atomic-pipe-a-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ml7iU0a7gq7RzB3ewxJqFfnUweuEvosTZJArFApwba8%3D&reserved=0> ([i915#5288]) +1 similar issue
  *   igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-a-edp-1-downscale-with-pixel-format:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40kms_plane_scaling%40downscale-with-pixel-format-factor-0-25%40pipe-a-edp-1-downscale-with-pixel-format.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4oZS6VP5biKTOS22zhguna1AlJjNJY0dh%2BU968V5mwU%3D&reserved=0> ([i915#5176]) +2 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1-planes-downscale:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb4%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=N9cJL%2FcKGXv3c9lfSMgHRPsNDqs2QP8vlYZSJhlYFbA%3D&reserved=0> -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=EssEX3L854bnnYDqKIHs3dEEao31PGqfttHurJQeiZk%3D&reserved=0> ([i915#5235]) +2 similar issues
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_scaling%40planes-upscale-factor-0-25-downscale-factor-0-25%40pipe-a-edp-1-planes-upscale-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qUFsn1MsaJaxNOMUZme0AeUyNUZMPFThUdxZ%2BLGbRg0%3D&reserved=0> ([i915#5235]) +7 similar issues
  *   igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=XV%2FpFSu8YLj1phnMFouEhkWoNgqXKfkkH6iJdhbzM%2Bw%3D&reserved=0> -> INCOMPLETE<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OmdVxywC4%2B7F8q92GX38ztjBbOLxfmxbab%2Bgdfev0y8%3D&reserved=0> ([i915#5243])
  *   igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_plane_scaling%40scaler-with-rotation-unity-scaling%40pipe-d-edp-1-scaler-with-rotation.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=mts82Sp05cmuu8NXAI0keK0qc63x%2By8AaeJ4v5qzqxQ%3D&reserved=0> ([i915#5176]) +7 similar issues
  *   igt@kms_prime@basic-crc@first-to-second:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5iiQGhfnECRhlpKNikhZbpEH8XknlLYNF4e65Sszq6k%3D&reserved=0> ([i915#1836])

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=FlN8neLBtA8KNB7zTJCRNGlRFiQxZOeYAfvf%2FiKLscQ%3D&reserved=0> ([i915#1836])

  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_psr2_sf%40cursor-plane-move-continuous-sf.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=KrlLKUG0k%2FmexkL9iBo0LhWC7d83JXoohrbLa54sXOE%3D&reserved=0> ([fdo#109271] / [i915#658]) +3 similar issues
  *   igt@kms_psr2_sf@cursor-plane-update-sf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GvcYZOvyGSzkxWSpsELRcNpz0x%2FqG0nIKha23074paQ%3D&reserved=0> ([i915#2920]) +2 similar issues

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-01 21:06 [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option David Zhang
  2022-04-01 22:01 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2) Patchwork
  2022-04-02  0:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-04 15:36 ` Patchwork
  2022-04-05 14:58 ` [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option Aurabindo Pillai
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2022-04-04 15:36 UTC (permalink / raw)
  To: Zhang, Dingchen (David); +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
URL   : https://patchwork.freedesktop.org/series/102091/
State : success

== Summary ==

CI Bug Log - changes from IGT_6406_full -> IGTPW_6862_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (8 -> 9)
------------------------------

  Additional (2): shard-rkl shard-dg1 
  Missing    (1): shard-skl 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-noreloc-purge-cache-random:
    - shard-snb:          NOTRUN -> [SKIP][1] ([fdo#109271]) +192 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-snb5/igt@api_intel_bb@blit-noreloc-purge-cache-random.html

  * igt@fbdev@unaligned-write:
    - shard-glk:          [PASS][2] -> [FAIL][3] ([i915#5547])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk2/igt@fbdev@unaligned-write.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk3/igt@fbdev@unaligned-write.html

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][4] ([i915#658]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@feature_discovery@psr2.html

  * igt@gem_ccs@block-copy-inplace:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#5327])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gem_ccs@block-copy-inplace.html
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@gem_ccs@block-copy-inplace.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][7] ([i915#4991])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_create@create-massive.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][8] ([i915#4991])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][10] -> [TIMEOUT][11] ([i915#3063] / [i915#3648])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-tglb6/igt@gem_eio@unwedge-stress.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2842]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([fdo#109283])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#109283] / [i915#4877])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gem_exec_params@no-vebox.html

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

  * igt@gem_lmem_swapping@heavy-random:
    - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl1/igt@gem_lmem_swapping@heavy-random.html
    - shard-glk:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk1/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613]) +2 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl7/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_media_vme:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#284])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_media_vme.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#4270]) +4 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#4270]) +4 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@gem_pxp@regular-baseline-src-copy-readible.html

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

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#768]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_softpin@allocator-evict-all-engines:
    - shard-glk:          [PASS][29] -> [FAIL][30] ([i915#4171])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk2/igt@gem_softpin@allocator-evict-all-engines.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk8/igt@gem_softpin@allocator-evict-all-engines.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109312]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@gem_softpin@evict-snoop-interruptible.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109312])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#3297]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#3297])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gen3_render_linear_blits:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#109289]) +3 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@gen3_render_linear_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109289]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb4/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#2527] / [i915#2856]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@valid-registers:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#2856]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@gen9_exec_parse@valid-registers.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#1904])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][40] ([i915#454])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
    - shard-tglb:         NOTRUN -> [FAIL][41] ([i915#454])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@i915_pm_dc@dc6-dpms.html

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

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#1902])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_lpsp@screens-disabled.html
    - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#1902])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@i915_pm_rpm@dpms-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#110892]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@pc8-residency:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109293] / [fdo#109506])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109506] / [i915#2411])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@i915_pm_rpm@pc8-residency.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#5286]) +3 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#5286]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#111614]) +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#110725] / [fdo#111614]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3777])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3777])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3777]) +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111615]) +8 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#110723]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk9/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([i915#3689] / [i915#3886]) +3 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#3886]) +10 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111615] / [i915#3689]) +5 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109278]) +45 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278] / [i915#3886]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([i915#3689]) +4 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_chamelium@hdmi-cmp-planar-formats:
    - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl7/igt@kms_chamelium@hdmi-cmp-planar-formats.html

  * igt@kms_chamelium@hdmi-crc-fast:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +19 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb5/igt@kms_chamelium@hdmi-crc-fast.html

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

  * igt@kms_color@pipe-a-deep-color:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#3555])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb1/igt@kms_color@pipe-a-deep-color.html

  * igt@kms_color@pipe-d-ctm-negative:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109278] / [i915#1149]) +3 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb7/igt@kms_color@pipe-d-ctm-negative.html

  * igt@kms_color@pipe-d-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3555]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_color@pipe-d-deep-color.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +26 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-5:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([fdo#109284] / [fdo#111827]) +22 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +15 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk8/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_color_chamelium@pipe-d-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_color_chamelium@pipe-d-gamma.html

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

  * igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen:
    - shard-glk:          [PASS][77] -> [DMESG-WARN][78] ([i915#118])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk7/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk6/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3319]) +5 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x170-random:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) +3 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][82] ([i915#3359]) +8 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109274] / [fdo#109278]) +8 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-rgb565-render-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#5287]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_draw_crc@draw-method-rgb565-render-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#5287]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html

  * igt@kms_dsc@xrgb8888-dsc-compression:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([i915#3828])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_dsc@xrgb8888-dsc-compression.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([fdo#109274] / [fdo#111825] / [i915#3966])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#111825]) +15 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109274]) +8 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][90] ([i915#180]) +6 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([i915#2587])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-apl:          NOTRUN -> [SKIP][92] ([fdo#109271]) +132 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-glk:          [PASS][93] -> [FAIL][94] ([i915#1888] / [i915#2546])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([fdo#109280] / [fdo#111825]) +44 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][96] ([fdo#109280]) +35 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#5439]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
    - shard-iclb:         NOTRUN -> [SKIP][98] ([i915#5438])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#1839])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-apl:          [PASS][102] -> [DMESG-WARN][103] ([i915#180]) +2 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:
    - shard-apl:          NOTRUN -> [FAIL][104] ([fdo#108145] / [i915#265])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-apl8/igt@kms_plane_alpha_blend@pipe-b-alpha-7efc.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][105] ([fdo#108145] / [i915#265]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][106] ([i915#265])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-kbl3/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [SKIP][107] ([fdo#109271]) +95 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk3/igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([i915#3536])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#3536]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#111615] / [fdo#112054]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_multiple@atomic-pipe-a-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][111] ([i915#5288]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb1/igt@kms_plane_multiple@atomic-pipe-a-tiling-4.html

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

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

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [PASS][116] -> [INCOMPLETE][117] ([i915#5243])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6406/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#5176]) +7 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb3/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][119] ([i915#1836])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb8/igt@kms_prime@basic-crc@first-to-second.html
    - shard-tglb:         NOTRUN -> [SKIP][120] ([i915#1836])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb7/igt@kms_prime@basic-crc@first-to-second.html

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

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#2920]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-tglb6/igt@kms_psr2_sf@cursor-plane-update-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#2920])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
    - shard-glk:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#658]) +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/shard-glk8/igt@kms_psr2_sf@cursor-plane-update-

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-04 13:52   ` Zhang, Dingchen (David)
@ 2022-04-04 15:36     ` Vudum, Lakshminarayana
  2022-04-04 15:51       ` Zhang, Dingchen (David)
  0 siblings, 1 reply; 8+ messages in thread
From: Vudum, Lakshminarayana @ 2022-04-04 15:36 UTC (permalink / raw)
  To: Zhang, Dingchen (David), igt-dev@lists.freedesktop.org

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

We have a bug related to this failure. So, I have updated the filter and re-reported the series.
https://gitlab.freedesktop.org/drm/intel/-/issues/5547

Thanks,
Lakshmi.

From: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Sent: Monday, April 4, 2022 6:52 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)


[AMD Official Use Only]

Hi Lakshmi,

I'd think this is a negative-positive since it failed a test that does not associate with the patch. Below is the link to the patch:
https://patchwork.freedesktop.org/series/102091/

Could you help to take a look?

Thanks
David
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Friday, April 1, 2022 8:44 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com<mailto:Dingchen.Zhang@amd.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> <igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>>
Subject: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)

Patch Details
Series:

lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)

URL:

https://patchwork.freedesktop.org/series/102091/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102091%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2BaxtpHiee8WKVLdb4QguVZuD5Ikml42HkCBtwjhh4xY%3D&reserved=0>

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/index.html<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Findex.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=o4LHqfKu7pvfjp5Wy1WW0jIpS4oqwe%2BTSmHn8HQlRPQ%3D&reserved=0>

CI Bug Log - changes from IGT_6406_full -> IGTPW_6862_full
Summary

FAILURE

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

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

Participating hosts (8 -> 7)

Missing (1): shard-skl

Possible new issues

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

IGT changes
Possible regressions

  *   igt@fbdev@unaligned-write:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qxgA7qh0%2FYUzSVNEs9X%2FW8iNhRzAgy4cQ6FaBznBpFk%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=RnPwX2UnFsw93FfRJVi1a6CR9sTE1x%2FYvAZ7oPvxP1o%3D&reserved=0>

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@blit-noreloc-purge-cache-random:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb5%2Figt%40api_intel_bb%40blit-noreloc-purge-cache-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4V3ZeLs9qL%2Bu8oLqJIlD0FHD2EMhqDWialiLjafYujo%3D&reserved=0> ([fdo#109271]) +192 similar issues

  *   igt@feature_discovery@psr2:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40feature_discovery%40psr2.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=24XsYCLbVWOoia1AljB9UPhogZqcLFyCtfYkIcrrP%2B0%3D&reserved=0> ([i915#658]) +2 similar issues

  *   igt@gem_ccs@block-copy-inplace:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jBvh8fs2o9MMv7wMj4Dc%2Bed2rjYhL0CcgFvomAbBHqk%3D&reserved=0> ([i915#5327])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554593167%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Bs8XbIB3qNsKhdrAB87nOoBLRZQFx7gmJTI0FCC4EsA%3D&reserved=0> ([i915#3555] / [i915#5325])

  *   igt@gem_create@create-massive:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_create%40create-massive.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=85%2B1ispFNpu5jcVk98DSTLVVkvqDCIjeJU2ClTeq%2FL0%3D&reserved=0> ([i915#4991])
     *   shard-tglb: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_create%40create-massive.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HEMZZ1BZTLhNgRs0RCYfdhIH%2Bg6u22cZsKb4gmSF95s%3D&reserved=0> ([i915#4991])

  *   igt@gem_ctx_persistence@legacy-engines-mixed-process:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb2%2Figt%40gem_ctx_persistence%40legacy-engines-mixed-process.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qj5VGMmdnbmOpN16uQ9UUAdRxgnyG9X%2Bejbd%2BEAr2cY%3D&reserved=0> ([fdo#109271] / [i915#1099]) +1 similar issue

  *   igt@gem_eio@unwedge-stress:

     *   shard-tglb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=sEhCYsUdi1rPlrPKOO8J4Ms%2FJS0EQ2jPX8k7JwsiXE0%3D&reserved=0> -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=iXdyfPmcJHtfknGFNMd3yQ2LnhOoUQsH9bEAE0W4C90%3D&reserved=0> ([i915#3063] / [i915#3648])

  *   igt@gem_exec_balancer@parallel-keep-in-fence:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_balancer%40parallel-keep-in-fence.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=g%2Buag7d8eOYQXzRGE41THuLtoogyx0Nt6N7PpIKnm8k%3D&reserved=0> ([i915#5076])

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

     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=0sS7IF%2BonBzvOtIBoT2TJ6JalCYJWihUHgbB3g8soP0%3D&reserved=0> ([i915#2842])
     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=9qlM1aa8AOEO3lP3J2s%2BzLvtzqw66UvRPc7u2QWdzBo%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk7%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=vHHhHi6wRnWFjwhHtedbVNNUUbTHlUwEUtHayFK4GRk%3D&reserved=0> ([i915#2842]) +2 similar issues

  *   igt@gem_exec_fair@basic-pace@rcs0:

     *   shard-kbl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-kbl7%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=W8sGq%2Fm%2B6Ju1KlqSmX57VxwRDZfqXpZ76H9y2%2FDn0xY%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Rtfpez4%2FbSpY8OcytvsscWbDWs7za3BNqAXWdtTk%2FAI%3D&reserved=0> ([i915#2842]) +1 similar issue

  *   igt@gem_exec_params@no-vebox:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=aosavNsLqb7SWq9MnUk81DBhYFRljtcwAp%2FXHcHjUos%3D&reserved=0> ([fdo#109283])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jujcWwW5LRueFuRTIcDspLwoN9LBsRKFO%2BJYc5ulFEk%3D&reserved=0> ([fdo#109283] / [i915#4877])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_exec_params%40secure-non-master.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=50C07%2FyS2rasrWHES2xow3eupTpo1uJP%2Bhr%2Fu99Qfuo%3D&reserved=0> ([fdo#112283])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Yo1QJMOQFm35POS4rS1pacC%2F5Jz9ojR5%2BmolWKS9LTU%3D&reserved=0> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Fm%2FeRnxkuOPqwf0vZiK8qWWo1XrhJCQLTdMQIwqvR9M%3D&reserved=0> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random-verify:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl7%2Figt%40gem_lmem_swapping%40parallel-random-verify.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ByA8ClddY3jWGoI0uAiZV1JfeUEAbodtLVdKSOpiyto%3D&reserved=0> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_media_vme:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_media_vme.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OKsfHQYRMesr53GpDRvgeLo0XKvEOSFHeOZ%2FP9D%2FSW4%3D&reserved=0> ([i915#284])

  *   igt@gem_pxp@create-regular-context-1:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_pxp%40create-regular-context-1.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=bDvtYumAcbrTGNbL6xUULHHj4skP71SMds1nxFDiXto%3D&reserved=0> ([i915#4270]) +4 similar issues

  *   igt@gem_pxp@regular-baseline-src-copy-readible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40gem_pxp%40regular-baseline-src-copy-readible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qYYbUGMcslAwDGo6TeWtWTv%2F%2Fg%2FZeTa%2Bw2clBSEaUk0%3D&reserved=0> ([i915#4270]) +4 similar issues

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

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40gem_render_copy%40x-tiled-to-vebox-yf-tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=DClTdvFU4hL8Hb0rgaZAs1x9uzUrBCenZiSW9Uh4kPY%3D&reserved=0> ([fdo#109271]) +327 similar issues

  *   igt@gem_render_copy@y-tiled-to-vebox-linear:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_render_copy%40y-tiled-to-vebox-linear.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=gJ5Oi98KsHNbz%2Fx0b7P3siSqifdMjvp703OXXNJ%2BWxk%3D&reserved=0> ([i915#768]) +3 similar issues

  *   igt@gem_softpin@allocator-evict-all-engines:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=n4xES%2FcKz8BWQ6bEHRtnO%2Ftq9wssAPbVzUTtyiB7gY0%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=E9LHafhpRcJQeWxioM2sVMgSrleZS9Zxbs42%2BV%2B9AFE%3D&reserved=0> ([i915#4171])

  *   igt@gem_softpin@evict-snoop-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4lE2ogEFBQs2U%2Fj24rxOlu4fpG8GMVv7h6%2FbBBaq%2FdY%3D&reserved=0> ([fdo#109312]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=lpj85SybyrnXLGsivj52L%2BeweffasXVHnys%2FyV9fCLA%3D&reserved=0> ([fdo#109312])

  *   igt@gem_userptr_blits@coherency-unsync:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_userptr_blits%40coherency-unsync.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2Bq8ODUNmh6k05kHgLsWC8sll6QJ1wSQK9gUy5qS9sbA%3D&reserved=0> ([i915#3297]) +2 similar issues

  *   igt@gem_userptr_blits@unsync-overlap:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gem_userptr_blits%40unsync-overlap.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=FvjHz2FCnPRKFMtR4S85g1aomkZCpT6QmGJV%2FK4Voyw%3D&reserved=0> ([i915#3297])

  *   igt@gen3_render_linear_blits:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gen3_render_linear_blits.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2BzNRGxXEm7gpu4E3xmrSo1XOmH8wIYoSoFr%2FNbvB%2Bl4%3D&reserved=0> ([fdo#109289]) +3 similar issues

  *   igt@gen7_exec_parse@chained-batch:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gen7_exec_parse%40chained-batch.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Q81wGnS%2Fx0chk0uYyajIAuXdyvafOxvGPtHXyAeA9R4%3D&reserved=0> ([fdo#109289]) +2 similar issues

  *   igt@gen9_exec_parse@bb-secure:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gen9_exec_parse%40bb-secure.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=3SnUf%2FzGzX88xNVB%2BWmXRcxMU2Np92sa4fFsjubayHA%3D&reserved=0> ([i915#2527] / [i915#2856]) +3 similar issues

  *   igt@gen9_exec_parse@valid-registers:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gen9_exec_parse%40valid-registers.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=BDcD%2FcPGmcSodSuW%2BFY409JjGJA%2BVoLxSVy%2F3ZP0eZQ%3D&reserved=0> ([i915#2856]) +2 similar issues

  *   igt@i915_pm_dc@dc3co-vpb-simulation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_dc%40dc3co-vpb-simulation.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=lqePombGSy4h6s4ZUv93jpHq0dt%2FgDfmh%2B8NaVyrf8c%3D&reserved=0> ([i915#1904])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554749340%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=g6uAC3kg50LgeX5ave3IpS%2Fg4CqEUziTVSJ9evdpTR4%3D&reserved=0> ([i915#454])
     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=SnkE2DZXVBlYWKPClWTTnN1Mp6iP7AUdHzroQPxtRS8%3D&reserved=0> ([i915#454])

  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40i915_pm_lpsp%40kms-lpsp%40kms-lpsp-dp.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=SNrTVc3voFv0Fo4LaTAsoWM%2BbZyNth4DdtXc2S3d91s%3D&reserved=0> ([fdo#109271] / [i915#1937])

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=pnevsE9kp5SwM%2FzZK3Bkowj41%2BqmiNNWV3a%2B9PtwNnQ%3D&reserved=0> ([i915#1902])
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5VLMd6ahminAVdp40ovsO2dACyUZsNIs02Y7bv1leW0%3D&reserved=0> ([i915#1902])

  *   igt@i915_pm_rpm@dpms-non-lpsp:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_rpm%40dpms-non-lpsp.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=itRtVYpYsrVI39fRrhft%2BF9Li8Mq2%2BNljUfwco17L4A%3D&reserved=0> ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue

  *   igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40i915_pm_rpm%40modeset-non-lpsp-stress-no-wait.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=zhsxqu5f8E%2B%2F2xzCdLime9pHUfpLEtzVI4BC4kQCBr4%3D&reserved=0> ([fdo#110892]) +1 similar issue

  *   igt@i915_pm_rpm@pc8-residency:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=td48BXisulTCY4jqyAfalbmp%2FY%2F4x8dYvpbLImkYk4M%3D&reserved=0> ([fdo#109293] / [fdo#109506])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=r%2F8XbVSJroHLakuzHoWTSGcqEyWJOjZVdR%2Bg8B%2FRw2g%3D&reserved=0> ([fdo#109506] / [i915#2411])

  *   igt@kms_big_fb@4-tiled-64bpp-rotate-0:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%404-tiled-64bpp-rotate-0.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2FdovUVLe470BLNugS4IpugPSqfp56D8cg4%2Bv0s58VpU%3D&reserved=0> ([i915#5286]) +3 similar issues

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

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_big_fb%404-tiled-8bpp-rotate-180.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=z9ZU9Cj%2Bs5vddmQ0vwcCj0uZuO2bKVXfaHtqz1emLKY%3D&reserved=0> ([i915#5286]) +1 similar issue

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%40linear-8bpp-rotate-270.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=JQpoGbSbpw3bMAMs7nJX%2By%2FrfPawOJtd47KuYyf9fxc%3D&reserved=0> ([fdo#111614]) +4 similar issues

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_big_fb%40x-tiled-16bpp-rotate-270.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=K7xdswBVwwmtSYOIZxxQyKmTJq3iTIXk81QJrTMbsko%3D&reserved=0> ([fdo#110725] / [fdo#111614]) +4 similar issues

  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PMWCzch2s0kp4nEiw5QhGBBUtRAWuArkxI%2FoeYPXS%2BY%3D&reserved=0> ([fdo#109271] / [i915#3777])
     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=wJx0GMdxcdHI%2BQZamUWQadT2MUpVmkrPTrShvOTaf1k%3D&reserved=0> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_big_fb%40y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=j0VoB4%2FhS8GDrXnymO39tQYtr%2Fb%2FSdA85w9o2QX5jz0%3D&reserved=0> ([fdo#109271] / [i915#3777]) +4 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_big_fb%40yf-tiled-8bpp-rotate-180.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=rpIhSeNgrDLID7PI62FR1bMLiLPqpKDsA9bic%2Bl9J2I%3D&reserved=0> ([fdo#111615]) +8 similar issues

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_big_fb%40yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PzSg%2BcDHXH5TqqlGXCDKIfYkxCN4GmfYSr0s2867bHo%3D&reserved=0> ([fdo#110723]) +2 similar issues

  *   igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_ccs%40pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=6Aiudu4KnUMe%2F7Q8RVu%2BW5h7SFDwpOo2IQODKZaI5hI%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues

  *   igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=XZOn2AxVLxtLthHCJk8HRMI8dqE5L4JK3x2tazPe%2BWw%3D&reserved=0> ([i915#3689] / [i915#3886]) +3 similar issues
     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl4%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=uZcc4slmQ8tYJ1A0joyHNjfQhjmiUlAxXbfBwUvvDVc%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=NLrSJJGGUblX33%2FUtHqt0lMvalWjKAKBhC0vAhgX3Zk%3D&reserved=0> ([fdo#109271] / [i915#3886]) +10 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-yf_tiled_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2B96z7ep3a4EPKNQ33P8zhNiiy6cWuFYSxYg%2BuFJbP%2Bs%3D&reserved=0> ([fdo#111615] / [i915#3689]) +5 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_ccs%40pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=N5kTO%2FhIdMQ7VoDG3m%2BtC6NfGGdbuTfS%2BYIKZfRDBK4%3D&reserved=0> ([fdo#109278]) +45 similar issues

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_ccs%40pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4mu4xH4Xu6nX9BqlRzTuA3Un8f9QzyoiStkP8sNVUZc%3D&reserved=0> ([fdo#109278] / [i915#3886]) +8 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PFDWqpUDVSHyde3%2BpIXLzkGGB9vuATxiGPhkou9OJlU%3D&reserved=0> ([i915#3689]) +4 similar issues

  *   igt@kms_chamelium@hdmi-cmp-planar-formats:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl7%2Figt%40kms_chamelium%40hdmi-cmp-planar-formats.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=TeuFOgm9ZIpxZDaN7KYYBDCS4qaMlN1rPIYphFolWos%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_chamelium@hdmi-crc-fast:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_chamelium%40hdmi-crc-fast.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GMBQs4tsaHQLv53Fehv2vA5d4vPe2k0qO4O8rNJlrS8%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +19 similar issues

  *   igt@kms_chamelium@vga-hpd-without-ddc:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb7%2Figt%40kms_chamelium%40vga-hpd-without-ddc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HLEksxwsryMRF5kY%2BCMMghnZ0WzukFwLiKlEFIzrJsQ%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_color@pipe-a-deep-color:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb1%2Figt%40kms_color%40pipe-a-deep-color.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=xpiqlcgACmFMVvOqKeZVxafE9ZCESX5AvkMy4M2OJC8%3D&reserved=0> ([fdo#109278] / [i915#3555])

  *   igt@kms_color@pipe-d-ctm-negative:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_color%40pipe-d-ctm-negative.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=udm1v5Z%2BOaeumm0HGF4c8PNCDbajVcjJdaMaYKpOWjw%3D&reserved=0> ([fdo#109278] / [i915#1149]) +3 similar issues

  *   igt@kms_color@pipe-d-deep-color:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_color%40pipe-d-deep-color.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=1sLuSBufPx44qLARIUlXZ3ELZcNOfGX1xjl%2BHuvjKI0%3D&reserved=0> ([i915#3555]) +1 similar issue

  *   igt@kms_color_chamelium@pipe-a-degamma:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_color_chamelium%40pipe-a-degamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=EsdsaAP1WZDF3e6BauGe5IdnXy%2FKHaUXE4Mj7HgN0YQ%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +26 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_color_chamelium%40pipe-b-ctm-0-5.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=gYN2iYMfFOIqZRfbsYwjVMU%2FcgwlThUqwPela%2FSL2LQ%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +22 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40kms_color_chamelium%40pipe-d-degamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571554905144%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=MiXH4VbMazTwgkcg2f3m2BZTQDsjJZgishu37qJc0WU%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_color_chamelium@pipe-d-gamma:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_color_chamelium%40pipe-d-gamma.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=U1IcebrG9ve7aqxwZHDIsOtMp0wBQ0Tshd%2FEAdTJKsI%3D&reserved=0> ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues

  *   igt@kms_content_protection@atomic:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_content_protection%40atomic.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=TAKJtRpwd94nkra7DIQQOcL7KaYmT2y6Qhv5iBWJiEs%3D&reserved=0> ([i915#1319])

  *   igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk7%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=A7mmY0i%2BEOfgfFzMJLULns1q9kAB%2Fx4jL2jhIFqffP8%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk6%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OE2g8qnUyZ6y%2Fk67KvnNgfDN2rOvlHC8XI0HsukQmgs%3D&reserved=0> ([i915#118])

  *   igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-32x32-sliding.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=%2FWEQY%2F9AupMOOfSnLqVOHNJQ0cRvvnmcQXOPzd4QoT0%3D&reserved=0> ([i915#3319]) +5 similar issues

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-512x512-sliding.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ViR5XgoJtdCF81aZR0Zb%2BPfDSTtW%2BHNaQv0iFkvp3fQ%3D&reserved=0> ([fdo#109278] / [fdo#109279]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-b-cursor-512x170-random:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_cursor_crc%40pipe-b-cursor-512x170-random.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OuLV2I%2FOM13%2FFD3NLBKdY11irhJAEMNQUSqbJLV1H3s%3D&reserved=0> ([fdo#109279] / [i915#3359]) +3 similar issues

  *   igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_cursor_crc%40pipe-c-cursor-max-size-offscreen.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=R8Mo%2Brh5N9XRPa9zFDJgalVgHgGP5nHSTfkfDwwRlBg%3D&reserved=0> ([i915#3359]) +8 similar issues

  *   igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_cursor_legacy%402x-long-nonblocking-modeset-vs-cursor-atomic.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PPWZG8wcN%2FeeJZTyfShi%2BA%2BCKEYooIYX3psuqDNDohM%3D&reserved=0> ([fdo#109274] / [fdo#109278]) +8 similar issues

  *   igt@kms_draw_crc@draw-method-rgb565-render-4tiled:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_draw_crc%40draw-method-rgb565-render-4tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=VL1Dp9bG9d8iAlCOXt%2BA7G08YXsYfbv1Icbcya8uY2Q%3D&reserved=0> ([i915#5287]) +1 similar issue

  *   igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_draw_crc%40draw-method-xrgb2101010-render-4tiled.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=3UGq%2Blfn49vDmylf0RcCfrnACYkltuQsUHLjmpvfQaE%3D&reserved=0> ([i915#5287]) +1 similar issue

  *   igt@kms_dsc@xrgb8888-dsc-compression:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_dsc%40xrgb8888-dsc-compression.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=X6B3pfgWcJOL59nBonPJWA83vwlRoukpwA%2BfF0wVQdQ%3D&reserved=0> ([i915#3828])

  *   igt@kms_flip@2x-absolute-wf_vblank:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_flip%402x-absolute-wf_vblank.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=2dLcB%2F7pLAgK8oQaXy2G%2Fg8hJHTu4g5nQ7aDp6QA1eI%3D&reserved=0> ([fdo#109274] / [fdo#111825] / [i915#3966])

  *   igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_flip%402x-blocking-absolute-wf_vblank-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GCuxUNEPrmxhHqLNBXpzVDkdbAwZof0F9udTRMW8faM%3D&reserved=0> ([fdo#109274] / [fdo#111825]) +15 similar issues

  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip%402x-flip-vs-rmfb-interruptible.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ZM3QZuliMo0%2BHCeiOHfYrHllhezs9w6eBw%2FjsRit%2FW4%3D&reserved=0> ([fdo#109274]) +8 similar issues

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_flip%40flip-vs-suspend-interruptible%40a-dp1.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GkRUCHdL%2F7FmnJsnHUvcfa0mORXZcU3j08dGX157zeo%3D&reserved=0> ([i915#180]) +6 similar issues

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip_scaled_crc%40flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=209CPK4VrnVk98wzA%2BPwfW8jhgQa0DPynb6z%2Flk5wtg%3D&reserved=0> ([i915#2587])

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=jX6QuFL9EUSi%2FVkByHwPyosaUhsjsiSoJUUREM9EEwY%3D&reserved=0> ([fdo#109271]) +132 similar issues

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=RkqRlQ2S4%2FXvyWwazz71ysXoS4G%2BKiA5HsizxYC8HXU%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk5%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=l93QObaOlMJqxgIgPaWxeqJynbHYyA7w3nifkpthJhQ%3D&reserved=0> ([i915#1888] / [i915#2546])

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-indfb-plflip-blt.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ezifO5bYjGay%2BXPkHVst%2BkCjspLCCb2krDMceF82BW8%3D&reserved=0> ([fdo#109280] / [fdo#111825]) +44 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-shrfb-plflip-blt.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=i%2F0VEH%2BKE67rmUF%2F5kQMvqMAXug5PljngYKWpavf0jc%3D&reserved=0> ([fdo#109280]) +35 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=9kBlEo%2F3n9caSnHcwHa4Dsg2YptlPbJ1XsqVeNOftKg%3D&reserved=0> ([i915#5439]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=fwoqQl1hheohlbjr9BOrvjOs1DBBA%2B5A%2F9nYHzBgQY8%3D&reserved=0> ([i915#5438])

  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_multipipe_modeset%40basic-max-pipe-crc-check.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ZIAYyGwawX01lB2lB9AuGTzKXkagXru81SLXvURZlX8%3D&reserved=0> ([i915#1839])

  *   igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=xEthbAZFgUTGQhbxg%2FLL4rmf%2BEh2z6K7oumpWU85FHA%3D&reserved=0> ([fdo#109271] / [i915#533])
     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk4%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=QN4j%2Ff0kwmVKuu0RIGRGF46WDXoPU7R6YJDGgA2OPHE%3D&reserved=0> ([fdo#109271] / [i915#533])

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

     *   shard-apl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-apl8%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=0Z1zru2iciWTEtuN0QLYouUXe0G%2FhXlqQ%2BXMDHh7GxU%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl3%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=C6EECGKR4T41FSvrgP5mxvfmULpixlLQ%2FfN1q82qXg4%3D&reserved=0> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:

     *   shard-apl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_plane_alpha_blend%40pipe-b-alpha-7efc.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=QKcJ9VVu74fcG0KCxou17hlr4e4BzoBl2JCZrHNLR48%3D&reserved=0> ([fdo#108145] / [i915#265])

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

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-opaque-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=nV0mB2w3gJkT29IRNk4z9vwZu%2Ba2nN2FXeLsKrcXm94%3D&reserved=0> ([fdo#108145] / [i915#265]) +1 similar issue

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

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-transparent-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=HlO7MXN0FehuGu5s1bGcJvPMklFERQUGmg9ntANYq%2Fw%3D&reserved=0> ([i915#265])

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

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40kms_plane_alpha_blend%40pipe-d-alpha-opaque-fb.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=tNOJPdG9A4fcbYMuMWSSW28KGZtTmp1C4hRdQjaBdlw%3D&reserved=0> ([fdo#109271]) +95 similar issues

  *   igt@kms_plane_lowres@pipe-a-tiling-x:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5r%2B5GmeAt8Hu4NJXis1RQeikoiFqb8DADSZ2c8vJIuQ%3D&reserved=0> ([i915#3536])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=PkioYlehiyecCbXmyGBVHQJU9sGhfCWV6do4y%2BHY0rc%3D&reserved=0> ([i915#3536]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-d-tiling-yf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_plane_lowres%40pipe-d-tiling-yf.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555061788%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=Hys3gt8mDBmIk4IMsbqiGkFh02WCf%2BmAE8CzWIJ%2B%2Fzc%3D&reserved=0> ([fdo#111615] / [fdo#112054]) +1 similar issue

  *   igt@kms_plane_multiple@atomic-pipe-a-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_multiple%40atomic-pipe-a-tiling-4.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=ml7iU0a7gq7RzB3ewxJqFfnUweuEvosTZJArFApwba8%3D&reserved=0> ([i915#5288]) +1 similar issue

  *   igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-a-edp-1-downscale-with-pixel-format:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40kms_plane_scaling%40downscale-with-pixel-format-factor-0-25%40pipe-a-edp-1-downscale-with-pixel-format.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=4oZS6VP5biKTOS22zhguna1AlJjNJY0dh%2BU968V5mwU%3D&reserved=0> ([i915#5176]) +2 similar issues

  *   igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1-planes-downscale:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb4%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=N9cJL%2FcKGXv3c9lfSMgHRPsNDqs2QP8vlYZSJhlYFbA%3D&reserved=0> -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=EssEX3L854bnnYDqKIHs3dEEao31PGqfttHurJQeiZk%3D&reserved=0> ([i915#5235]) +2 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_scaling%40planes-upscale-factor-0-25-downscale-factor-0-25%40pipe-a-edp-1-planes-upscale-downscale.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=qUFsn1MsaJaxNOMUZme0AeUyNUZMPFThUdxZ%2BLGbRg0%3D&reserved=0> ([i915#5235]) +7 similar issues

  *   igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=XV%2FpFSu8YLj1phnMFouEhkWoNgqXKfkkH6iJdhbzM%2Bw%3D&reserved=0> -> INCOMPLETE<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=OmdVxywC4%2B7F8q92GX38ztjBbOLxfmxbab%2Bgdfev0y8%3D&reserved=0> ([i915#5243])

  *   igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_plane_scaling%40scaler-with-rotation-unity-scaling%40pipe-d-edp-1-scaler-with-rotation.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=mts82Sp05cmuu8NXAI0keK0qc63x%2By8AaeJ4v5qzqxQ%3D&reserved=0> ([i915#5176]) +7 similar issues

  *   igt@kms_prime@basic-crc@first-to-second:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=5iiQGhfnECRhlpKNikhZbpEH8XknlLYNF4e65Sszq6k%3D&reserved=0> ([i915#1836])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=FlN8neLBtA8KNB7zTJCRNGlRFiQxZOeYAfvf%2FiKLscQ%3D&reserved=0> ([i915#1836])

  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_psr2_sf%40cursor-plane-move-continuous-sf.html&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=KrlLKUG0k%2FmexkL9iBo0LhWC7d83JXoohrbLa54sXOE%3D&reserved=0> ([fdo#109271] / [i915#658]) +3 similar issues

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2F&data=04%7C01%7Cdingchen.zhang%40amd.com%7C2c9ab93c111847dd98c908da14420020%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637844571555218008%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000&sdata=GvcYZOvyGSzkxWSpsELRcNpz0x%2FqG0nIKha23074paQ%3D&reserved=0> ([i915#2920]) +2 similar issues

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)
  2022-04-04 15:36     ` Vudum, Lakshminarayana
@ 2022-04-04 15:51       ` Zhang, Dingchen (David)
  0 siblings, 0 replies; 8+ messages in thread
From: Zhang, Dingchen (David) @ 2022-04-04 15:51 UTC (permalink / raw)
  To: Vudum, Lakshminarayana, igt-dev@lists.freedesktop.org

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

[AMD Official Use Only]

Thank you, Lakshmi.
________________________________
From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Sent: Monday, April 4, 2022 11:36 AM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>; igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)


[AMD Official Use Only]


We have a bug related to this failure. So, I have updated the filter and re-reported the series.

https://gitlab.freedesktop.org/drm/intel/-/issues/5547<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitlab.freedesktop.org%2Fdrm%2Fintel%2F-%2Fissues%2F5547&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=6FSGOu7nbbQo0FA%2BtnzE0q57lCn0TptlcWg8mEx%2FTSQ%3D&reserved=0>



Thanks,

Lakshmi.



From: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com>
Sent: Monday, April 4, 2022 6:52 AM
To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)



[AMD Official Use Only]



Hi Lakshmi,



I'd think this is a negative-positive since it failed a test that does not associate with the patch. Below is the link to the patch:
https://patchwork.freedesktop.org/series/102091/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102091%2F&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=oPGu4BMZGgI45R3HgBM9xx6JjW63t1tgAyekmIlZTSA%3D&reserved=0>



Could you help to take a look?



Thanks
David

________________________________

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Friday, April 1, 2022 8:44 PM
To: Zhang, Dingchen (David) <Dingchen.Zhang@amd.com<mailto:Dingchen.Zhang@amd.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org> <igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>>
Subject: ✗ Fi.CI.IGT: failure for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)



Patch Details

Series:

lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2)

URL:

https://patchwork.freedesktop.org/series/102091/<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.freedesktop.org%2Fseries%2F102091%2F&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=oPGu4BMZGgI45R3HgBM9xx6JjW63t1tgAyekmIlZTSA%3D&reserved=0>

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6862/index.html<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Findex.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2FOmd4bsg60L2rZLKqD%2Byb9c8L4GzvU37vIEqxhVr7r8%3D&reserved=0>

CI Bug Log - changes from IGT_6406_full -> IGTPW_6862_full
Summary

FAILURE

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

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6862_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_6862/index.html<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Findex.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2FOmd4bsg60L2rZLKqD%2Byb9c8L4GzvU37vIEqxhVr7r8%3D&reserved=0>

Participating hosts (8 -> 7)

Missing (1): shard-skl

Possible new issues

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

IGT changes
Possible regressions

  *   igt@fbdev@unaligned-write:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=urXZF47kiO8aqQTS6HDEOIta4HsrMHaiTXR2wH8ql0I%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40fbdev%40unaligned-write.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=IW46ugwn96j2mBkv7BP8iUqMrIPBGUoNQepXJbWgctk%3D&reserved=0>

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@blit-noreloc-purge-cache-random:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb5%2Figt%40api_intel_bb%40blit-noreloc-purge-cache-random.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2FE7Le761NuT6C4QycrtxPcgWK9jMw8Q2NQjANjcUNxA%3D&reserved=0> ([fdo#109271]) +192 similar issues

  *   igt@feature_discovery@psr2:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40feature_discovery%40psr2.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=bX9XBtlzKO4mZXRwuxcL6D%2Foz%2FgFYWoYNhCUhMD2TMY%3D&reserved=0> ([i915#658]) +2 similar issues

  *   igt@gem_ccs@block-copy-inplace:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=0ygU0fUFn7R6l1UxdBGM1Ok4QXQgVRVTsdZrMAMy4mw%3D&reserved=0> ([i915#5327])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_ccs%40block-copy-inplace.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TN25WzBnNYs0bAxXCPOJFzvPzO%2FeVCW038PplEEPD5o%3D&reserved=0> ([i915#3555] / [i915#5325])

  *   igt@gem_create@create-massive:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_create%40create-massive.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=lVa3pbAq9UKOUc%2BNoUKQUUPJvBt3aX55vh%2BzRKs6kaA%3D&reserved=0> ([i915#4991])
     *   shard-tglb: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_create%40create-massive.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=vHIIsdp0D8z14KuvJcSX8faihgi7sDNqaNn7CpfTsvs%3D&reserved=0> ([i915#4991])

  *   igt@gem_ctx_persistence@legacy-engines-mixed-process:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb2%2Figt%40gem_ctx_persistence%40legacy-engines-mixed-process.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=8aCEb2ThdUEhLVW%2BH7GVmTSumKonLIQkp98GZMRcpEo%3D&reserved=0> ([fdo#109271] / [i915#1099]) +1 similar issue

  *   igt@gem_eio@unwedge-stress:

     *   shard-tglb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=DsaL5dpyEQCI7hfxt%2F%2FNigcqY5FF8chfQsaPvDN%2Fi6o%3D&reserved=0> -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_eio%40unwedge-stress.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=8U6Rng%2BGHSOvba7nsxdqvSGl%2B2NipTGr%2F1eZu0gEoz4%3D&reserved=0> ([i915#3063] / [i915#3648])

  *   igt@gem_exec_balancer@parallel-keep-in-fence:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_balancer%40parallel-keep-in-fence.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=SB0A1EoJFBD2RUmZfCrIvvowV4JEOssFQ2sSKBvakhc%3D&reserved=0> ([i915#5076])

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

     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=zTMNxLwoHSRdMblVv4RuaB9X2lHp28URJvkd6fWplbI%3D&reserved=0> ([i915#2842])
     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cDzY7et%2Fcrt%2FKCX13sfN7qoaFvQocOo%2F3UuG3rzPZlI%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk7%2Figt%40gem_exec_fair%40basic-pace-share%40rcs0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=FgY9SBRv91uYMJCMmD%2BOg61nk1C9QolGS7joWtb872s%3D&reserved=0> ([i915#2842]) +2 similar issues

  *   igt@gem_exec_fair@basic-pace@rcs0:

     *   shard-kbl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-kbl7%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=I1QlsgcCeqyv8cumWJIYbZ2ZUDxYGFm4LGFWziXmqqE%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40gem_exec_fair%40basic-pace%40rcs0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=LtfnnY5%2BTuqPMQD6f6IuXGeKgw8fiujq%2Be0UMx9Wd2g%3D&reserved=0> ([i915#2842]) +1 similar issue

  *   igt@gem_exec_params@no-vebox:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=7zdu9ifPm4le%2F4lo0hmnvhaHpvENL%2FcZAFuEmkyfL%2FI%3D&reserved=0> ([fdo#109283])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gem_exec_params%40no-vebox.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=4syrI8XcU58ea98QG8%2B1TaFawym%2FG%2BBFbhOMtmkYJus%3D&reserved=0> ([fdo#109283] / [i915#4877])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gem_exec_params%40secure-non-master.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=M8zKEZkfcQuXPiZoe9D4PMv7dNPhL5anmhHhQmouvHs%3D&reserved=0> ([fdo#112283])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834246880341%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=lLoasJfTbKjszqX2YUS%2Bs%2FRnCmcI%2BvFa0O54bz39O2w%3D&reserved=0> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk1%2Figt%40gem_lmem_swapping%40heavy-random.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=ZV3oZcTsU75V3%2FSshoc0mI6183t%2BNc6NYUgZAgbGqFc%3D&reserved=0> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random-verify:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl7%2Figt%40gem_lmem_swapping%40parallel-random-verify.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=77KyCa8BVb7kAJcDDsY0xNxLHMXTg55odmVHv%2BAEOk4%3D&reserved=0> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_media_vme:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_media_vme.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=quXAHZfMYTH3aVVglctESAcNnnwbYwAGpMQC30VEvhw%3D&reserved=0> ([i915#284])

  *   igt@gem_pxp@create-regular-context-1:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gem_pxp%40create-regular-context-1.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=SMsZQ4EU8BjVwCIkq5t0mhFRvGEuGIslumMBm1eC88g%3D&reserved=0> ([i915#4270]) +4 similar issues

  *   igt@gem_pxp@regular-baseline-src-copy-readible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40gem_pxp%40regular-baseline-src-copy-readible.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=yMJaqvvOc84hrr7bYU0VXd2%2B1bUvdmHJZUCckGhqUUo%3D&reserved=0> ([i915#4270]) +4 similar issues

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

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40gem_render_copy%40x-tiled-to-vebox-yf-tiled.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=IKjWYbSSN84QO2OKr3rEsVoYMaTf1InvroojmTQbHIk%3D&reserved=0> ([fdo#109271]) +327 similar issues

  *   igt@gem_render_copy@y-tiled-to-vebox-linear:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40gem_render_copy%40y-tiled-to-vebox-linear.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=1I3ebYN%2BVC1kgL3zy3GWaRMCBviIKIKvBVlE%2FE6TSOo%3D&reserved=0> ([i915#768]) +3 similar issues

  *   igt@gem_softpin@allocator-evict-all-engines:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk2%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TZzZXyWbGvzv7yYzzM27W%2BE3lxTq22e0Q3tm6WPT0fU%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40gem_softpin%40allocator-evict-all-engines.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=x5GckEmzkUD84L1fEMMkqIuhA2y7KjywWnosGl8FTLw%3D&reserved=0> ([i915#4171])

  *   igt@gem_softpin@evict-snoop-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=RBox6l9oxqiGkjg3cPg5QXnNLUNHjRJvXJz8wntQhGM%3D&reserved=0> ([fdo#109312]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40gem_softpin%40evict-snoop-interruptible.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=9UMahLUL42LRtaQ8fLkrINEJ99F4SkfDBpdaPXyNVUI%3D&reserved=0> ([fdo#109312])

  *   igt@gem_userptr_blits@coherency-unsync:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40gem_userptr_blits%40coherency-unsync.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=4DA7rB1UOaa0mViYUXFOU3wCzJjC37a0Gi6MvQmhXic%3D&reserved=0> ([i915#3297]) +2 similar issues

  *   igt@gem_userptr_blits@unsync-overlap:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gem_userptr_blits%40unsync-overlap.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=OzmcDDDOBqHGhIT1IMW5%2FiWfsJJ7lO2y7WWAeoz6XCU%3D&reserved=0> ([i915#3297])

  *   igt@gen3_render_linear_blits:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40gen3_render_linear_blits.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XSAdz6ONH%2FgSnp75Aah7vXQRT7h0THZtOC%2BS6z7ps4A%3D&reserved=0> ([fdo#109289]) +3 similar issues

  *   igt@gen7_exec_parse@chained-batch:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40gen7_exec_parse%40chained-batch.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=B7tg2m1GtT8umj%2Fsz2nogUDlT9Y90aZNnP3ntWFuHLc%3D&reserved=0> ([fdo#109289]) +2 similar issues

  *   igt@gen9_exec_parse@bb-secure:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40gen9_exec_parse%40bb-secure.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=Us2qvOcgO%2FD6Tzlss73XoGlSort2Xt1%2Fx%2FDXzBKYKT8%3D&reserved=0> ([i915#2527] / [i915#2856]) +3 similar issues

  *   igt@gen9_exec_parse@valid-registers:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40gen9_exec_parse%40valid-registers.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=HE3q%2B8hYd5tNoG%2BDv7HeikK07VMxQmsmNc0a9HOplSM%3D&reserved=0> ([i915#2856]) +2 similar issues

  *   igt@i915_pm_dc@dc3co-vpb-simulation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_dc%40dc3co-vpb-simulation.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2BFDXCGeblr4eO0V1vpYTL6x1n9kQwAgvN0XKuha9dg0%3D&reserved=0> ([i915#1904])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=9ZoRfIS1jYf%2Bi9BbeIWractETOCQLiToxUqqvWAXz3k%3D&reserved=0> ([i915#454])
     *   shard-tglb: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40i915_pm_dc%40dc6-dpms.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2BTbTfhIFkzp6xz%2FU0UqwpqeNCKsfg2btLW%2FjuXlg5zs%3D&reserved=0> ([i915#454])

  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40i915_pm_lpsp%40kms-lpsp%40kms-lpsp-dp.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=upaGWNhj%2BJxgjFItwg3dGDR0WNj1OiB99c943Bpc8Lc%3D&reserved=0> ([fdo#109271] / [i915#1937])

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=%2F2AfmH5ekW6%2F8a0shoCHoZpPJO5uhoi5AlSR2OwQNCg%3D&reserved=0> ([i915#1902])
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40i915_pm_lpsp%40screens-disabled.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=x1UjATscB3JvlIU9U6JwSCvQrfP961K4nM7UWqRT7CE%3D&reserved=0> ([i915#1902])

  *   igt@i915_pm_rpm@dpms-non-lpsp:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40i915_pm_rpm%40dpms-non-lpsp.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=kbj0nEZGkJosVi0CJgKBSkNjmMeKe3fUn7ObMzuUA3s%3D&reserved=0> ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue

  *   igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40i915_pm_rpm%40modeset-non-lpsp-stress-no-wait.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=t2Bjnf%2F4f7cASatmprtHeJlC9QdxkFgzFOvTOrj8iQk%3D&reserved=0> ([fdo#110892]) +1 similar issue

  *   igt@i915_pm_rpm@pc8-residency:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=FBMwg9QhMJRIGVZ%2BSKQKa8UHS%2BNEt3HSfECOYf%2FwrMk%3D&reserved=0> ([fdo#109293] / [fdo#109506])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40i915_pm_rpm%40pc8-residency.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=BQKK1wVk%2BIkOneni6WPjfXIA0mDrlbgk8GLbp0uQTfE%3D&reserved=0> ([fdo#109506] / [i915#2411])

  *   igt@kms_big_fb@4-tiled-64bpp-rotate-0:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%404-tiled-64bpp-rotate-0.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=qjZFX%2FGmKLNe8%2BL1z%2FQzdXi2kxWCOjKjXl5UxGrmXY8%3D&reserved=0> ([i915#5286]) +3 similar issues

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

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_big_fb%404-tiled-8bpp-rotate-180.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=6w4%2Bub8wrTM3i%2Bd3iNPSUhp1iAKfqvRXO9fi7dzKKWk%3D&reserved=0> ([i915#5286]) +1 similar issue

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_big_fb%40linear-8bpp-rotate-270.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=5eED8dO8QDL6K32woXtkHNvKegfW6F1ewFnxK%2Blx8qs%3D&reserved=0> ([fdo#111614]) +4 similar issues

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_big_fb%40x-tiled-16bpp-rotate-270.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=sPucY5k17cXYNYfrvRjLePKjflIeMKW0yNMOUEOCKDg%3D&reserved=0> ([fdo#110725] / [fdo#111614]) +4 similar issues

  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=qQWFLJFf4%2BaO2mk4n8KZnY6nK2UTDIFo7GbPFJQ9dAk%3D&reserved=0> ([fdo#109271] / [i915#3777])
     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_big_fb%40x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=xd5bwdbJtsX20uURI%2BvfG3yia%2FogMI1Hmnkpr9yL918%3D&reserved=0> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_big_fb%40y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=nMJghdfXEL7cSaV87zBKd7j4mosA2kO7AdPVhSqACPQ%3D&reserved=0> ([fdo#109271] / [i915#3777]) +4 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_big_fb%40yf-tiled-8bpp-rotate-180.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247036917%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=HtfNIKY1IUAZkDaHmVlY3K9nN0ypqhsAGmGb2%2FZDwr0%3D&reserved=0> ([fdo#111615]) +8 similar issues

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_big_fb%40yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=92yz6EJukR2imR7LubB%2FSJy2bLyd7jVSrmpgGKSz%2FS0%3D&reserved=0> ([fdo#110723]) +2 similar issues

  *   igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk9%2Figt%40kms_ccs%40pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=M8S%2FY1u6Qxnkwh%2F7wch6mBffhe7HBSVaXrVMzDRlxgE%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues

  *   igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XO0nJUThP5xvfJbeVUzxDS7I%2BbRSU1Ogd6NPauy0tos%3D&reserved=0> ([i915#3689] / [i915#3886]) +3 similar issues
     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl4%2Figt%40kms_ccs%40pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=YekllLJkP4t2tI%2BGAHOEuH8cAfQZ4KuLb77dq3zYhjg%3D&reserved=0> ([fdo#109271] / [i915#3886]) +2 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=8VPxRV%2F69%2BcxCmtDC%2BSM0pkzeT3Sdjt5XU1TuUtX%2FVU%3D&reserved=0> ([fdo#109271] / [i915#3886]) +10 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-b-crc-primary-basic-yf_tiled_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=RpAnXfdGFaZsb4qiNJ51r1pxI0hSyyNIaexMleSbtY0%3D&reserved=0> ([fdo#111615] / [i915#3689]) +5 similar issues

  *   igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_ccs%40pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=hZRyFjTJE0wJlWPJML6ppwMruzxAnmHtJNxGRcRJ7zc%3D&reserved=0> ([fdo#109278]) +45 similar issues

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_ccs%40pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=xbPg5N8ko3zgKckiPFjS4Qy8zu%2Flxj%2Bkoyk7zvu%2FXZU%3D&reserved=0> ([fdo#109278] / [i915#3886]) +8 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_ccs%40pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=LcZxNh8m6kWB1%2B9yqmVZnR0fpu7Tv%2FrUcR8iYF%2FuHgE%3D&reserved=0> ([i915#3689]) +4 similar issues

  *   igt@kms_chamelium@hdmi-cmp-planar-formats:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl7%2Figt%40kms_chamelium%40hdmi-cmp-planar-formats.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=0MPAWDs0KOuCTT%2BNwDqzTal%2FpKlwlDAFa6rqkFIZgIc%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_chamelium@hdmi-crc-fast:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_chamelium%40hdmi-crc-fast.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=6AbNyNrTnkrTTEQlJLrAagJ1JDt3udKnrQ0NWlFtIfw%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +19 similar issues

  *   igt@kms_chamelium@vga-hpd-without-ddc:

     *   shard-snb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-snb7%2Figt%40kms_chamelium%40vga-hpd-without-ddc.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=jWeeGXMzNFq7EjnHVk23PRdxhx74TQqKgjEXFhou400%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_color@pipe-a-deep-color:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb1%2Figt%40kms_color%40pipe-a-deep-color.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=r%2FypktJp9%2F8KRfXwoiahkuBJuxVWKr7%2BgvoSJL5905E%3D&reserved=0> ([fdo#109278] / [i915#3555])

  *   igt@kms_color@pipe-d-ctm-negative:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb7%2Figt%40kms_color%40pipe-d-ctm-negative.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=j4OBwAXQ%2BRxy%2FBE7FYZDkQiE4Xt2fR4nI45eLxU4TZU%3D&reserved=0> ([fdo#109278] / [i915#1149]) +3 similar issues

  *   igt@kms_color@pipe-d-deep-color:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_color%40pipe-d-deep-color.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=iMU5pvScP2TmQpVJjfz%2Bmn5JhtBEuAHLtw%2B0jmn6oJM%3D&reserved=0> ([i915#3555]) +1 similar issue

  *   igt@kms_color_chamelium@pipe-a-degamma:

     *   shard-kbl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_color_chamelium%40pipe-a-degamma.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=rVsOl24t2%2B1YkiSaQ4fvSLrZzauFwaW1AuQUf8tAGgw%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +26 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_color_chamelium%40pipe-b-ctm-0-5.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=4fdQ%2BLivt2laQ2LLYmf%2FnHlWoaRc0tlzpowjqchrMD4%3D&reserved=0> ([fdo#109284] / [fdo#111827]) +22 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk8%2Figt%40kms_color_chamelium%40pipe-d-degamma.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=oYz7RDTC0q%2Fu3546F1GE4mLh2cu7lG8dH13e8HmAq48%3D&reserved=0> ([fdo#109271] / [fdo#111827]) +15 similar issues

  *   igt@kms_color_chamelium@pipe-d-gamma:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_color_chamelium%40pipe-d-gamma.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=4AYtnp4elUY4cQs5Qi%2BRfrtPcTZe55L64dgmsWqlKno%3D&reserved=0> ([fdo#109278] / [fdo#109284] / [fdo#111827]) +2 similar issues

  *   igt@kms_content_protection@atomic:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl4%2Figt%40kms_content_protection%40atomic.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TN4ROEdFQObmXee84%2BXiLmUYAgvV5Tb7o5viGcYim1o%3D&reserved=0> ([i915#1319])

  *   igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk7%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=7vw2PbwJM5ZTzKa5wvjsHbAIjT0gLJ3KhgA%2FcOkPG90%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk6%2Figt%40kms_cursor_crc%40pipe-a-cursor-128x128-offscreen.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=KAm%2Bfo15iiCDb7tQu0YCiz3Lir4g%2FaosltWRzGHEN%2FM%3D&reserved=0> ([i915#118])

  *   igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-32x32-sliding.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=6XjQA4gDpz%2F5uSZkaUST3fBYIxEn9tHnSjo8T3q6Y7c%3D&reserved=0> ([i915#3319]) +5 similar issues

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb5%2Figt%40kms_cursor_crc%40pipe-a-cursor-512x512-sliding.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=2ubFf0FytpPtKWPssp0IwL7xcetKskpjD2ozeoIgRqk%3D&reserved=0> ([fdo#109278] / [fdo#109279]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-b-cursor-512x170-random:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_cursor_crc%40pipe-b-cursor-512x170-random.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=ujDWQ9JFaO1KzfyIBw9NPaLMxXkLNAWkdEEhFvrWSec%3D&reserved=0> ([fdo#109279] / [i915#3359]) +3 similar issues

  *   igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb2%2Figt%40kms_cursor_crc%40pipe-c-cursor-max-size-offscreen.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=Fx7GoX3r0yoyNz9ZaJksF%2BDfj1nmjsMt9EDTIL0pElc%3D&reserved=0> ([i915#3359]) +8 similar issues

  *   igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_cursor_legacy%402x-long-nonblocking-modeset-vs-cursor-atomic.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gJNavfsFRLHvAPrfpku9ESWlwzrKwAR6tnmdYocBzNM%3D&reserved=0> ([fdo#109274] / [fdo#109278]) +8 similar issues

  *   igt@kms_draw_crc@draw-method-rgb565-render-4tiled:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_draw_crc%40draw-method-rgb565-render-4tiled.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=e3yWteGLyqLIUkzfmJxgK7%2BJJIdNNDQS8eI%2FT5q0pZw%3D&reserved=0> ([i915#5287]) +1 similar issue

  *   igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_draw_crc%40draw-method-xrgb2101010-render-4tiled.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=CVbv0xPs35zfDG%2B4tkqgpyGR5%2BUTQmSulcmOb9Ve0zg%3D&reserved=0> ([i915#5287]) +1 similar issue

  *   igt@kms_dsc@xrgb8888-dsc-compression:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_dsc%40xrgb8888-dsc-compression.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=kdqCTfhnRE1xcpi3GDlQ70pCg8u9Vv49hEXTN%2BNZndA%3D&reserved=0> ([i915#3828])

  *   igt@kms_flip@2x-absolute-wf_vblank:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_flip%402x-absolute-wf_vblank.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=dYCiBwl3Q3V0la81XVJiDMWZgfsQyCykQoW%2Fpkn8s7c%3D&reserved=0> ([fdo#109274] / [fdo#111825] / [i915#3966])

  *   igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_flip%402x-blocking-absolute-wf_vblank-interruptible.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=KQDowozCS9YhdUAcxsFqCDaOtSueluxdDIJRUJsKTgw%3D&reserved=0> ([fdo#109274] / [fdo#111825]) +15 similar issues

  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip%402x-flip-vs-rmfb-interruptible.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=NCRtcBMvrDKm7yaCNtzSgYjesGiw7YWFHOQUpDWDo%2F8%3D&reserved=0> ([fdo#109274]) +8 similar issues

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl1%2Figt%40kms_flip%40flip-vs-suspend-interruptible%40a-dp1.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=8yvWgXvZmqZRRJtzy%2ByVZoIVzkWXF1e6tZHjbrxfdzw%3D&reserved=0> ([i915#180]) +6 similar issues

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_flip_scaled_crc%40flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=iNwT0WXR8Mi50UyrgIceLi3mFwgSbSqB%2FMoB%2BaUcknE%3D&reserved=0> ([i915#2587])

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247192720%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=IjPmNVoR2sBA1JOOdSohHf77Ei0WWGlRsZ8DnkS8eYY%3D&reserved=0> ([fdo#109271]) +132 similar issues

  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:

     *   shard-glk: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-glk8%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TWujEQweKGXKlWt06w%2FRJNl%2FVEK2H6JCupSNG19n8KY%3D&reserved=0> -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk5%2Figt%40kms_frontbuffer_tracking%40fbc-2p-scndscrn-spr-indfb-draw-pwrite.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=BVC%2FbQUD2G0Wj%2BiybXlt8xAHzLHqgjmFSJFTwIdW7FI%3D&reserved=0> ([i915#1888] / [i915#2546])

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-indfb-plflip-blt.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=85he5n5mjg%2B69%2FB7wNdOX1PHAk7RI5UEV9gy03LuDlY%3D&reserved=0> ([fdo#109280] / [fdo#111825]) +44 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_frontbuffer_tracking%40fbcpsr-2p-scndscrn-shrfb-plflip-blt.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=R49ravJFdMwrAHNXtqlVFsb2vcxPggQVDp4mRBKSLvo%3D&reserved=0> ([fdo#109280]) +35 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=GtNzP7c1tw%2FGTlPV1Jj0mzhNnsxdgP8sdEmXage4kzc%3D&reserved=0> ([i915#5439]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb6%2Figt%40kms_frontbuffer_tracking%40fbcpsr-tiling-4.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=hVxG9yEc%2BUOefLvRgmM2KLuTZ%2BHR5JiDe31ksMPGJSw%3D&reserved=0> ([i915#5438])

  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_multipipe_modeset%40basic-max-pipe-crc-check.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=w4iLWbIoUZByCwdFswU%2Bbd5UbqXXOaJ4G0xlTQCq0as%3D&reserved=0> ([i915#1839])

  *   igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl1%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=IpwyK3KduU2S%2FI5zhaPc%2FCR7aV4iAqIX1uRVUbMTACc%3D&reserved=0> ([fdo#109271] / [i915#533])
     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk4%2Figt%40kms_pipe_crc_basic%40suspend-read-crc-pipe-d.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=6EGpLUOf9HUycf5aSqr%2BgYuWYOuqVreCuELxF45B91A%3D&reserved=0> ([fdo#109271] / [i915#533])

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

     *   shard-apl: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-apl8%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=SAfuutE2t0fE9J6f3tTuFgBxO%2FFryw0kF2Nz2giHnDA%3D&reserved=0> -> DMESG-WARN<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl3%2Figt%40kms_plane%40plane-panning-bottom-right-suspend%40pipe-a-planes.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=kfrem%2FTRf%2FE1CY%2FmZyzpAGaogBICnTONftGRpdUrw14%3D&reserved=0> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-7efc:

     *   shard-apl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl8%2Figt%40kms_plane_alpha_blend%40pipe-b-alpha-7efc.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cYxeVnSi1RoX8WE5nEacHzLWtIF%2Bn4USYyxaZzFUnmc%3D&reserved=0> ([fdo#108145] / [i915#265])

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

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl6%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-opaque-fb.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=sgSSJdVaPljRc5%2BEZ9brhJi5%2FDTR9nZPbJwQS5tGv8Y%3D&reserved=0> ([fdo#108145] / [i915#265]) +1 similar issue

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

     *   shard-kbl: NOTRUN -> FAIL<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-kbl3%2Figt%40kms_plane_alpha_blend%40pipe-c-alpha-transparent-fb.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=fy%2Bzmu6JIWCOASPKJnUtJSiD6TFxafQ7K7fdw7q5JQA%3D&reserved=0> ([i915#265])

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

     *   shard-glk: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-glk3%2Figt%40kms_plane_alpha_blend%40pipe-d-alpha-opaque-fb.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=o6TCVea5aqtBNOikrNhAhwG5q3RVXtjToqKx9WJqK3U%3D&reserved=0> ([fdo#109271]) +95 similar issues

  *   igt@kms_plane_lowres@pipe-a-tiling-x:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb3%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=bJJeMhdjepF8bK7Sd%2Fj3BuT9lAvZY3WpCG7IlgKWq9E%3D&reserved=0> ([i915#3536])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_lowres%40pipe-a-tiling-x.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=QqLvwkf6hJLwyss4ZKg8L0M8D8E6wYg%2FlzBswLRPMCA%3D&reserved=0> ([i915#3536]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-d-tiling-yf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb5%2Figt%40kms_plane_lowres%40pipe-d-tiling-yf.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=WIZK6CH2vnLCgcjxjIDFkogN8mZuuKvJMVNRgz9HUS0%3D&reserved=0> ([fdo#111615] / [fdo#112054]) +1 similar issue

  *   igt@kms_plane_multiple@atomic-pipe-a-tiling-4:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_multiple%40atomic-pipe-a-tiling-4.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=z2u%2BJ6iviRS6ydOYHGLSwbLis1%2BIr3jRP0x4aRzsnQI%3D&reserved=0> ([i915#5288]) +1 similar issue

  *   igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-a-edp-1-downscale-with-pixel-format:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb4%2Figt%40kms_plane_scaling%40downscale-with-pixel-format-factor-0-25%40pipe-a-edp-1-downscale-with-pixel-format.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=TFHA%2BTj9OtGu3SR%2FCD76bE4F5zSCmy3utprb%2B7WKNlI%3D&reserved=0> ([i915#5176]) +2 similar issues

  *   igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1-planes-downscale:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb4%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=vJVgX7LYwtvqdnTnqG4J2Z%2FEFRn6KlueT2dscNtd1Dw%3D&reserved=0> -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40planes-downscale-factor-0-5%40pipe-a-edp-1-planes-downscale.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=cTYwHy2bEiNdsuo8z9NEXPgg2vkZC%2Ft96IXU2vb7XYE%3D&reserved=0> ([i915#5235]) +2 similar issues

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

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb1%2Figt%40kms_plane_scaling%40planes-upscale-factor-0-25-downscale-factor-0-25%40pipe-a-edp-1-planes-upscale-downscale.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=LOIli8H2sqhe8k8TN956t8gQdukCC7bHkhZec3hY0YE%3D&reserved=0> ([i915#5235]) +7 similar issues

  *   igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:

     *   shard-iclb: PASS<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGT_6406%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247348948%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=LM7gKLvoixUra6q69Kz0fHQojp3X8XOsjI4KRh5e1%2FY%3D&reserved=0> -> INCOMPLETE<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb2%2Figt%40kms_plane_scaling%40scaler-with-clipping-clamping%40pipe-b-edp-1-scaler-with-clipping-clamping.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=xwfSG73DUd0VOwHul8%2FRMnpzBOVVyjnUMOpUh8RGYoY%3D&reserved=0> ([i915#5243])

  *   igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-edp-1-scaler-with-rotation:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb3%2Figt%40kms_plane_scaling%40scaler-with-rotation-unity-scaling%40pipe-d-edp-1-scaler-with-rotation.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=h823MhAs9z3U5G9KyDb3%2BAwytD%2B1Wv%2FtJqzkataGkWw%3D&reserved=0> ([i915#5176]) +7 similar issues

  *   igt@kms_prime@basic-crc@first-to-second:

     *   shard-iclb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-iclb8%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=YL%2FTxiVHuRl21sCvOEN1ckEYsdpqSp40YlSJga8kYDk%3D&reserved=0> ([i915#1836])
     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb7%2Figt%40kms_prime%40basic-crc%40first-to-second.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=gITiYH6AIx5OI%2FJH6XOP9Y7UIWmdsCZU6%2FjRVxsCNI0%3D&reserved=0> ([i915#1836])

  *   igt@kms_psr2_sf@cursor-plane-move-continuous-sf:

     *   shard-apl: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-apl2%2Figt%40kms_psr2_sf%40cursor-plane-move-continuous-sf.html&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=VoPUl1GH%2FzcufLskjumSzMNXM9JIPgNC%2BeoQpUEIhi8%3D&reserved=0> ([fdo#109271] / [i915#658]) +3 similar issues

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

     *   shard-tglb: NOTRUN -> SKIP<https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fintel-gfx-ci.01.org%2Ftree%2Fdrm-tip%2FIGTPW_6862%2Fshard-tglb6%2F&data=04%7C01%7CDingchen.Zhang%40amd.com%7Cec0172b359824ea27cd808da1650f60f%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637846834247505156%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=ezqrJWtZHxvYQMefXrlDKh7sHQSpvE%2BulWcTfuIae%2FU%3D&reserved=0> ([i915#2920]) +2 similar issues

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

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

* Re: [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option
  2022-04-01 21:06 [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option David Zhang
                   ` (2 preceding siblings ...)
  2022-04-04 15:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2022-04-05 14:58 ` Aurabindo Pillai
  3 siblings, 0 replies; 8+ messages in thread
From: Aurabindo Pillai @ 2022-04-05 14:58 UTC (permalink / raw)
  To: David Zhang, igt-dev



On 2022-04-01 17:06, David Zhang wrote:
> [why & how]
> AMDGPU DM exposure a debugfs interface entry of visual confirm
> debug option which is configured for debugging like surface
> programming. It also supports the PSR feature visual confirm
> debugging. We'd add helpers to read/write visual confirm debug
> option from/to such interface entry.
> 
> The interface entry "amdgpu_dm_visual_confirm" is located in the
> debugfs directory. We'd add the enumeration of visual confirm
> option which is aligned to the amdgpu kernel driver.
> 
> Cc: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
> Cc: Harry Wentland <harry.wentland@amd.com>
> Cc: Leo Li <sunpeng.li@amd.com>
> Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
> Cc: Wayne Lin <wayne.lin@amd.com>
> 
> Signed-off-by: David Zhang <dingchen.zhang@amd.com>
> ---
>   lib/igt_amd.c | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++
>   lib/igt_amd.h | 20 +++++++++++
>   2 files changed, 116 insertions(+)
> 
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c
> index 664602da..02b35f68 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -25,6 +25,7 @@
>   
>   #include "igt_amd.h"
>   #include "igt.h"
> +#include "igt_sysfs.h"
>   #include <amdgpu_drm.h>
>   
>   #define X0 1
> @@ -250,6 +251,38 @@ bool igt_amd_is_tiled(uint64_t modifier)
>   		return false;
>   }
>   
> +/**
> + * @brief generic helper to check if the amdgpu dm debugfs entry defined
> + *
> + * @param drm_fd DRM file descriptor
> + * @param interface_name The debugfs interface entry name with prefix "amdgpu_dm_"
> + * @return true if <debugfs_root>/interface_name exists and defined
> + * @return false otherwise
> + */
> +static bool amd_dm_has_debugfs(int drm_fd, const char *interface_name)
> +{
> +	int fd;
> +	int res;
> +	struct stat stat;
> +
> +	fd = igt_debugfs_dir(drm_fd);
> +	if (fd < 0) {
> +		igt_info("Couldn't open debugfs dir!\n");
> +		return false;
> +	}
> +
> +	res = fstatat(fd, interface_name, &stat, 0);
> +	if (res != 0) {
> +		igt_info("debugfs %s not supported\n", interface_name);
> +		close(fd);
> +		return false;
> +	}
> +
> +	close(fd);
> +	return true;
> +}
> +
> +
>   /**
>    * @brief generic helper to check if the debugfs entry of given connector has the
>    *        debugfs interface defined.
> @@ -1075,3 +1108,66 @@ int igt_amd_read_psr_state(int drm_fd, char *connector_name)
>   
>   	return strtol(buf, NULL, 10);
>   }
> +
> +/**
> + * @brief check if AMDGPU DM visual confirm debugfs interface entry exist and defined
> + *
> + * @param drm_fd DRM file descriptor
> + * @return true if visual confirm debugfs interface exists and defined
> + * @return false otherwise
> + */
> +bool igt_amd_dm_has_visual_confirm(int drm_fd)
> +{
> +	return amd_dm_has_debugfs(drm_fd, DEBUGFS_DM_VISUAL_CONFIRM);
> +}
> +
> +/**
> + * @brief Read amdgpu DM visual confirm debugfs interface
> + *
> + * @param drm_fd DRM file descriptor
> + * @return int visual confirm debug option as integer
> + */
> +int  igt_amd_dm_get_visual_confirm(int drm_fd)
> +{
> +	char buf[4];	/* current 4 bytes are enough */
> +	int fd, ret;
> +
> +	fd = igt_debugfs_dir(drm_fd);
> +	if (fd < 0) {
> +		igt_info("Couldn't open debugfs dir!\n");
> +		return -1;
> +	}
> +
> +	ret = igt_debugfs_simple_read(fd, DEBUGFS_DM_VISUAL_CONFIRM, buf, sizeof(buf));
> +	close(fd);
> +
> +	igt_assert_f(ret >= 0, "Reading %s failed.\n",
> +		     DEBUGFS_DM_VISUAL_CONFIRM);
> +
> +	return strtol(buf, NULL, 10);
> +}
> +
> +/**
> + * @brief Write amdgpu DM visual confirm debug option to debugfs interface
> + *
> + * @param drm_fd DRM file descriptor
> + * @param option amdgpu DC visual confirm debug option
> + * @return true if set visual confirm option success
> + * @return false otherwise
> + */
> +bool igt_amd_dm_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option)
> +{
> +	char buf[4];
> +	int fd;
> +
> +	fd = igt_debugfs_dir(drm_fd);
> +	if (fd < 0) {
> +		igt_info("Couldn't open debugfs dir!\n");
> +		return false;
> +	}
> +
> +	memset(buf, '\0', sizeof(buf));
> +	snprintf(buf, sizeof(buf), "%d\n", option);
> +

close fd before returning.
> +	return igt_sysfs_set(fd, DEBUGFS_DM_VISUAL_CONFIRM, buf);
> +}
> diff --git a/lib/igt_amd.h b/lib/igt_amd.h
> index e4e12ce5..df76f428 100644
> --- a/lib/igt_amd.h
> +++ b/lib/igt_amd.h
> @@ -49,6 +49,9 @@
>   #define DEBUGFS_EDP_PSR_CAP	"psr_capability"
>   #define DEBUGFS_EDP_PSR_STATE	"psr_state"
>   
> +/* amdgpu DM interface entries */
> +#define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
> +
>   enum amd_dsc_clock_force {
>   	DSC_AUTOMATIC = 0,
>   	DSC_FORCE_ON,
> @@ -115,6 +118,19 @@ enum amdgpu_psr_state {
>   	PSR_STATE_INVALID = 0xFF
>   };
>   
> +/*
> + * enumeration of amdgpu DC visual confirm debug option
> + * aligned to the upstreamed amdgpu kernel driver 'enum visual_confirm' in dc.h
> + */
> +enum amdgpu_debug_visual_confirm {
> +	VISUAL_CONFIRM_DISABLE	= 0,
> +	VISUAL_CONFIRM_SURFACE	= 1,
> +	VISUAL_CONFIRM_HDR	= 2,
> +	VISUAL_CONFIRM_MPCTREE	= 4,
> +	VISUAL_CONFIRM_PSR	= 5,
> +	VISUAL_CONFIRM_SWIZZLE	= 9
> +};
> +
>   uint32_t igt_amd_create_bo(int fd, uint64_t size);
>   void *igt_amd_mmap_bo(int fd, uint32_t handle, uint64_t size, int prot);
>   unsigned int igt_amd_compute_offset(unsigned int* swizzle_pattern,
> @@ -172,4 +188,8 @@ bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mod
>   bool igt_amd_output_has_psr_state(int drm_fd, char *connector_name);
>   int  igt_amd_read_psr_state(int drm_fd, char *connector_name);
>   
> +/* DM interface helpers */
> +bool igt_amd_dm_has_visual_confirm(int drm_fd);
> +int  igt_amd_dm_get_visual_confirm(int drm_fd);
> +bool igt_amd_dm_set_visual_confirm(int drm_fd, enum amdgpu_debug_visual_confirm option);

Is _dm_ in the API strictly necessary? 
igt_amd_{has,get,set}_visual_confirm() would do IMO. I think we do not 
support radeon driver. Since its just amdgpu, we need not add dm to the 
api and keep the api cleaner. Its a nitpick though.

>   #endif /* IGT_AMD_H */

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

end of thread, other threads:[~2022-04-05 14:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-01 21:06 [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option David Zhang
2022-04-01 22:01 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_amd: add helper to R/W DM visual confirm debug option (rev2) Patchwork
2022-04-02  0:44 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-04-04 13:52   ` Zhang, Dingchen (David)
2022-04-04 15:36     ` Vudum, Lakshminarayana
2022-04-04 15:51       ` Zhang, Dingchen (David)
2022-04-04 15:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2022-04-05 14:58 ` [igt-dev] [PATCH] lib/igt_amd: add helper to R/W DM visual confirm debug option Aurabindo Pillai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox