All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
@ 2022-04-27 18:42 Zbigniew Kempczyński
  2022-04-27 19:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-27 18:42 UTC (permalink / raw)
  To: igt-dev; +Cc: Thomas Hellström

Verify that eviction works when all engines try to use same offset for
different handles. It replaces allocator-evict-all-engines test because
it is simpler.

v2: addressing review comments (Kamil)
v3: simplifying subtest (Chris)

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 tests/i915/gem_softpin.c | 76 ++++++++++++++++++++++++++++++++++++++--
 1 file changed, 74 insertions(+), 2 deletions(-)

diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index 448b4c4b9e..7dae2a6c44 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -1073,6 +1073,77 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
 	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
 }
 
+#define MINIMAL_OFFSET 0x200000
+static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
+				 struct batch *batches, unsigned int count)
+{
+	struct drm_i915_gem_exec_object2 obj = {
+		.offset = max_t(uint64_t, gem_detect_safe_start_offset(fd), MINIMAL_OFFSET),
+		.flags = EXEC_OBJECT_PINNED,
+	};
+
+	eb->buffers_ptr = to_user_pointer(&obj);
+
+	for (unsigned int i = 0; i < count; i++) {
+		obj.handle = batches[i].handle;
+		gem_execbuf(fd, eb);
+	}
+}
+
+static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
+{
+	struct drm_i915_gem_execbuffer2 execbuf;
+	struct intel_execution_engine2 *e;
+	unsigned int engines[I915_EXEC_RING_MASK + 1];
+	struct batch *batches;
+	unsigned int nengine;
+	unsigned int count;
+	uint64_t size, batch_size = BATCH_SIZE;
+
+	nengine = 0;
+	for_each_ctx_engine(fd, ctx, e) {
+		engines[nengine++] = e->flags;
+	}
+	igt_require(nengine);
+
+	size = gem_aperture_size(fd);
+	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
+		size = 1ull << 32;
+	igt_require(size < (1ull<<32) * BATCH_SIZE);
+
+	count = size / BATCH_SIZE + 1;
+	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
+		  count, (long long)size, nengine);
+
+	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
+	intel_detect_and_clear_missed_interrupts(fd);
+
+	memset(&execbuf, 0, sizeof(execbuf));
+	execbuf.buffer_count = 1;
+	execbuf.rsvd1 = ctx->id;
+
+	batches = calloc(count, sizeof(*batches));
+	igt_assert(batches);
+	for (unsigned int i = 0; i < count; i++)
+		batches[i].handle = batch_create(fd, &batch_size);
+
+	/* Flush all memory before we start the timer */
+	single_offset_submit(fd, &execbuf, batches, count);
+
+	igt_fork(child, nengine) {
+		execbuf.flags |= engines[child];
+		igt_until_timeout(timeout)
+			single_offset_submit(fd, &execbuf, batches, count);
+	}
+	igt_waitchildren();
+
+	for (unsigned int i = 0; i < count; i++)
+		gem_close(fd, batches[i].handle);
+	free(batches);
+
+	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
+}
+
 static void make_batch(int i915, uint32_t handle, uint64_t size)
 {
 	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
@@ -1213,8 +1284,9 @@ igt_main
 		test_each_engine("allocator-evict", fd, ctx, e)
 			test_allocator_evict(fd, ctx, e->flags, 20);
 
-		igt_subtest("allocator-evict-all-engines")
-			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
+		igt_describe("Use same offset for all engines and for different handles");
+		igt_subtest("evict-single-offset")
+			evict_single_offset(fd, ctx, 20);
 	}
 
 	igt_describe("Check start offset and alignment detection");
-- 
2.32.0

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
@ 2022-04-27 19:26 ` Patchwork
  2022-04-27 20:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-04-27 19:26 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
URL   : https://patchwork.freedesktop.org/series/102154/
State : success

== Summary ==

CI Bug Log - changes from IGT_6458 -> IGTPW_7017
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (2): fi-hsw-4770 fi-icl-u2 
  Missing    (2): fi-bsw-cyan fi-bdw-samus 

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

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_pm_rpm@module-reload:
    - {bat-rpls-2}:       NOTRUN -> [WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-rpls-2/igt@i915_pm_rpm@module-reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][2] ([fdo#109271]) +9 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-icl-u2:          NOTRUN -> [SKIP][3] ([i915#2190])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

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

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

  * igt@kms_busy@basic@modeset:
    - bat-adlp-4:         [PASS][6] -> [DMESG-WARN][7] ([i915#3576])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/bat-adlp-4/igt@kms_busy@basic@modeset.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-adlp-4/igt@kms_busy@basic@modeset.html

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

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][9] ([fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/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][10] ([fdo#109278]) +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/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][11] ([fdo#109285])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

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

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

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

  * igt@prime_vgem@basic-userptr:
    - fi-icl-u2:          NOTRUN -> [SKIP][15] ([i915#3301])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@prime_vgem@basic-userptr.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [DMESG-WARN][16] ([i915#62]) -> [PASS][17] +15 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gtt:
    - fi-bdw-5557u:       [DMESG-FAIL][18] ([i915#3674]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/fi-bdw-5557u/igt@i915_selftest@live@gtt.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-bdw-5557u/igt@i915_selftest@live@gtt.html

  * igt@kms_busy@basic@flip:
    - {bat-adlp-6}:       [DMESG-WARN][20] ([i915#3576]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/bat-adlp-6/igt@kms_busy@basic@flip.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-adlp-6/igt@kms_busy@basic@flip.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3674]: https://gitlab.freedesktop.org/drm/intel/issues/3674
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5087]: https://gitlab.freedesktop.org/drm/intel/issues/5087
  [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278
  [i915#5329]: https://gitlab.freedesktop.org/drm/intel/issues/5329
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5338]: https://gitlab.freedesktop.org/drm/intel/issues/5338
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6458 -> IGTPW_7017

  CI-20190529: 20190529
  CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
  IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@gem_softpin@evict-single-offset
-igt@gem_softpin@allocator-evict-all-engines

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
  2022-04-27 19:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
@ 2022-04-27 20:33 ` Patchwork
  2022-04-28  4:11   ` Zbigniew Kempczyński
  2022-04-28 15:45 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2022-04-27 20:33 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
URL   : https://patchwork.freedesktop.org/series/102154/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6458_full -> IGTPW_7017_full
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (10 -> 8)
------------------------------

  Missing    (2): shard-skl shard-dg1 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_eio@kms.html

  * {igt@gem_softpin@evict-single-offset} (NEW):
    - shard-kbl:          NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@gem_softpin@evict-single-offset.html
    - shard-glk:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_softpin@evict-single-offset.html
    - shard-apl:          NOTRUN -> [FAIL][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@gem_softpin@evict-single-offset.html

  * igt@prime_mmap_coherency@ioctl-errors:
    - shard-iclb:         NOTRUN -> [INCOMPLETE][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@prime_mmap_coherency@ioctl-errors.html

  
New tests
---------

  New tests have been introduced between IGT_6458_full and IGTPW_7017_full:

### New IGT tests (1) ###

  * igt@gem_softpin@evict-single-offset:
    - Statuses : 3 fail(s) 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 36.11] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@feature_discovery@display-4x:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#1839]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@feature_discovery@display-4x.html

  * igt@gem_create@create-massive:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][8] ([i915#4991])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_create@create-massive.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][9] ([i915#180]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@hostile:
    - shard-snb:          NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb5/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglb:         NOTRUN -> [SKIP][11] ([i915#280])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-immediate:
    - shard-tglb:         [PASS][12] -> [TIMEOUT][13] ([i915#3063])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb7/igt@gem_eio@in-flight-immediate.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@gem_eio@in-flight-immediate.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][14] -> [TIMEOUT][15] ([i915#3070])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_eio@unwedge-stress.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([i915#4525])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][18] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_exec_fair@basic-none@rcs0.html

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

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         NOTRUN -> [FAIL][20] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#2849])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109283])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][25] ([fdo#109283] / [i915#4877])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_suspend@basic-s3@smem:
    - shard-apl:          [PASS][26] -> [DMESG-WARN][27] ([i915#180])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][28] -> [SKIP][29] ([i915#2190])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#4613]) +4 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-kbl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#4613]) +5 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#4613]) +2 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][35] ([i915#2658])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][36] ([i915#2658])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#4270]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#4270]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#768])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109312])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3297]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#3297]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109289]) +5 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#2527] / [i915#2856])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][45] ([fdo#109271]) +112 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk2/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglb:         NOTRUN -> [WARN][46] ([i915#2681])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@i915_pm_rc6_residency@rc6-idle.html
    - shard-iclb:         NOTRUN -> [WARN][47] ([i915#2684])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#111644] / [i915#1397] / [i915#2411])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#110892])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@fences:
    - shard-iclb:         [PASS][50] -> [INCOMPLETE][51] ([i915#4185])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@i915_pm_rpm@fences.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@i915_pm_rpm@fences.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#5286]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#110725] / [fdo#111614])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_big_fb@linear-32bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111614]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3777]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271]) +187 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#110723]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#111615]) +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3689]) +12 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +8 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111615] / [i915#3689]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +4 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3689] / [i915#3886]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

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

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
    - shard-snb:          NOTRUN -> [SKIP][69] ([fdo#109271]) +158 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cdclk@plane-scaling:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#3742])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cdclk@plane-scaling.html
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3742])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@dp-hpd-storm:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_chamelium@dp-hpd-storm.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_chamelium@hdmi-hpd.html

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

  * igt@kms_color@pipe-d-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278] / [i915#1149]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_color@pipe-d-ctm-0-25.html

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

  * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
    - shard-snb:          NOTRUN -> [SKIP][77] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb7/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html

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

  * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][80] ([i915#1319]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_content_protection@lic.html
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_content_protection@lic.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][82] ([i915#1319])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> [FAIL][83] ([i915#2105])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#1063]) +2 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_content_protection@uevent.html
    - shard-apl:          NOTRUN -> [FAIL][85] ([i915#2105])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#3319])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-32x32-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([fdo#109279] / [i915#3359]) +6 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +8 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109274] / [fdo#109278])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#4103])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#3528])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#3528])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

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

  * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#5287]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [FAIL][96] ([i915#4767])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][97] ([i915#180])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html

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

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#111825]) +5 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1:
    - shard-tglb:         [PASS][100] -> [DMESG-WARN][101] ([i915#2411])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-iclb:         [PASS][102] -> [SKIP][103] ([i915#3701])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#109280] / [fdo#111825]) +42 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][106] -> [DMESG-WARN][107] ([i915#180]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109280]) +27 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#3555]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109289]) +5 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#533])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#533])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][113] ([i915#265])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][114] ([i915#265])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +2 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-c-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][117] ([i915#3536]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#5288])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-4.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation:
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271]) +253 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation.html

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

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

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([i915#5235]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-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][123] ([i915#5235]) +7 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/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-a-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [PASS][124] -> [SKIP][125] ([i915#5176])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#2920])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][127] ([i915#658])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-apl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#658]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_psr2_sf@cursor-plane-update-sf.html
    - shard-kbl:          NOTRUN -> [SKIP][129] ([fdo#109271] / [i915#658]) +1 similar issue
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#658])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_psr2_su@page_flip-p010.html
    - shard-iclb:         NOTRUN -> [SKIP][131] ([fdo#109642] / [fdo#111068] / [i915#658])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][132] ([i915#132] / [i915#3467]) +3 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         NOTRUN -> [SKIP][133] ([fdo#109441]) +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][134] -> [SKIP][135] ([fdo#109441]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([i915#5289])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-iclb:         NOTRUN -> [SKIP][137] ([i915#5289])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#109278]) +35 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#533]) +1 similar issue
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-iclb:         NOTRUN -> [SKIP][140] ([i915#3555])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_vrr@flip-basic.html

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

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][142] ([i915#2530]) +2 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][143] ([i915#2530]) +2 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-iclb:         NOTRUN -> [SKIP][144] ([fdo#109278] / [i915#2530])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@prime_nv_api@i915_nv_double_export:
    - shard-iclb:         NOTRUN -> [SKIP][145] ([fdo#109291]) +1 similar issue
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@prime_nv_api@i915_nv_double_export.html

  * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
    - shard-tglb:         NOTRUN -> [SKIP][146] ([fdo#109291]) +4 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][147] ([fdo#111656])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][148] ([fdo#109292])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@prime_vgem@coherency-gtt.html

  * igt@syncobj_timeline@transfer-timeline-point:
    - shard-iclb:         NOTRUN -> [DMESG-FAIL][149] ([i915#5098])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-kbl:          NOTRUN -> [DMESG-FAIL][150] ([i915#5098])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][151] ([i915#5098])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@syncobj_timeline@transfer-timeline-point.html

  * igt@sysfs_clients@fair-3:
    - shard-kbl:          NOTRUN -> [SKIP][152] ([fdo#109271] / [i915#2994]) +5 similar issues
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@sysfs_clients@fair-3.html
    - shard-tglb:         NOTRUN -> [SKIP][153] ([i915#2994]) +4 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@sysfs_clients@fair-3.html
    - shard-iclb:         NOTRUN -> [SKIP][154] ([i915#2994]) +2 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> [SKIP][155] ([fdo#109271] / [i915#2994]) +3 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> [SKIP][156] ([fdo#109271] / [i915#2994]) +2 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@sysfs_clients@recycle-many.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> [SKIP][157] ([fdo#109307])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@tools_test@sysfs_l3_parity.html
    - shard-tglb:         NOTRUN -> [SKIP][158] ([fdo#109307])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@drm_read@short-buffer-nonblock:
    - {shard-rkl}:        [SKIP][159] ([i915#4098]) -> [PASS][160]
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html

  * igt@fbdev@unaligned-read:
    - {shard-rkl}:        [SKIP][161] ([i915#2582]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@fbdev@unaligned-read.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@fbdev@unaligned-read.html

  * igt@gem_exec_create@madvise@smem:
    - {shard-rkl}:        [INCOMPLETE][163] ([i915#5385]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@gem_exec_create@madvise@smem.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@gem_exec_create@madvise@smem.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][165] ([i915#2842]) -> [PASS][166] +2 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - {shard-rkl}:        [FAIL][167] ([i915#2842]) -> [PASS][168]
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@i915_pm_backlight@fade_with_suspend:
    - {shard-rkl}:        [SKIP][169] ([i915#3012]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@i915_pm_backlight@fade_with_suspend.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_backlight@fade_with_suspend.html

  * igt@i915_pm_dc@dc5-psr:
    - {shard-rkl}:        [SKIP][171] ([i915#658]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@i915_pm_dc@dc5-psr.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_rpm@gem-execbuf:
    - {shard-rkl}:        [SKIP][173] ([fdo#109308]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - {shard-rkl}:        [SKIP][175] ([i915#1845] / [i915#4098]) -> [PASS][176] +14 similar issues
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_color@pipe-c-invalid-degamma-lut-sizes:
    - {shard-rkl}:        [SKIP][177] ([i915#4070]) -> [PASS][178] +4 similar issues
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding:
    - {shard-rkl}:        [SKIP][179] ([fdo#112022] / [i915#4070]) -> [PASS][180] +4 similar issues
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html

  * igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge:
    - {shard-rkl}:        [SKIP][181] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][182] +3 similar issues
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge.html

  * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
    - {shard-rkl}:        [SKIP][183] ([i915#4070] / [i915#4098]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
    - {shard-rkl}:        [SKIP][185] ([fdo#111825] / [i915#4070]) -> [PASS][186] +3 similar issues
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][187] -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][189] ([i915#2346] / [i915#533]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
    - {shard-rkl}:        [SKIP][191] ([i915#4098] / [i915#4369]) -> [PASS][192]
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-4/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html

  * igt@kms_draw_crc@fill-fb:
    - {shard-rkl}:        [SKIP][193] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][194] +1 similar issue
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_draw_crc@fill-fb.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_draw_crc@fill-fb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          [DMESG-WARN][195] ([i915#5090]) -> [PASS][196]
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip@flip-vs-suspend@a-edp1:
    - shard-iclb:         [INCOMPLETE][197] -> [PASS][198]
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip@flip-vs-suspend@a-edp1.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_flip@flip-vs-suspend@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-iclb:         [SKIP][199] ([i915#3701]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a:
    - shard-apl:          [DMESG-WARN][201] ([i915#180]) -> [PASS][202] +3 similar issues
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html

  * igt@kms_invalid_mode@uint-max-clock:
    - {shard-rkl}:        [SKIP][203] ([i915#4278]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_invalid_mode@uint-max-clock.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
    - {shard-rkl}:        [SKIP][205] ([i915#1849] / [i915#4098]) -> [PASS][206] +19 similar issues
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html

  * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
    - {shard-rkl}:        [SKIP][207] ([i915#1849] / [i915#3558]) -> [PASS][208] +1 similar issue
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html

  * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format:
    - shard-iclb:         [SKIP][209] ([i915#5176]) -> [PASS][210] +2 similar issues
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html

  * igt@kms_properties@crtc-properties-legacy:
    - {shard-rkl}:        [SKIP][211] ([i915#1849]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_properties@crtc-properties-legacy.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][213] ([fdo#109441]) -> [PASS][214] +2 similar issues
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@sprite_render:
    - {shard-rkl}:        [SKIP][215] ([i915#1072]) -> [PASS][216] +1 similar issue
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@kms_psr@sprite_render.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_psr@sprite_render.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-glk:          [DMESG-FAIL][217] ([i915#118] / [i915#1888]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk5/igt@kms_rotation_crc@primary-rotation-180.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_rotation_crc@primary-rotation-180.html

  * igt@perf@polling-small-buf:
    - {shard-rkl}:        [FAIL][219] ([i915#1722]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@perf@polling-small-buf.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@perf@polling-small-buf.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][221] ([i915#4525]) -> [DMESG-FAIL][222] ([i915#5614])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [DMESG-WARN][223] ([i915#5614]) -> [SKIP][224] ([i915#4525]) +2 similar issues
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [INCOMPLETE][225] ([i915#5243]) -> [SKIP][226] ([i915#5176])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         [SKIP][229] ([fdo#111068] / [i915#658]) -> [SKIP][230] ([i915#2920])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][231], [FAIL][232], [FAIL][233], [FAIL][234], [FAIL][235], [FAIL][236], [FAIL][237], [FAIL][238], [FAIL][239], [FAIL][240], [FAIL][241]) ([i915#4312] / [i915#5257]) -> ([FAIL][242], [FAIL][243], [FAIL][244], [FAIL][245], [FAIL][246], [FAIL][247], [FAIL][248], [FAIL][249], [FAIL][250], [FAIL][251], [FAIL][252], [FAIL][253], [FAIL][254], [FAIL][255]) ([fdo#109271] / [i915#180] / [i915#4312] / [i915#5257] / [i915#92])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@runner@aborted.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl3/igt@runner@aborted.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl4/igt@runner@aborted.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@runner@aborted.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@runner@aborted.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][256], [FAIL][257], [FAIL][258], [FAIL][259], [FAIL][260], [FAIL][261], [FAIL][262], [FAIL][263]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][264], [FAIL][265], [FAIL][266], [FAIL][267], [FAIL][268]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl3/igt@runner@aborted.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl7/igt@runner@aborted.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@runner@aborted.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@runner@aborted.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@runner@aborted.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@runner@aborted.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@runner@aborted.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3777]: https://gitlab.freedesktop.org/drm/intel/issues/3777
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4185]: https://gitlab.freedesktop.org/drm/intel/issues/4185
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
  [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5243]: https://gitlab.freedesktop.org/drm/intel/issues/5243
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5385]: https://gitlab.freedesktop.org/drm/intel/issues/5385
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6458 -> IGTPW_7017

  CI-20190529: 20190529
  CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
  IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 20:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-28  4:11   ` Zbigniew Kempczyński
  2022-04-28 15:31     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-28  4:11 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana

On Wed, Apr 27, 2022 at 08:33:29PM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  tests/i915/gem_softpin: Exercise single offset eviction on all    
>             engines (rev3)                                                    
>    URL:     https://patchwork.freedesktop.org/series/102154/                  
>    State:   failure                                                           
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html    
> 
>            CI Bug Log - changes from IGT_6458_full -> IGTPW_7017_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_7017_full absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_7017_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_7017/index.html
> 
> Participating hosts (10 -> 8)
> 
>    Missing (2): shard-skl shard-dg1
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_7017_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@gem_eio@kms:
> 
>           * shard-tglb: NOTRUN -> FAIL

This is unrelated.


>      * {igt@gem_softpin@evict-single-offset} (NEW):
> 
>           * shard-kbl: NOTRUN -> FAIL
> 
>           * shard-glk: NOTRUN -> FAIL
> 
>           * shard-apl: NOTRUN -> FAIL

This is I wanted to catch. I observe this behavior on the very beginning
of the test and we need to fill bug for it.


> 
>      * igt@prime_mmap_coherency@ioctl-errors:
> 
>           * shard-iclb: NOTRUN -> INCOMPLETE

This is unrelated.

--
Zbigniew

> 
> New tests
> 
>    New tests have been introduced between IGT_6458_full and IGTPW_7017_full:
> 
>   New IGT tests (1)
> 
>      * igt@gem_softpin@evict-single-offset:
>           * Statuses : 3 fail(s) 2 pass(s) 1 skip(s)
>           * Exec time: [0.0, 36.11] s
> 
> Known issues
> 
>    Here are the changes found in IGTPW_7017_full that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@feature_discovery@display-3x:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#1839)
>      * igt@feature_discovery@display-4x:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#1839) +1 similar issue
>      * igt@gem_create@create-massive:
> 
>           * shard-iclb: NOTRUN -> DMESG-WARN (i915#4991)
>      * igt@gem_ctx_isolation@preservation-s3@rcs0:
> 
>           * shard-kbl: NOTRUN -> DMESG-WARN (i915#180) +1 similar issue
>      * igt@gem_ctx_persistence@hostile:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099)
>      * igt@gem_ctx_sseu@invalid-sseu:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#280)
>      * igt@gem_eio@in-flight-immediate:
> 
>           * shard-tglb: PASS -> TIMEOUT (i915#3063)
>      * igt@gem_eio@unwedge-stress:
> 
>           * shard-iclb: PASS -> TIMEOUT (i915#3070)
>      * igt@gem_exec_balancer@parallel-balancer:
> 
>           * shard-iclb: PASS -> SKIP (i915#4525)
>      * igt@gem_exec_fair@basic-none@rcs0:
> 
>           * shard-kbl: NOTRUN -> FAIL (i915#2842) +1 similar issue
>      * igt@gem_exec_fair@basic-none@vcs0:
> 
>           * shard-tglb: NOTRUN -> FAIL (i915#2842) +4 similar issues
>      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>           * shard-iclb: NOTRUN -> FAIL (i915#2842)
> 
>           * shard-glk: NOTRUN -> FAIL (i915#2842)
> 
>      * igt@gem_exec_fair@basic-throttle@rcs0:
> 
>           * shard-iclb: PASS -> FAIL (i915#2849)
>      * igt@gem_exec_params@no-vebox:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109283)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109283 / i915#4877)
> 
>      * igt@gem_exec_suspend@basic-s3@smem:
> 
>           * shard-apl: PASS -> DMESG-WARN (i915#180)
>      * igt@gem_huc_copy@huc-copy:
> 
>           * shard-tglb: PASS -> SKIP (i915#2190)
>      * igt@gem_lmem_swapping@parallel-random:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#4613) +2 similar
>             issues
>      * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#4613) +1 similar
>             issue
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4613) +4 similar issues
> 
>      * igt@gem_lmem_swapping@smem-oom:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#4613) +5 similar
>             issues
>      * igt@gem_lmem_swapping@verify-ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#4613) +2 similar issues
>      * igt@gem_pwrite@basic-exhaustion:
> 
>           * shard-kbl: NOTRUN -> WARN (i915#2658)
> 
>           * shard-apl: NOTRUN -> WARN (i915#2658)
> 
>      * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4270) +3 similar issues
>      * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#4270) +1 similar issue
>      * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#768)
>      * igt@gem_softpin@evict-snoop:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109312)
>      * igt@gem_userptr_blits@unsync-unmap-cycles:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3297) +2 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3297) +2 similar issues
> 
>      * igt@gen7_exec_parse@cmd-crossing-page:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109289) +5 similar issues
>      * igt@gen9_exec_parse@batch-invalid-length:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2527 / i915#2856)
>      * igt@i915_pm_backlight@bad-brightness:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271) +112 similar issues
>      * igt@i915_pm_rc6_residency@rc6-idle:
> 
>           * shard-tglb: NOTRUN -> WARN (i915#2681)
> 
>           * shard-iclb: NOTRUN -> WARN (i915#2684)
> 
>      * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111644 / i915#1397 / i915#2411)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110892)
> 
>      * igt@i915_pm_rpm@fences:
> 
>           * shard-iclb: PASS -> INCOMPLETE (i915#4185)
>      * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5286) +3 similar issues
>      * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5286) +4 similar issues
>      * igt@kms_big_fb@linear-32bpp-rotate-90:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110725 / fdo#111614)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111614) +1 similar issue
> 
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#3777) +1 similar
>             issue
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#3777) +5 similar
>             issues
>      * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3777) +4 similar
>             issues
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271) +187 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110723) +1 similar issue
> 
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111615) +4 similar issues
>      * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3689) +12 similar issues
>      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +8 similar
>             issues
>      * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111615 / i915#3689) +3 similar
>             issues
>      * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#3886) +4 similar
>             issues
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#3886) +3 similar
>             issues
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +7 similar
>             issues
> 
>      * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#3886) +5 similar
>             issues
>      * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271) +158 similar issues
>      * igt@kms_cdclk@plane-scaling:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3742)
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3742)
> 
>      * igt@kms_chamelium@dp-hpd-storm:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +6 similar
>             issues
>      * igt@kms_chamelium@hdmi-hpd:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +4 similar
>             issues
>      * igt@kms_chamelium@vga-hpd:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +7 similar
>             issues
>      * igt@kms_color@pipe-d-ctm-0-25:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#1149) +1 similar
>             issue
>      * igt@kms_color_chamelium@pipe-a-degamma:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +18 similar
>             issues
>      * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +4 similar
>             issues
>      * igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109284 / fdo#111827)
>      * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +12 similar
>             issues
>      * igt@kms_content_protection@lic:
> 
>           * shard-apl: NOTRUN -> TIMEOUT (i915#1319) +1 similar issue
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109300 / fdo#111066) +1 similar
>             issue
> 
>           * shard-kbl: NOTRUN -> TIMEOUT (i915#1319)
> 
>      * igt@kms_content_protection@uevent:
> 
>           * shard-kbl: NOTRUN -> FAIL (i915#2105)
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#1063) +2 similar issues
> 
>           * shard-apl: NOTRUN -> FAIL (i915#2105)
> 
>      * igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3319)
>      * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109279 / i915#3359) +6 similar
>             issues
>      * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109279) +1 similar
>             issue
>      * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3359) +8 similar issues
>      * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109274 / fdo#109278)
>      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4103)
>      * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3528)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3528)
> 
>      * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5287) +1 similar issue
>      * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5287) +1 similar issue
>      * igt@kms_fbcon_fbt@fbc-suspend:
> 
>           * shard-glk: NOTRUN -> FAIL (i915#4767)
> 
>           * shard-kbl: NOTRUN -> INCOMPLETE (i915#180)
> 
>      * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109274) +4 similar issues
>      * igt@kms_flip@2x-flip-vs-suspend-interruptible:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825) +5 similar
>             issues
>      * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1:
> 
>           * shard-tglb: PASS -> DMESG-WARN (i915#2411)
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> 
>           * shard-iclb: PASS -> SKIP (i915#3701)
>      * igt@kms_force_connector_basic@force-load-detect:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109285)
>      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109280 / fdo#111825) +42 similar
>             issues
>      * igt@kms_frontbuffer_tracking@fbc-suspend:
> 
>           * shard-kbl: PASS -> DMESG-WARN (i915#180) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109280) +27 similar issues
>      * igt@kms_hdr@static-toggle-dpms:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3555) +1 similar issue
>      * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109289) +5 similar issues
>      * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#533)
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#533)
> 
>      * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>           * shard-glk: NOTRUN -> FAIL (i915#265)
> 
>           * shard-apl: NOTRUN -> FAIL (i915#265)
> 
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
> 
>           * shard-kbl: NOTRUN -> FAIL (fdo#108145 / i915#265) +2 similar
>             issues
> 
>           * shard-apl: NOTRUN -> FAIL (fdo#108145 / i915#265)
> 
>      * igt@kms_plane_lowres@pipe-c-tiling-x:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3536) +2 similar issues
>      * igt@kms_plane_lowres@pipe-d-tiling-4:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5288)
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271) +253 similar issues
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-edp-1-downscale-with-rotation:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5176) +2 similar issues
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5176) +7 similar issues
>      * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
> 
>           * shard-iclb: NOTRUN -> SKIP (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 (i915#5235) +7 similar issues
>      * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping:
> 
>           * shard-iclb: PASS -> SKIP (i915#5176)
>      * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2920)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#658)
> 
>      * igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#658) +1 similar
>             issue
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#658) +1 similar
>             issue
> 
>      * igt@kms_psr2_su@page_flip-p010:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#658)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109642 / fdo#111068 / i915#658)
> 
>      * igt@kms_psr@psr2_cursor_plane_onoff:
> 
>           * shard-tglb: NOTRUN -> FAIL (i915#132 / i915#3467) +3 similar
>             issues
>      * igt@kms_psr@psr2_dpms:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109441) +2 similar issues
>      * igt@kms_psr@psr2_no_drrs:
> 
>           * shard-iclb: PASS -> SKIP (fdo#109441) +1 similar issue
>      * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5289)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5289)
> 
>      * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278) +35 similar issues
>      * igt@kms_vblank@pipe-d-wait-idle:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#533) +1 similar
>             issue
>      * igt@kms_vrr@flip-basic:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3555)
>      * igt@kms_writeback@writeback-pixel-formats:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#2437)
>      * igt@nouveau_crc@pipe-c-source-rg:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#2530) +2 similar issues
>      * igt@nouveau_crc@pipe-d-source-rg:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2530) +2 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#2530)
> 
>      * igt@prime_nv_api@i915_nv_double_export:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109291) +1 similar issue
>      * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109291) +4 similar issues
>      * igt@prime_vgem@coherency-gtt:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111656)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109292)
> 
>      * igt@syncobj_timeline@transfer-timeline-point:
> 
>           * shard-iclb: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>           * shard-kbl: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>           * shard-tglb: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>      * igt@sysfs_clients@fair-3:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#2994) +5 similar
>             issues
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2994) +4 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#2994) +2 similar issues
> 
>      * igt@sysfs_clients@recycle-many:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) +3 similar
>             issues
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) +2 similar
>             issues
> 
>      * igt@tools_test@sysfs_l3_parity:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109307)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109307)
> 
>     Possible fixes
> 
>      * igt@drm_read@short-buffer-nonblock:
> 
>           * {shard-rkl}: SKIP (i915#4098) -> PASS
>      * igt@fbdev@unaligned-read:
> 
>           * {shard-rkl}: SKIP (i915#2582) -> PASS
>      * igt@gem_exec_create@madvise@smem:
> 
>           * {shard-rkl}: INCOMPLETE (i915#5385) -> PASS
>      * igt@gem_exec_fair@basic-flow@rcs0:
> 
>           * shard-tglb: FAIL (i915#2842) -> PASS +2 similar issues
>      * igt@gem_exec_fair@basic-none-solo@rcs0:
> 
>           * {shard-rkl}: FAIL (i915#2842) -> PASS
>      * igt@i915_pm_backlight@fade_with_suspend:
> 
>           * {shard-rkl}: SKIP (i915#3012) -> PASS
>      * igt@i915_pm_dc@dc5-psr:
> 
>           * {shard-rkl}: SKIP (i915#658) -> PASS
>      * igt@i915_pm_rpm@gem-execbuf:
> 
>           * {shard-rkl}: SKIP (fdo#109308) -> PASS
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> 
>           * {shard-rkl}: SKIP (i915#1845 / i915#4098) -> PASS +14 similar
>             issues
>      * igt@kms_color@pipe-c-invalid-degamma-lut-sizes:
> 
>           * {shard-rkl}: SKIP (i915#4070) -> PASS +4 similar issues
>      * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding:
> 
>           * {shard-rkl}: SKIP (fdo#112022 / i915#4070) -> PASS +4 similar
>             issues
>      * igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#4070 / i915#4098) -> PASS +3
>             similar issues
>      * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
> 
>           * {shard-rkl}: SKIP (i915#4070 / i915#4098) -> PASS
>      * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
> 
>           * {shard-rkl}: SKIP (fdo#111825 / i915#4070) -> PASS +3 similar
>             issues
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> 
>           * shard-glk: FAIL -> PASS
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> 
>           * shard-glk: FAIL (i915#2346 / i915#533) -> PASS
>      * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
> 
>           * {shard-rkl}: SKIP (i915#4098 / i915#4369) -> PASS
>      * igt@kms_draw_crc@fill-fb:
> 
>           * {shard-rkl}: SKIP (fdo#111314 / i915#4098 / i915#4369) -> PASS +1
>             similar issue
>      * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
> 
>           * shard-snb: DMESG-WARN (i915#5090) -> PASS
>      * igt@kms_flip@flip-vs-suspend@a-edp1:
> 
>           * shard-iclb: INCOMPLETE -> PASS
>      * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> 
>           * shard-iclb: SKIP (i915#3701) -> PASS
>      * igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a:
> 
>           * shard-apl: DMESG-WARN (i915#180) -> PASS +3 similar issues
>      * igt@kms_invalid_mode@uint-max-clock:
> 
>           * {shard-rkl}: SKIP (i915#4278) -> PASS
>      * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#4098) -> PASS +19 similar
>             issues
>      * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#3558) -> PASS +1 similar
>             issue
>      * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format:
> 
>           * shard-iclb: SKIP (i915#5176) -> PASS +2 similar issues
>      * igt@kms_properties@crtc-properties-legacy:
> 
>           * {shard-rkl}: SKIP (i915#1849) -> PASS
>      * igt@kms_psr@psr2_primary_mmap_cpu:
> 
>           * shard-iclb: SKIP (fdo#109441) -> PASS +2 similar issues
>      * igt@kms_psr@sprite_render:
> 
>           * {shard-rkl}: SKIP (i915#1072) -> PASS +1 similar issue
>      * igt@kms_rotation_crc@primary-rotation-180:
> 
>           * shard-glk: DMESG-FAIL (i915#118 / i915#1888) -> PASS
>      * igt@perf@polling-small-buf:
> 
>           * {shard-rkl}: FAIL (i915#1722) -> PASS
> 
>     Warnings
> 
>      * igt@gem_exec_balancer@parallel-ordering:
> 
>           * shard-iclb: SKIP (i915#4525) -> DMESG-FAIL (i915#5614)
>      * igt@gem_exec_balancer@parallel-out-fence:
> 
>           * shard-iclb: DMESG-WARN (i915#5614) -> SKIP (i915#4525) +2 similar
>             issues
>      * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
> 
>           * shard-iclb: INCOMPLETE (i915#5243) -> SKIP (i915#5176)
>      * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
> 
>           * shard-iclb: SKIP (i915#2920) -> SKIP (i915#658)
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> 
>           * shard-iclb: SKIP (fdo#111068 / i915#658) -> SKIP (i915#2920)
>      * igt@runner@aborted:
> 
>           * shard-kbl: (FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
>             FAIL, FAIL) (i915#4312 / i915#5257) -> (FAIL, FAIL, FAIL, FAIL,
>             FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL)
>             (fdo#109271 / i915#180 / i915#4312 / i915#5257 / i915#92)
> 
>           * shard-apl: (FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL)
>             (fdo#109271 / i915#180 / i915#3002 / i915#4312 / i915#5257) ->
>             (FAIL, FAIL, FAIL, FAIL, FAIL) (i915#180 / i915#3002 / i915#4312
>             / i915#5257)
> 
>    {name}: This element is suppressed. This means it is ignored when
>    computing
>    the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> Build changes
> 
>      * CI: CI-20190529 -> None
>      * IGT: IGT_6458 -> IGTPW_7017
> 
>    CI-20190529: 20190529
>    CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @
>    git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
>    IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-28  4:11   ` Zbigniew Kempczyński
@ 2022-04-28 15:31     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 14+ messages in thread
From: Vudum, Lakshminarayana @ 2022-04-28 15:31 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev

Comments below.

-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
Sent: Wednesday, April 27, 2022 9:12 PM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)

On Wed, Apr 27, 2022 at 08:33:29PM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  tests/i915/gem_softpin: Exercise single offset eviction on all    
>             engines (rev3)                                                    
>    URL:     https://patchwork.freedesktop.org/series/102154/                  
>    State:   failure                                                           
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html    
> 
>            CI Bug Log - changes from IGT_6458_full -> IGTPW_7017_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_7017_full absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_7017_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_7017/index.html
> 
> Participating hosts (10 -> 8)
> 
>    Missing (2): shard-skl shard-dg1
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_7017_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@gem_eio@kms:
> 
>           * shard-tglb: NOTRUN -> FAIL

This is unrelated.
[Lakshmi] This is related to https://gitlab.freedesktop.org/drm/intel/-/issues/5784
igt@gem_eio@[reset-stress|kms|unwedge-stress] - fail - Failed assertion: med < limit && max < 5 * limit


>      * {igt@gem_softpin@evict-single-offset} (NEW):
> 
>           * shard-kbl: NOTRUN -> FAIL
> 
>           * shard-glk: NOTRUN -> FAIL
> 
>           * shard-apl: NOTRUN -> FAIL

This is I wanted to catch. I observe this behavior on the very beginning of the test and we need to fill bug for it.

[Lakshmi] This test igt@gem_softpin@evict-single-offset is not in CI bug log yet and the failure looks similar to https://gitlab.freedesktop.org/drm/intel/-/issues/5196


> 
>      * igt@prime_mmap_coherency@ioctl-errors:
> 
>           * shard-iclb: NOTRUN -> INCOMPLETE

This is unrelated.

[Lakshmi]
This is related to https://gitlab.freedesktop.org/drm/intel/-/issues/5712
igt@i915_suspend@system-suspend-without-i915|igt@i915_pm_rpm@sysfs-read|igt@prime_mmap_coherency@ioctl-errors - incomplete - pstore logs - EXT4-fs (sda2): previous I/O error to superblock detected, Kernel Offset: disabled, dump_stack_lvl

--
Zbigniew

> 
> New tests
> 
>    New tests have been introduced between IGT_6458_full and IGTPW_7017_full:
> 
>   New IGT tests (1)
> 
>      * igt@gem_softpin@evict-single-offset:
>           * Statuses : 3 fail(s) 2 pass(s) 1 skip(s)
>           * Exec time: [0.0, 36.11] s
> 
> Known issues
> 
>    Here are the changes found in IGTPW_7017_full that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@feature_discovery@display-3x:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#1839)
>      * igt@feature_discovery@display-4x:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#1839) +1 similar issue
>      * igt@gem_create@create-massive:
> 
>           * shard-iclb: NOTRUN -> DMESG-WARN (i915#4991)
>      * igt@gem_ctx_isolation@preservation-s3@rcs0:
> 
>           * shard-kbl: NOTRUN -> DMESG-WARN (i915#180) +1 similar issue
>      * igt@gem_ctx_persistence@hostile:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099)
>      * igt@gem_ctx_sseu@invalid-sseu:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#280)
>      * igt@gem_eio@in-flight-immediate:
> 
>           * shard-tglb: PASS -> TIMEOUT (i915#3063)
>      * igt@gem_eio@unwedge-stress:
> 
>           * shard-iclb: PASS -> TIMEOUT (i915#3070)
>      * igt@gem_exec_balancer@parallel-balancer:
> 
>           * shard-iclb: PASS -> SKIP (i915#4525)
>      * igt@gem_exec_fair@basic-none@rcs0:
> 
>           * shard-kbl: NOTRUN -> FAIL (i915#2842) +1 similar issue
>      * igt@gem_exec_fair@basic-none@vcs0:
> 
>           * shard-tglb: NOTRUN -> FAIL (i915#2842) +4 similar issues
>      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>           * shard-iclb: NOTRUN -> FAIL (i915#2842)
> 
>           * shard-glk: NOTRUN -> FAIL (i915#2842)
> 
>      * igt@gem_exec_fair@basic-throttle@rcs0:
> 
>           * shard-iclb: PASS -> FAIL (i915#2849)
>      * igt@gem_exec_params@no-vebox:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109283)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109283 / i915#4877)
> 
>      * igt@gem_exec_suspend@basic-s3@smem:
> 
>           * shard-apl: PASS -> DMESG-WARN (i915#180)
>      * igt@gem_huc_copy@huc-copy:
> 
>           * shard-tglb: PASS -> SKIP (i915#2190)
>      * igt@gem_lmem_swapping@parallel-random:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#4613) +2 similar
>             issues
>      * igt@gem_lmem_swapping@parallel-random-verify-ccs:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#4613) +1 similar
>             issue
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4613) +4 similar issues
> 
>      * igt@gem_lmem_swapping@smem-oom:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#4613) +5 similar
>             issues
>      * igt@gem_lmem_swapping@verify-ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#4613) +2 similar issues
>      * igt@gem_pwrite@basic-exhaustion:
> 
>           * shard-kbl: NOTRUN -> WARN (i915#2658)
> 
>           * shard-apl: NOTRUN -> WARN (i915#2658)
> 
>      * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4270) +3 similar issues
>      * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#4270) +1 similar issue
>      * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#768)
>      * igt@gem_softpin@evict-snoop:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109312)
>      * igt@gem_userptr_blits@unsync-unmap-cycles:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3297) +2 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3297) +2 similar issues
> 
>      * igt@gen7_exec_parse@cmd-crossing-page:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109289) +5 similar issues
>      * igt@gen9_exec_parse@batch-invalid-length:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2527 / i915#2856)
>      * igt@i915_pm_backlight@bad-brightness:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271) +112 similar issues
>      * igt@i915_pm_rc6_residency@rc6-idle:
> 
>           * shard-tglb: NOTRUN -> WARN (i915#2681)
> 
>           * shard-iclb: NOTRUN -> WARN (i915#2684)
> 
>      * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111644 / i915#1397 / 
> i915#2411)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110892)
> 
>      * igt@i915_pm_rpm@fences:
> 
>           * shard-iclb: PASS -> INCOMPLETE (i915#4185)
>      * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5286) +3 similar issues
>      * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5286) +4 similar issues
>      * igt@kms_big_fb@linear-32bpp-rotate-90:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110725 / fdo#111614)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111614) +1 similar issue
> 
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#3777) +1 similar
>             issue
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#3777) +5 similar
>             issues
>      * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3777) +4 similar
>             issues
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271) +187 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#110723) +1 similar issue
> 
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111615) +4 similar issues
>      * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3689) +12 similar issues
>      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +8 similar
>             issues
>      * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111615 / i915#3689) +3 similar
>             issues
>      * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#3886) +4 similar
>             issues
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3689 / i915#3886) +3 similar
>             issues
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +7 similar
>             issues
> 
>      * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#3886) +5 similar
>             issues
>      * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271) +158 similar issues
>      * igt@kms_cdclk@plane-scaling:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3742)
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3742)
> 
>      * igt@kms_chamelium@dp-hpd-storm:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +6 similar
>             issues
>      * igt@kms_chamelium@hdmi-hpd:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +4 similar
>             issues
>      * igt@kms_chamelium@vga-hpd:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +7 similar
>             issues
>      * igt@kms_color@pipe-d-ctm-0-25:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#1149) +1 similar
>             issue
>      * igt@kms_color_chamelium@pipe-a-degamma:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +18 similar
>             issues
>      * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +4 similar
>             issues
>      * igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109284 / fdo#111827)
>      * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +12 similar
>             issues
>      * igt@kms_content_protection@lic:
> 
>           * shard-apl: NOTRUN -> TIMEOUT (i915#1319) +1 similar issue
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109300 / fdo#111066) +1 similar
>             issue
> 
>           * shard-kbl: NOTRUN -> TIMEOUT (i915#1319)
> 
>      * igt@kms_content_protection@uevent:
> 
>           * shard-kbl: NOTRUN -> FAIL (i915#2105)
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#1063) +2 similar issues
> 
>           * shard-apl: NOTRUN -> FAIL (i915#2105)
> 
>      * igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3319)
>      * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109279 / i915#3359) +6 similar
>             issues
>      * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109279) +1 similar
>             issue
>      * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3359) +8 similar issues
>      * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109274 / fdo#109278)
>      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#4103)
>      * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3528)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3528)
> 
>      * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5287) +1 similar issue
>      * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5287) +1 similar issue
>      * igt@kms_fbcon_fbt@fbc-suspend:
> 
>           * shard-glk: NOTRUN -> FAIL (i915#4767)
> 
>           * shard-kbl: NOTRUN -> INCOMPLETE (i915#180)
> 
>      * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109274) +4 similar issues
>      * igt@kms_flip@2x-flip-vs-suspend-interruptible:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109274 / fdo#111825) +5 similar
>             issues
>      * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1:
> 
>           * shard-tglb: PASS -> DMESG-WARN (i915#2411)
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> 
>           * shard-iclb: PASS -> SKIP (i915#3701)
>      * igt@kms_force_connector_basic@force-load-detect:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109285)
>      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109280 / fdo#111825) +42 similar
>             issues
>      * igt@kms_frontbuffer_tracking@fbc-suspend:
> 
>           * shard-kbl: PASS -> DMESG-WARN (i915#180) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109280) +27 similar issues
>      * igt@kms_hdr@static-toggle-dpms:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3555) +1 similar issue
>      * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109289) +5 similar issues
>      * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#533)
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#533)
> 
>      * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>           * shard-glk: NOTRUN -> FAIL (i915#265)
> 
>           * shard-apl: NOTRUN -> FAIL (i915#265)
> 
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
> 
>           * shard-kbl: NOTRUN -> FAIL (fdo#108145 / i915#265) +2 similar
>             issues
> 
>           * shard-apl: NOTRUN -> FAIL (fdo#108145 / i915#265)
> 
>      * igt@kms_plane_lowres@pipe-c-tiling-x:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#3536) +2 similar issues
>      * igt@kms_plane_lowres@pipe-d-tiling-4:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5288)
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271) +253 similar issues
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-edp-1-downscale-with-rotation:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5176) +2 similar issues
>      * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5176) +7 similar issues
>      * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
> 
>           * shard-iclb: NOTRUN -> SKIP (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 (i915#5235) +7 similar issues
>      * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping:
> 
>           * shard-iclb: PASS -> SKIP (i915#5176)
>      * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2920)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#658)
> 
>      * igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#658) +1 similar
>             issue
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#658) +1 similar
>             issue
> 
>      * igt@kms_psr2_su@page_flip-p010:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#658)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109642 / fdo#111068 / 
> i915#658)
> 
>      * igt@kms_psr@psr2_cursor_plane_onoff:
> 
>           * shard-tglb: NOTRUN -> FAIL (i915#132 / i915#3467) +3 similar
>             issues
>      * igt@kms_psr@psr2_dpms:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109441) +2 similar issues
>      * igt@kms_psr@psr2_no_drrs:
> 
>           * shard-iclb: PASS -> SKIP (fdo#109441) +1 similar issue
>      * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#5289)
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#5289)
> 
>      * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278) +35 similar issues
>      * igt@kms_vblank@pipe-d-wait-idle:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#533) +1 similar
>             issue
>      * igt@kms_vrr@flip-basic:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#3555)
>      * igt@kms_writeback@writeback-pixel-formats:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#2437)
>      * igt@nouveau_crc@pipe-c-source-rg:
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#2530) +2 similar issues
>      * igt@nouveau_crc@pipe-d-source-rg:
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2530) +2 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109278 / i915#2530)
> 
>      * igt@prime_nv_api@i915_nv_double_export:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109291) +1 similar issue
>      * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109291) +4 similar issues
>      * igt@prime_vgem@coherency-gtt:
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#111656)
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109292)
> 
>      * igt@syncobj_timeline@transfer-timeline-point:
> 
>           * shard-iclb: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>           * shard-kbl: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>           * shard-tglb: NOTRUN -> DMESG-FAIL (i915#5098)
> 
>      * igt@sysfs_clients@fair-3:
> 
>           * shard-kbl: NOTRUN -> SKIP (fdo#109271 / i915#2994) +5 similar
>             issues
> 
>           * shard-tglb: NOTRUN -> SKIP (i915#2994) +4 similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP (i915#2994) +2 similar issues
> 
>      * igt@sysfs_clients@recycle-many:
> 
>           * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) +3 similar
>             issues
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) +2 similar
>             issues
> 
>      * igt@tools_test@sysfs_l3_parity:
> 
>           * shard-iclb: NOTRUN -> SKIP (fdo#109307)
> 
>           * shard-tglb: NOTRUN -> SKIP (fdo#109307)
> 
>     Possible fixes
> 
>      * igt@drm_read@short-buffer-nonblock:
> 
>           * {shard-rkl}: SKIP (i915#4098) -> PASS
>      * igt@fbdev@unaligned-read:
> 
>           * {shard-rkl}: SKIP (i915#2582) -> PASS
>      * igt@gem_exec_create@madvise@smem:
> 
>           * {shard-rkl}: INCOMPLETE (i915#5385) -> PASS
>      * igt@gem_exec_fair@basic-flow@rcs0:
> 
>           * shard-tglb: FAIL (i915#2842) -> PASS +2 similar issues
>      * igt@gem_exec_fair@basic-none-solo@rcs0:
> 
>           * {shard-rkl}: FAIL (i915#2842) -> PASS
>      * igt@i915_pm_backlight@fade_with_suspend:
> 
>           * {shard-rkl}: SKIP (i915#3012) -> PASS
>      * igt@i915_pm_dc@dc5-psr:
> 
>           * {shard-rkl}: SKIP (i915#658) -> PASS
>      * igt@i915_pm_rpm@gem-execbuf:
> 
>           * {shard-rkl}: SKIP (fdo#109308) -> PASS
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> 
>           * {shard-rkl}: SKIP (i915#1845 / i915#4098) -> PASS +14 similar
>             issues
>      * igt@kms_color@pipe-c-invalid-degamma-lut-sizes:
> 
>           * {shard-rkl}: SKIP (i915#4070) -> PASS +4 similar issues
>      * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding:
> 
>           * {shard-rkl}: SKIP (fdo#112022 / i915#4070) -> PASS +4 similar
>             issues
>      * igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#4070 / i915#4098) -> PASS +3
>             similar issues
>      * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
> 
>           * {shard-rkl}: SKIP (i915#4070 / i915#4098) -> PASS
>      * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
> 
>           * {shard-rkl}: SKIP (fdo#111825 / i915#4070) -> PASS +3 similar
>             issues
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> 
>           * shard-glk: FAIL -> PASS
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> 
>           * shard-glk: FAIL (i915#2346 / i915#533) -> PASS
>      * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
> 
>           * {shard-rkl}: SKIP (i915#4098 / i915#4369) -> PASS
>      * igt@kms_draw_crc@fill-fb:
> 
>           * {shard-rkl}: SKIP (fdo#111314 / i915#4098 / i915#4369) -> PASS +1
>             similar issue
>      * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
> 
>           * shard-snb: DMESG-WARN (i915#5090) -> PASS
>      * igt@kms_flip@flip-vs-suspend@a-edp1:
> 
>           * shard-iclb: INCOMPLETE -> PASS
>      * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> 
>           * shard-iclb: SKIP (i915#3701) -> PASS
>      * igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a:
> 
>           * shard-apl: DMESG-WARN (i915#180) -> PASS +3 similar issues
>      * igt@kms_invalid_mode@uint-max-clock:
> 
>           * {shard-rkl}: SKIP (i915#4278) -> PASS
>      * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#4098) -> PASS +19 similar
>             issues
>      * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
> 
>           * {shard-rkl}: SKIP (i915#1849 / i915#3558) -> PASS +1 similar
>             issue
>      * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format:
> 
>           * shard-iclb: SKIP (i915#5176) -> PASS +2 similar issues
>      * igt@kms_properties@crtc-properties-legacy:
> 
>           * {shard-rkl}: SKIP (i915#1849) -> PASS
>      * igt@kms_psr@psr2_primary_mmap_cpu:
> 
>           * shard-iclb: SKIP (fdo#109441) -> PASS +2 similar issues
>      * igt@kms_psr@sprite_render:
> 
>           * {shard-rkl}: SKIP (i915#1072) -> PASS +1 similar issue
>      * igt@kms_rotation_crc@primary-rotation-180:
> 
>           * shard-glk: DMESG-FAIL (i915#118 / i915#1888) -> PASS
>      * igt@perf@polling-small-buf:
> 
>           * {shard-rkl}: FAIL (i915#1722) -> PASS
> 
>     Warnings
> 
>      * igt@gem_exec_balancer@parallel-ordering:
> 
>           * shard-iclb: SKIP (i915#4525) -> DMESG-FAIL (i915#5614)
>      * igt@gem_exec_balancer@parallel-out-fence:
> 
>           * shard-iclb: DMESG-WARN (i915#5614) -> SKIP (i915#4525) +2 similar
>             issues
>      * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
> 
>           * shard-iclb: INCOMPLETE (i915#5243) -> SKIP (i915#5176)
>      * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
> 
>           * shard-iclb: SKIP (i915#2920) -> SKIP (i915#658)
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> 
>           * shard-iclb: SKIP (fdo#111068 / i915#658) -> SKIP (i915#2920)
>      * igt@runner@aborted:
> 
>           * shard-kbl: (FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
>             FAIL, FAIL) (i915#4312 / i915#5257) -> (FAIL, FAIL, FAIL, FAIL,
>             FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL)
>             (fdo#109271 / i915#180 / i915#4312 / i915#5257 / i915#92)
> 
>           * shard-apl: (FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL)
>             (fdo#109271 / i915#180 / i915#3002 / i915#4312 / i915#5257) ->
>             (FAIL, FAIL, FAIL, FAIL, FAIL) (i915#180 / i915#3002 / i915#4312
>             / i915#5257)
> 
>    {name}: This element is suppressed. This means it is ignored when
>    computing
>    the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> Build changes
> 
>      * CI: CI-20190529 -> None
>      * IGT: IGT_6458 -> IGTPW_7017
> 
>    CI-20190529: 20190529
>    CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @
>    git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
>    IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
  2022-04-27 19:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
  2022-04-27 20:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-04-28 15:45 ` Patchwork
  2022-04-28 15:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-04-28 15:45 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
URL   : https://patchwork.freedesktop.org/series/102154/
State : success

== Summary ==

CI Bug Log - changes from IGT_6458 -> IGTPW_7017
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (2): fi-hsw-4770 fi-icl-u2 
  Missing    (2): fi-bsw-cyan fi-bdw-samus 

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

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

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_pm_rpm@module-reload:
    - {bat-rpls-2}:       NOTRUN -> [WARN][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-rpls-2/igt@i915_pm_rpm@module-reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][2] ([fdo#109271]) +9 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html
    - fi-icl-u2:          NOTRUN -> [SKIP][3] ([i915#2190])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

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

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

  * igt@kms_busy@basic@modeset:
    - bat-adlp-4:         [PASS][6] -> [DMESG-WARN][7] ([i915#3576])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/bat-adlp-4/igt@kms_busy@basic@modeset.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-adlp-4/igt@kms_busy@basic@modeset.html

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

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][9] ([fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/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][10] ([fdo#109278]) +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/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][11] ([fdo#109285])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

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

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

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

  * igt@prime_vgem@basic-userptr:
    - fi-icl-u2:          NOTRUN -> [SKIP][15] ([i915#3301])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-icl-u2/igt@prime_vgem@basic-userptr.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [DMESG-WARN][16] ([i915#62]) -> [PASS][17] +15 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gtt:
    - fi-bdw-5557u:       [DMESG-FAIL][18] ([i915#3674]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/fi-bdw-5557u/igt@i915_selftest@live@gtt.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/fi-bdw-5557u/igt@i915_selftest@live@gtt.html

  * igt@kms_busy@basic@flip:
    - {bat-adlp-6}:       [DMESG-WARN][20] ([i915#3576]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/bat-adlp-6/igt@kms_busy@basic@flip.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/bat-adlp-6/igt@kms_busy@basic@flip.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3674]: https://gitlab.freedesktop.org/drm/intel/issues/3674
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5087]: https://gitlab.freedesktop.org/drm/intel/issues/5087
  [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278
  [i915#5329]: https://gitlab.freedesktop.org/drm/intel/issues/5329
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5338]: https://gitlab.freedesktop.org/drm/intel/issues/5338
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6458 -> IGTPW_7017

  CI-20190529: 20190529
  CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
  IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@gem_softpin@evict-single-offset
-igt@gem_softpin@allocator-evict-all-engines

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2022-04-28 15:45 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2022-04-28 15:51 ` Patchwork
  2022-04-28 16:07 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Kamil Konieczny
  2022-04-28 18:24 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
  5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-04-28 15:51 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
URL   : https://patchwork.freedesktop.org/series/102154/
State : success

== Summary ==

CI Bug Log - changes from IGT_6458_full -> IGTPW_7017_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (10 -> 9)
------------------------------

  Missing    (1): shard-skl 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@gem_softpin@evict-single-offset} (NEW):
    - shard-kbl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@gem_softpin@evict-single-offset.html
    - shard-glk:          NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_softpin@evict-single-offset.html
    - shard-apl:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@gem_softpin@evict-single-offset.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][4] +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-dg1-13/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  
New tests
---------

  New tests have been introduced between IGT_6458_full and IGTPW_7017_full:

### New IGT tests (1) ###

  * igt@gem_softpin@evict-single-offset:
    - Statuses : 3 fail(s) 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 36.11] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@feature_discovery@display-4x:
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#1839]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@feature_discovery@display-4x.html

  * igt@gem_create@create-massive:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][7] ([i915#4991])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_create@create-massive.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][8] ([i915#180]) +1 similar issue
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@hostile:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb5/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-immediate:
    - shard-tglb:         [PASS][11] -> [TIMEOUT][12] ([i915#3063])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb7/igt@gem_eio@in-flight-immediate.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@gem_eio@in-flight-immediate.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#5784])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_eio@kms.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][14] -> [TIMEOUT][15] ([i915#3070])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_eio@unwedge-stress.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([i915#4525])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][18] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_exec_fair@basic-none@rcs0.html

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

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         NOTRUN -> [FAIL][20] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][21] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#2849])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109283])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][25] ([fdo#109283] / [i915#4877])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_suspend@basic-s3@smem:
    - shard-apl:          [PASS][26] -> [DMESG-WARN][27] ([i915#180])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][28] -> [SKIP][29] ([i915#2190])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_huc_copy@huc-copy.html

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

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#4613]) +4 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-kbl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#4613]) +5 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#4613]) +2 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][35] ([i915#2658])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][36] ([i915#2658])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#4270]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#4270]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#768])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109312])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([i915#3297]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#3297]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109289]) +5 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#2527] / [i915#2856])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][45] ([fdo#109271]) +112 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk2/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglb:         NOTRUN -> [WARN][46] ([i915#2681])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@i915_pm_rc6_residency@rc6-idle.html
    - shard-iclb:         NOTRUN -> [WARN][47] ([i915#2684])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#111644] / [i915#1397] / [i915#2411])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#110892])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@fences:
    - shard-iclb:         [PASS][50] -> [INCOMPLETE][51] ([i915#4185])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@i915_pm_rpm@fences.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@i915_pm_rpm@fences.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#5286]) +3 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

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

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#110725] / [fdo#111614])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_big_fb@linear-32bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111614]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3777]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271]) +187 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#110723]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#111615]) +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3689]) +12 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +8 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111615] / [i915#3689]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +4 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3689] / [i915#3886]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

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

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
    - shard-snb:          NOTRUN -> [SKIP][69] ([fdo#109271]) +158 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cdclk@plane-scaling:
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#3742])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cdclk@plane-scaling.html
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3742])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@dp-hpd-storm:
    - shard-iclb:         NOTRUN -> [SKIP][72] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_chamelium@dp-hpd-storm.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_chamelium@hdmi-hpd.html

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

  * igt@kms_color@pipe-d-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278] / [i915#1149]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_color@pipe-d-ctm-0-25.html

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

  * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
    - shard-snb:          NOTRUN -> [SKIP][77] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb7/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html

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

  * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([fdo#109284] / [fdo#111827]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][80] ([i915#1319]) +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_content_protection@lic.html
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_content_protection@lic.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][82] ([i915#1319])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> [FAIL][83] ([i915#2105])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#1063]) +2 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_content_protection@uevent.html
    - shard-apl:          NOTRUN -> [FAIL][85] ([i915#2105])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#3319])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-32x32-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([fdo#109279] / [i915#3359]) +6 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +8 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][90] ([fdo#109274] / [fdo#109278])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#4103])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#3528])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#3528])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

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

  * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#5287]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [FAIL][96] ([i915#4767])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][97] ([i915#180])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html

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

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([fdo#109274] / [fdo#111825]) +5 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1:
    - shard-tglb:         [PASS][100] -> [DMESG-WARN][101] ([i915#2411])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-iclb:         [PASS][102] -> [SKIP][103] ([i915#3701])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#109280] / [fdo#111825]) +42 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][106] -> [DMESG-WARN][107] ([i915#180]) +2 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109280]) +27 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][109] ([i915#3555]) +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109289]) +5 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#533])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#533])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][113] ([i915#265])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> [FAIL][114] ([i915#265])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][115] ([fdo#108145] / [i915#265]) +2 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][116] ([fdo#108145] / [i915#265])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-c-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][117] ([i915#3536]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#5288])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-4.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation:
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271]) +253 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation.html

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

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

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         NOTRUN -> [SKIP][122] ([i915#5235]) +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-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][123] ([i915#5235]) +7 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/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-a-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [PASS][124] -> [SKIP][125] ([i915#5176])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#2920])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][127] ([i915#658])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-apl:          NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#658]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_psr2_sf@cursor-plane-update-sf.html
    - shard-kbl:          NOTRUN -> [SKIP][129] ([fdo#109271] / [i915#658]) +1 similar issue
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-glk:          NOTRUN -> [SKIP][130] ([fdo#109271] / [i915#658])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_psr2_su@page_flip-p010.html
    - shard-iclb:         NOTRUN -> [SKIP][131] ([fdo#109642] / [fdo#111068] / [i915#658])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][132] ([i915#132] / [i915#3467]) +3 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         NOTRUN -> [SKIP][133] ([fdo#109441]) +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][134] -> [SKIP][135] ([fdo#109441]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglb:         NOTRUN -> [SKIP][136] ([i915#5289])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-iclb:         NOTRUN -> [SKIP][137] ([i915#5289])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#109278]) +35 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#533]) +1 similar issue
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-iclb:         NOTRUN -> [SKIP][140] ([i915#3555])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_vrr@flip-basic.html

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

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][142] ([i915#2530]) +2 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][143] ([i915#2530]) +2 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-iclb:         NOTRUN -> [SKIP][144] ([fdo#109278] / [i915#2530])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@prime_mmap_coherency@ioctl-errors:
    - shard-iclb:         NOTRUN -> [INCOMPLETE][145] ([i915#5712])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@prime_mmap_coherency@ioctl-errors.html

  * igt@prime_nv_api@i915_nv_double_export:
    - shard-iclb:         NOTRUN -> [SKIP][146] ([fdo#109291]) +1 similar issue
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@prime_nv_api@i915_nv_double_export.html

  * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
    - shard-tglb:         NOTRUN -> [SKIP][147] ([fdo#109291]) +4 similar issues
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][148] ([fdo#111656])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][149] ([fdo#109292])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@prime_vgem@coherency-gtt.html

  * igt@syncobj_timeline@transfer-timeline-point:
    - shard-iclb:         NOTRUN -> [DMESG-FAIL][150] ([i915#5098])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-kbl:          NOTRUN -> [DMESG-FAIL][151] ([i915#5098])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-tglb:         NOTRUN -> [DMESG-FAIL][152] ([i915#5098])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@syncobj_timeline@transfer-timeline-point.html

  * igt@sysfs_clients@fair-3:
    - shard-kbl:          NOTRUN -> [SKIP][153] ([fdo#109271] / [i915#2994]) +5 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@sysfs_clients@fair-3.html
    - shard-tglb:         NOTRUN -> [SKIP][154] ([i915#2994]) +4 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@sysfs_clients@fair-3.html
    - shard-iclb:         NOTRUN -> [SKIP][155] ([i915#2994]) +2 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> [SKIP][156] ([fdo#109271] / [i915#2994]) +3 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> [SKIP][157] ([fdo#109271] / [i915#2994]) +2 similar issues
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@sysfs_clients@recycle-many.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> [SKIP][158] ([fdo#109307])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@tools_test@sysfs_l3_parity.html
    - shard-tglb:         NOTRUN -> [SKIP][159] ([fdo#109307])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@drm_read@short-buffer-nonblock:
    - {shard-rkl}:        [SKIP][160] ([i915#4098]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@drm_read@short-buffer-nonblock.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html

  * igt@fbdev@unaligned-read:
    - {shard-rkl}:        [SKIP][162] ([i915#2582]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@fbdev@unaligned-read.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@fbdev@unaligned-read.html

  * igt@gem_exec_create@madvise@smem:
    - {shard-rkl}:        [INCOMPLETE][164] ([i915#5385]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@gem_exec_create@madvise@smem.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@gem_exec_create@madvise@smem.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][166] ([i915#2842]) -> [PASS][167] +2 similar issues
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - {shard-rkl}:        [FAIL][168] ([i915#2842]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@i915_pm_backlight@fade_with_suspend:
    - {shard-rkl}:        [SKIP][170] ([i915#3012]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@i915_pm_backlight@fade_with_suspend.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_backlight@fade_with_suspend.html

  * igt@i915_pm_dc@dc5-psr:
    - {shard-rkl}:        [SKIP][172] ([i915#658]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@i915_pm_dc@dc5-psr.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_rpm@gem-execbuf:
    - {shard-rkl}:        [SKIP][174] ([fdo#109308]) -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - {shard-rkl}:        [SKIP][176] ([i915#1845] / [i915#4098]) -> [PASS][177] +14 similar issues
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_color@pipe-c-invalid-degamma-lut-sizes:
    - {shard-rkl}:        [SKIP][178] ([i915#4070]) -> [PASS][179] +4 similar issues
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding:
    - {shard-rkl}:        [SKIP][180] ([fdo#112022] / [i915#4070]) -> [PASS][181] +4 similar issues
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html

  * igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge:
    - {shard-rkl}:        [SKIP][182] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][183] +3 similar issues
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-a-256x256-bottom-edge.html

  * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
    - {shard-rkl}:        [SKIP][184] ([i915#4070] / [i915#4098]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-3/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
    - {shard-rkl}:        [SKIP][186] ([fdo#111825] / [i915#4070]) -> [PASS][187] +3 similar issues
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][188] -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][190] ([i915#2346] / [i915#533]) -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled:
    - {shard-rkl}:        [SKIP][192] ([i915#4098] / [i915#4369]) -> [PASS][193]
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-4/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-render-untiled.html

  * igt@kms_draw_crc@fill-fb:
    - {shard-rkl}:        [SKIP][194] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][195] +1 similar issue
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_draw_crc@fill-fb.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_draw_crc@fill-fb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          [DMESG-WARN][196] ([i915#5090]) -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip@flip-vs-suspend@a-edp1:
    - shard-iclb:         [INCOMPLETE][198] -> [PASS][199]
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip@flip-vs-suspend@a-edp1.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_flip@flip-vs-suspend@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-iclb:         [SKIP][200] ([i915#3701]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a:
    - shard-apl:          [DMESG-WARN][202] ([i915#180]) -> [PASS][203] +3 similar issues
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html

  * igt@kms_invalid_mode@uint-max-clock:
    - {shard-rkl}:        [SKIP][204] ([i915#4278]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_invalid_mode@uint-max-clock.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
    - {shard-rkl}:        [SKIP][206] ([i915#1849] / [i915#4098]) -> [PASS][207] +19 similar issues
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b.html

  * igt@kms_plane@plane-panning-bottom-right@pipe-b-planes:
    - {shard-rkl}:        [SKIP][208] ([i915#1849] / [i915#3558]) -> [PASS][209] +1 similar issue
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-b-planes.html

  * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format:
    - shard-iclb:         [SKIP][210] ([i915#5176]) -> [PASS][211] +2 similar issues
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html

  * igt@kms_properties@crtc-properties-legacy:
    - {shard-rkl}:        [SKIP][212] ([i915#1849]) -> [PASS][213]
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_properties@crtc-properties-legacy.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][214] ([fdo#109441]) -> [PASS][215] +2 similar issues
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_psr@sprite_render:
    - {shard-rkl}:        [SKIP][216] ([i915#1072]) -> [PASS][217] +1 similar issue
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-2/igt@kms_psr@sprite_render.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@kms_psr@sprite_render.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-glk:          [DMESG-FAIL][218] ([i915#118] / [i915#1888]) -> [PASS][219]
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk5/igt@kms_rotation_crc@primary-rotation-180.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_rotation_crc@primary-rotation-180.html

  * igt@perf@polling-small-buf:
    - {shard-rkl}:        [FAIL][220] ([i915#1722]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@perf@polling-small-buf.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@perf@polling-small-buf.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][222] ([i915#4525]) -> [DMESG-FAIL][223] ([i915#5614])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [DMESG-WARN][224] ([i915#5614]) -> [SKIP][225] ([i915#4525]) +2 similar issues
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [INCOMPLETE][226] ([i915#5243]) -> [SKIP][227] ([i915#5176])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         [SKIP][230] ([fdo#111068] / [i915#658]) -> [SKIP][231] ([i915#2920])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][232], [FAIL][233], [FAIL][234], [FAIL][235], [FAIL][236], [FAIL][237], [FAIL][238], [FAIL][239], [FAIL][240], [FAIL][241], [FAIL][242]) ([i915#4312] / [i915#5257]) -> ([FAIL][243], [FAIL][244], [FAIL][245], [FAIL][246], [FAIL][247], [FAIL][248], [FAIL][249], [FAIL][250], [FAIL][251], [FAIL][252], [FAIL][253], [FAIL][254], [FAIL][255], [FAIL][256]) ([fdo#109271] / [i915#180] / [i915#4312] / [i915#5257] / [i915#92])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@runner@aborted.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl3/igt@runner@aborted.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl4/igt@runner@aborted.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@runner@aborted.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@runner@aborted.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][257], [FAIL][258], [FAIL][259], [FAIL][260], [FAIL][261], [FAIL][262], [FAIL][263], [FAIL][264]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][265], [FAIL][266], [FAIL][267], [FAIL][268], [FAIL][269]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl3/igt@runner@aborted.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl7/igt@runner@aborted.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@runner@aborted.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@runner@aborted.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@runner@aborted.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@runner@aborted.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@runner@aborted.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3777]: https://gitlab.freedesktop.org/drm/intel/issues/3777
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4185]: https://gitlab.freedesktop.org/drm/intel/issues/4185
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904
  [i915#4929]: https://gitlab.freedesktop.org/drm/intel/issues/4929
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
  [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5243]: https://gitlab.freedesktop.org/drm/intel/issues/5243
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5385]: https://gitlab.freedesktop.org/drm/intel/issues/5385
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
  [i915#5712]: https://gitlab.freedesktop.org/drm/intel/issues/5712
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6458 -> IGTPW_7017

  CI-20190529: 20190529
  CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7017: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/index.html
  IGT_6458: bcc26bd2b26220147b00f87d91e2ff1d4bd3ce5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
                   ` (3 preceding siblings ...)
  2022-04-28 15:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2022-04-28 16:07 ` Kamil Konieczny
  2022-04-29  4:51   ` Zbigniew Kempczyński
  2022-04-28 18:24 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
  5 siblings, 1 reply; 14+ messages in thread
From: Kamil Konieczny @ 2022-04-28 16:07 UTC (permalink / raw)
  To: igt-dev; +Cc: Thomas Hellström

Hi Zbigniew,

On 2022-04-27 at 20:42:04 +0200, Zbigniew Kempczyński wrote:
> Verify that eviction works when all engines try to use same offset for
> different handles. It replaces allocator-evict-all-engines test because
> it is simpler.
> 
> v2: addressing review comments (Kamil)
> v3: simplifying subtest (Chris)
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  tests/i915/gem_softpin.c | 76 ++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 74 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> index 448b4c4b9e..7dae2a6c44 100644
> --- a/tests/i915/gem_softpin.c
> +++ b/tests/i915/gem_softpin.c
> @@ -1073,6 +1073,77 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
>  	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
>  }
>  
> +#define MINIMAL_OFFSET 0x200000
> +static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
> +				 struct batch *batches, unsigned int count)
> +{
> +	struct drm_i915_gem_exec_object2 obj = {
> +		.offset = max_t(uint64_t, gem_detect_safe_start_offset(fd), MINIMAL_OFFSET),

imho this should be a parameter to this function, so it will be
calculated once but you can leave it here, your choice.

> +		.flags = EXEC_OBJECT_PINNED,
> +	};
> +
> +	eb->buffers_ptr = to_user_pointer(&obj);
> +
> +	for (unsigned int i = 0; i < count; i++) {
> +		obj.handle = batches[i].handle;
> +		gem_execbuf(fd, eb);
> +	}
> +}
> +
> +static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
> +{
> +	struct drm_i915_gem_execbuffer2 execbuf;
> +	struct intel_execution_engine2 *e;
> +	unsigned int engines[I915_EXEC_RING_MASK + 1];
> +	struct batch *batches;
> +	unsigned int nengine;
> +	unsigned int count;
> +	uint64_t size, batch_size = BATCH_SIZE;
> +
> +	nengine = 0;
> +	for_each_ctx_engine(fd, ctx, e) {
> +		engines[nengine++] = e->flags;
> +	}
> +	igt_require(nengine);
> +
> +	size = gem_aperture_size(fd);
> +	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
> +		size = 1ull << 32;
> +	igt_require(size < (1ull<<32) * BATCH_SIZE);
> +
> +	count = size / BATCH_SIZE + 1;
> +	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
> +		  count, (long long)size, nengine);

Please add here print for timeout used and also change printing
size to MB.

> +
> +	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
> +	intel_detect_and_clear_missed_interrupts(fd);
> +
> +	memset(&execbuf, 0, sizeof(execbuf));
> +	execbuf.buffer_count = 1;
> +	execbuf.rsvd1 = ctx->id;
> +
> +	batches = calloc(count, sizeof(*batches));
> +	igt_assert(batches);
> +	for (unsigned int i = 0; i < count; i++)
> +		batches[i].handle = batch_create(fd, &batch_size);
> +
> +	/* Flush all memory before we start the timer */
> +	single_offset_submit(fd, &execbuf, batches, count);
> +
> +	igt_fork(child, nengine) {
> +		execbuf.flags |= engines[child];
> +		igt_until_timeout(timeout)
> +			single_offset_submit(fd, &execbuf, batches, count);
> +	}
> +	igt_waitchildren();
> +
> +	for (unsigned int i = 0; i < count; i++)
> +		gem_close(fd, batches[i].handle);
> +	free(batches);
> +
> +	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> +}
> +
>  static void make_batch(int i915, uint32_t handle, uint64_t size)
>  {
>  	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
> @@ -1213,8 +1284,9 @@ igt_main
>  		test_each_engine("allocator-evict", fd, ctx, e)
>  			test_allocator_evict(fd, ctx, e->flags, 20);
>  
> -		igt_subtest("allocator-evict-all-engines")
> -			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
> +		igt_describe("Use same offset for all engines and for different handles");
> +		igt_subtest("evict-single-offset")
> +			evict_single_offset(fd, ctx, 20);

You are not using allocator here, so maybe move this down after
evict-hog sibtest ?

With that small changes you can add my r-b tag.

Regards,
Kamil
>  	}
>  
>  	igt_describe("Check start offset and alignment detection");
> -- 
> 2.32.0
> 

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
  2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
                   ` (4 preceding siblings ...)
  2022-04-28 16:07 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Kamil Konieczny
@ 2022-04-28 18:24 ` Patchwork
  5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-04-28 18:24 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3)
URL   : https://patchwork.freedesktop.org/series/102154/
State : success

== Summary ==

CI Bug Log - changes from IGT_6458_full -> IGTPW_7017_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (10 -> 9)
------------------------------

  Missing    (1): shard-skl 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@gem_softpin@evict-single-offset} (NEW):
    - shard-kbl:          NOTRUN -> ([FAIL][1], [FAIL][2])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@gem_softpin@evict-single-offset.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@gem_softpin@evict-single-offset.html
    - shard-glk:          NOTRUN -> ([FAIL][3], [FAIL][4])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@gem_softpin@evict-single-offset.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_softpin@evict-single-offset.html
    - shard-apl:          NOTRUN -> ([FAIL][5], [FAIL][6])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@gem_softpin@evict-single-offset.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@gem_softpin@evict-single-offset.html

  * {igt@kms_concurrent@pipe-c@hdmi-a-3} (NEW):
    - {shard-dg1}:        NOTRUN -> [CRASH][7]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-dg1-18/igt@kms_concurrent@pipe-c@hdmi-a-3.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_exec_flush@basic-batch-kernel-default-wb:
    - {shard-rkl}:        [PASS][8] -> ([DMESG-WARN][9], [PASS][10])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html

  * igt@gem_exec_suspend@basic-s3-devices@smem:
    - {shard-dg1}:        NOTRUN -> [INCOMPLETE][11] +4 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-dg1-19/igt@gem_exec_suspend@basic-s3-devices@smem.html

  * igt@gem_tiled_swapping@non-threaded:
    - {shard-rkl}:        NOTRUN -> ([PASS][12], [INCOMPLETE][13])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - {shard-dg1}:        NOTRUN -> ([INCOMPLETE][14], [INCOMPLETE][15]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-dg1-18/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-dg1-13/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  
New tests
---------

  New tests have been introduced between IGT_6458_full and IGTPW_7017_full:

### New IGT tests (2) ###

  * igt@gem_softpin@evict-single-offset:
    - Statuses : 6 fail(s) 6 pass(s) 2 skip(s)
    - Exec time: [0.0, 36.11] s

  * igt@kms_concurrent@pipe-c@hdmi-a-3:
    - Statuses : 1 crash(s)
    - Exec time: [0.03] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-3x:
    - shard-iclb:         NOTRUN -> ([SKIP][16], [SKIP][17]) ([i915#1839])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@feature_discovery@display-3x.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@feature_discovery@display-3x.html
    - shard-tglb:         NOTRUN -> [SKIP][18] ([i915#1839])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@feature_discovery@display-3x.html

  * igt@feature_discovery@display-4x:
    - shard-tglb:         NOTRUN -> ([SKIP][19], [SKIP][20]) ([i915#1839])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@feature_discovery@display-4x.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@feature_discovery@display-4x.html

  * igt@gem_create@create-massive:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][21] ([i915#4991])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_create@create-massive.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-kbl:          NOTRUN -> ([DMESG-WARN][22], [PASS][23]) ([i915#180])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@hostile:
    - shard-snb:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb5/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglb:         NOTRUN -> ([SKIP][25], [SKIP][26]) ([i915#280])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gem_ctx_sseu@invalid-sseu.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@in-flight-immediate:
    - shard-tglb:         [PASS][27] -> ([TIMEOUT][28], [PASS][29]) ([i915#3063])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb7/igt@gem_eio@in-flight-immediate.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@gem_eio@in-flight-immediate.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@gem_eio@in-flight-immediate.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> ([FAIL][30], [FAIL][31]) ([i915#5784])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gem_eio@kms.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_eio@kms.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][32] -> ([TIMEOUT][33], [TIMEOUT][34]) ([i915#3070])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_eio@unwedge-stress.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_eio@unwedge-stress.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][35] -> [SKIP][36] ([i915#4525])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][37] ([i915#2842]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_exec_fair@basic-none@rcs0.html

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

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         NOTRUN -> ([FAIL][39], [FAIL][40]) ([i915#2842])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
    - shard-glk:          NOTRUN -> ([FAIL][41], [FAIL][42]) ([i915#2842])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][43] -> ([FAIL][44], [FAIL][45]) ([i915#2842] / [i915#2849])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-snb:          [PASS][46] -> ([PASS][47], [SKIP][48]) ([fdo#109271]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-snb4/igt@gem_exec_flush@basic-uc-set-default.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb5/igt@gem_exec_flush@basic-uc-set-default.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb6/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> ([SKIP][49], [SKIP][50]) ([fdo#109283])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_exec_params@no-vebox.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#109283] / [i915#4877])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_suspend@basic-s3@smem:
    - shard-apl:          [PASS][52] -> ([DMESG-WARN][53], [PASS][54]) ([i915#180]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@gem_exec_suspend@basic-s3@smem.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@gem_exec_suspend@basic-s3@smem.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][55] -> [SKIP][56] ([i915#2190])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb3/igt@gem_huc_copy@huc-copy.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-apl:          NOTRUN -> ([SKIP][57], [SKIP][58]) ([fdo#109271] / [i915#4613]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@gem_lmem_swapping@parallel-random.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@gem_lmem_swapping@parallel-random.html
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#4613]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-glk:          NOTRUN -> ([SKIP][60], [SKIP][61]) ([fdo#109271] / [i915#4613]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> ([SKIP][62], [SKIP][63]) ([i915#4613]) +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-kbl:          NOTRUN -> ([SKIP][64], [SKIP][65]) ([fdo#109271] / [i915#4613]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@gem_lmem_swapping@smem-oom.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@gem_lmem_swapping@smem-oom.html
    - shard-iclb:         NOTRUN -> ([SKIP][66], [SKIP][67]) ([i915#4613]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@gem_lmem_swapping@smem-oom.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_lmem_swapping@verify-ccs:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([i915#4613])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@gem_lmem_swapping@verify-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#4613])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-kbl:          NOTRUN -> [WARN][70] ([i915#2658])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> ([WARN][71], [WARN][72]) ([i915#2658])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@gem_pwrite@basic-exhaustion.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> ([SKIP][73], [SKIP][74]) ([i915#4270]) +3 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-iclb:         NOTRUN -> ([SKIP][75], [SKIP][76]) ([i915#4270]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-iclb:         NOTRUN -> ([SKIP][77], [SKIP][78]) ([i915#768])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> ([SKIP][79], [SKIP][80]) ([fdo#109312])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_softpin@evict-snoop.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@access-control:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([i915#3297])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-tglb:         NOTRUN -> ([SKIP][82], [SKIP][83]) ([i915#3297]) +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-iclb:         NOTRUN -> ([SKIP][84], [SKIP][85]) ([i915#3297]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> ([SKIP][86], [SKIP][87]) ([fdo#109289]) +5 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@gen7_exec_parse@cmd-crossing-page.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-kbl:          NOTRUN -> ([DMESG-WARN][88], [PASS][89]) ([i915#5566] / [i915#716])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@gen9_exec_parse@allowed-single.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-tglb:         NOTRUN -> ([SKIP][90], [SKIP][91]) ([i915#2527] / [i915#2856])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gen9_exec_parse@batch-invalid-length.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> ([SKIP][92], [SKIP][93]) ([fdo#109271]) +100 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@i915_pm_backlight@bad-brightness.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk2/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglb:         NOTRUN -> ([WARN][94], [WARN][95]) ([i915#2681])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@i915_pm_rc6_residency@rc6-idle.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@i915_pm_rc6_residency@rc6-idle.html
    - shard-iclb:         NOTRUN -> [WARN][96] ([i915#2684])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([fdo#111644] / [i915#1397] / [i915#2411])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
    - shard-iclb:         NOTRUN -> ([SKIP][98], [SKIP][99]) ([fdo#110892])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@fences:
    - shard-iclb:         [PASS][100] -> ([INCOMPLETE][101], [PASS][102]) ([i915#4185])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@i915_pm_rpm@fences.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@i915_pm_rpm@fences.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@i915_pm_rpm@fences.html

  * igt@i915_suspend@debugfs-reader:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][103] ([i915#180])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@i915_suspend@debugfs-reader.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#5286])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> ([SKIP][105], [SKIP][106]) ([i915#5286]) +2 similar issues
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglb:         NOTRUN -> ([SKIP][107], [SKIP][108]) ([i915#5286]) +4 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-iclb:         NOTRUN -> ([SKIP][109], [SKIP][110]) ([fdo#110725] / [fdo#111614])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_big_fb@linear-32bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> ([SKIP][111], [SKIP][112]) ([fdo#111614]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#3777]) +2 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-glk:          NOTRUN -> ([SKIP][114], [SKIP][115]) ([fdo#109271] / [i915#3777]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#3777]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> ([SKIP][117], [SKIP][118]) ([fdo#109271] / [i915#3777]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-tglb:         [PASS][119] -> ([PASS][120], [FAIL][121]) ([i915#3743])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-apl:          NOTRUN -> ([SKIP][122], [SKIP][123]) ([fdo#109271] / [i915#3777]) +1 similar issue
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> ([SKIP][124], [SKIP][125]) ([fdo#109271]) +144 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> ([SKIP][126], [SKIP][127]) ([fdo#110723]) +1 similar issue
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-tglb:         NOTRUN -> [SKIP][128] ([fdo#111615])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> ([SKIP][129], [SKIP][130]) ([fdo#111615]) +3 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][131] ([i915#3689]) +2 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> ([SKIP][132], [SKIP][133]) ([i915#3689]) +9 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> ([SKIP][134], [SKIP][135]) ([fdo#109271] / [i915#3886]) +4 similar issues
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> ([SKIP][136], [SKIP][137]) ([fdo#111615] / [i915#3689]) +3 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#3886]) +3 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> ([SKIP][139], [SKIP][140]) ([fdo#109271] / [i915#3886]) +4 similar issues
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> ([SKIP][141], [SKIP][142]) ([i915#3689] / [i915#3886]) +3 similar issues
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
    - shard-apl:          NOTRUN -> ([SKIP][143], [SKIP][144]) ([fdo#109271] / [i915#3886]) +7 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> ([SKIP][145], [SKIP][146]) ([fdo#109278] / [i915#3886]) +3 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
    - shard-snb:          NOTRUN -> ([SKIP][147], [SKIP][148]) ([fdo#109271]) +137 similar issues
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb2/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][149] ([fdo#109278] / [i915#3886]) +1 similar issue
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cdclk@plane-scaling:
    - shard-iclb:         NOTRUN -> ([SKIP][150], [SKIP][151]) ([i915#3742])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_cdclk@plane-scaling.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cdclk@plane-scaling.html
    - shard-tglb:         NOTRUN -> ([SKIP][152], [SKIP][153]) ([i915#3742])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cdclk@plane-scaling.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@dp-hpd-storm:
    - shard-iclb:         NOTRUN -> ([SKIP][154], [SKIP][155]) ([fdo#109284] / [fdo#111827]) +6 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_chamelium@dp-hpd-storm.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_chamelium@dp-hpd-storm.html
    - shard-glk:          NOTRUN -> [SKIP][156] ([fdo#109271] / [fdo#111827])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk5/igt@kms_chamelium@dp-hpd-storm.html
    - shard-apl:          NOTRUN -> [SKIP][157] ([fdo#109271] / [fdo#111827])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@kms_chamelium@dp-hpd-storm.html

  * igt@kms_chamelium@hdmi-hpd:
    - shard-glk:          NOTRUN -> ([SKIP][158], [SKIP][159]) ([fdo#109271] / [fdo#111827]) +3 similar issues
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@kms_chamelium@hdmi-hpd.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_chamelium@hdmi-hpd.html

  * igt@kms_chamelium@vga-hpd:
    - shard-apl:          NOTRUN -> ([SKIP][160], [SKIP][161]) ([fdo#109271] / [fdo#111827]) +6 similar issues
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_chamelium@vga-hpd.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color@pipe-d-ctm-0-25:
    - shard-glk:          NOTRUN -> [SKIP][162] ([fdo#109271]) +11 similar issues
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk8/igt@kms_color@pipe-d-ctm-0-25.html
    - shard-iclb:         NOTRUN -> ([SKIP][163], [SKIP][164]) ([fdo#109278] / [i915#1149])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_color@pipe-d-ctm-0-25.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_color@pipe-d-ctm-0-25.html

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

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

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

  * igt@kms_color_chamelium@pipe-c-ctm-green-to-red:
    - shard-snb:          NOTRUN -> ([SKIP][169], [SKIP][170]) ([fdo#109271] / [fdo#111827]) +4 similar issues
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb7/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb2/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html
    - shard-tglb:         NOTRUN -> [SKIP][171] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_color_chamelium@pipe-c-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
    - shard-iclb:         NOTRUN -> ([SKIP][172], [SKIP][173]) ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
    - shard-tglb:         NOTRUN -> ([SKIP][174], [SKIP][175]) ([fdo#109284] / [fdo#111827]) +10 similar issues
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html

  * igt@kms_content_protection@legacy:
    - shard-apl:          NOTRUN -> ([TIMEOUT][176], [TIMEOUT][177]) ([i915#1319])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_content_protection@legacy.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic:
    - shard-apl:          NOTRUN -> [TIMEOUT][178] ([i915#1319])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_content_protection@lic.html
    - shard-iclb:         NOTRUN -> ([SKIP][179], [SKIP][180]) ([fdo#109300] / [fdo#111066]) +1 similar issue
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_content_protection@lic.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_content_protection@lic.html
    - shard-tglb:         NOTRUN -> ([SKIP][181], [SKIP][182]) ([i915#1063])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@kms_content_protection@lic.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_content_protection@lic.html
    - shard-kbl:          NOTRUN -> ([TIMEOUT][183], [TIMEOUT][184]) ([i915#1319])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@kms_content_protection@lic.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> ([FAIL][185], [FAIL][186]) ([i915#2105])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_content_protection@uevent.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][187] ([i915#1063]) +1 similar issue
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_content_protection@uevent.html
    - shard-apl:          NOTRUN -> ([FAIL][188], [FAIL][189]) ([i915#2105])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_content_protection@uevent.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> ([SKIP][190], [SKIP][191]) ([fdo#109278] / [fdo#109279])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-random.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-kbl:          [PASS][192] -> ([DMESG-WARN][193], [PASS][194]) ([i915#180]) +1 similar issue
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][195] ([i915#3359]) +1 similar issue
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-32x10-rapid-movement.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x32-random:
    - shard-tglb:         NOTRUN -> ([SKIP][196], [SKIP][197]) ([i915#3319])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-32x32-random.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-32x32-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
    - shard-tglb:         NOTRUN -> ([SKIP][198], [SKIP][199]) ([fdo#109279] / [i915#3359]) +4 similar issues
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][200] ([fdo#109278] / [fdo#109279])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> ([SKIP][201], [SKIP][202]) ([i915#3359]) +6 similar issues
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
    - shard-iclb:         NOTRUN -> [SKIP][203] ([fdo#109278]) +2 similar issues
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-random:
    - shard-tglb:         NOTRUN -> [SKIP][204] ([fdo#109279] / [i915#3359]) +1 similar issue
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-random.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-iclb:         NOTRUN -> ([SKIP][205], [SKIP][206]) ([fdo#109274] / [fdo#109278])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-iclb:         [PASS][207] -> ([PASS][208], [FAIL][209]) ([i915#2346])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> ([SKIP][210], [SKIP][211]) ([i915#4103])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> ([SKIP][212], [SKIP][213]) ([i915#3528])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> ([SKIP][214], [SKIP][215]) ([i915#3528])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled:
    - shard-iclb:         NOTRUN -> ([SKIP][216], [SKIP][217]) ([i915#5287]) +1 similar issue
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled.html
    - shard-tglb:         NOTRUN -> ([SKIP][218], [SKIP][219]) ([i915#5287])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-4tiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][220] ([i915#5287])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          NOTRUN -> ([PASS][221], [INCOMPLETE][222]) ([i915#180])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-glk:          NOTRUN -> ([FAIL][223], [FAIL][224]) ([i915#4767])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][225] ([i915#180])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-iclb:         NOTRUN -> [SKIP][226] ([fdo#109274])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-iclb:         NOTRUN -> ([SKIP][227], [SKIP][228]) ([fdo#109274]) +3 similar issues
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-tglb:         NOTRUN -> ([SKIP][229], [SKIP][230]) ([fdo#109274] / [fdo#111825]) +5 similar issues
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1:
    - shard-tglb:         [PASS][231] -> [DMESG-WARN][232] ([i915#2411])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
    - shard-iclb:         [PASS][233] -> ([DMESG-WARN][234], [PASS][235]) ([i915#2867])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb3/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-iclb:         [PASS][236] -> ([PASS][237], [SKIP][238]) ([i915#3701])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-tglb:         NOTRUN -> ([SKIP][239], [SKIP][240]) ([fdo#109285])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@kms_force_connector_basic@force-load-detect.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
    - shard-tglb:         NOTRUN -> [SKIP][241] ([fdo#109280] / [fdo#111825]) +7 similar issues
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][242] -> [DMESG-WARN][243] ([i915#180])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-iclb:         NOTRUN -> [SKIP][244] ([fdo#109280])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-iclb:         NOTRUN -> ([SKIP][245], [SKIP][246]) ([fdo#109280]) +26 similar issues
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-apl:          NOTRUN -> [SKIP][247] ([fdo#109271]) +42 similar issues
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> ([SKIP][248], [SKIP][249]) ([fdo#109280] / [fdo#111825]) +34 similar issues
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-tglb:         NOTRUN -> ([SKIP][250], [SKIP][251]) ([i915#3555]) +1 similar issue
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_hdr@static-toggle-dpms.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
    - shard-iclb:         NOTRUN -> ([SKIP][252], [SKIP][253]) ([fdo#109289]) +3 similar issues
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-iclb:         NOTRUN -> [SKIP][254] ([fdo#109289]) +1 similar issue
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - shard-apl:          NOTRUN -> ([SKIP][255], [SKIP][256]) ([fdo#109271] / [i915#533])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - shard-glk:          NOTRUN -> ([SKIP][257], [SKIP][258]) ([fdo#109271] / [i915#533])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
    - shard-kbl:          NOTRUN -> ([SKIP][259], [SKIP][260]) ([fdo#109271] / [i915#533])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-glk:          NOTRUN -> ([FAIL][261], [FAIL][262]) ([i915#265])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-apl:          NOTRUN -> ([FAIL][263], [FAIL][264]) ([i915#265])
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> ([FAIL][265], [FAIL][266]) ([fdo#108145] / [i915#265]) +2 similar issues
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> ([FAIL][267], [FAIL][268]) ([fdo#108145] / [i915#265])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-c-tiling-x:
    - shard-tglb:         NOTRUN -> ([SKIP][269], [SKIP][270]) ([i915#3536]) +1 similar issue
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_plane_lowres@pipe-c-tiling-x.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_plane_lowres@pipe-c-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-4:
    - shard-tglb:         NOTRUN -> ([SKIP][271], [SKIP][272]) ([i915#5288])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-4.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-4.html

  * igt@kms_plane_lowres@pipe-d-tiling-none:
    - shard-tglb:         NOTRUN -> [SKIP][273] ([i915#3536])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_plane_lowres@pipe-d-tiling-none.html

  * igt@kms_plane_multiple@atomic-pipe-d-tiling-x:
    - shard-kbl:          NOTRUN -> [SKIP][274] ([fdo#109271]) +129 similar issues
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@kms_plane_multiple@atomic-pipe-d-tiling-x.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation:
    - shard-kbl:          NOTRUN -> ([SKIP][275], [SKIP][276]) ([fdo#109271]) +144 similar issues
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-dp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-edp-1-downscale-with-rotation:
    - shard-iclb:         NOTRUN -> ([SKIP][277], [SKIP][278]) ([i915#5176]) +2 similar issues
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-edp-1-downscale-with-rotation.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-a-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> ([SKIP][279], [SKIP][280]) ([i915#5176]) +7 similar issues
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         NOTRUN -> ([SKIP][281], [SKIP][282]) ([i915#5235]) +2 similar issues
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-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][283], [SKIP][284]) ([i915#5235]) +7 similar issues
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/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-a-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [PASS][285] -> ([PASS][286], [SKIP][287]) ([i915#5176])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-a-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format:
    - shard-iclb:         [PASS][288] -> ([INCOMPLETE][289], [PASS][290]) ([i915#5395])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-edp-1-scaler-with-pixel-format.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-tglb:         NOTRUN -> ([SKIP][291], [SKIP][292]) ([i915#2920])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
    - shard-iclb:         NOTRUN -> ([SKIP][293], [SKIP][294]) ([i915#658])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-apl:          NOTRUN -> ([SKIP][295], [SKIP][296]) ([fdo#109271] / [i915#658]) +1 similar issue
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@kms_psr2_sf@cursor-plane-update-sf.html
    - shard-kbl:          NOTRUN -> [SKIP][297] ([fdo#109271] / [i915#658]) +1 similar issue
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-glk:          NOTRUN -> ([SKIP][298], [SKIP][299]) ([fdo#109271] / [i915#658])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_psr2_su@page_flip-p010.html
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_psr2_su@page_flip-p010.html
    - shard-iclb:         NOTRUN -> ([SKIP][300], [SKIP][301]) ([fdo#109642] / [fdo#111068] / [i915#658])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr2_su@page_flip-p010.html
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][302] ([i915#132] / [i915#3467])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_psr@psr2_dpms:
    - shard-tglb:         NOTRUN -> ([FAIL][303], [FAIL][304]) ([i915#132] / [i915#3467]) +2 similar issues
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_psr@psr2_dpms.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@kms_psr@psr2_dpms.html
    - shard-iclb:         NOTRUN -> ([PASS][305], [SKIP][306]) ([fdo#109441]) +1 similar issue
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr@psr2_dpms.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr@psr2_dpms.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][307] -> ([SKIP][308], [SKIP][309]) ([fdo#109441]) +1 similar issue
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         NOTRUN -> ([SKIP][310], [SKIP][311]) ([fdo#109441])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr@psr2_primary_blt.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-iclb:         [PASS][312] -> ([SKIP][313], [PASS][314]) ([i915#5519])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglb:         NOTRUN -> [SKIP][315] ([i915#5289])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-iclb:         NOTRUN -> ([SKIP][316], [SKIP][317]) ([i915#5289])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
    - shard-iclb:         NOTRUN -> ([SKIP][318], [SKIP][319]) ([fdo#109278]) +33 similar issues
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-kbl:          NOTRUN -> [SKIP][320] ([fdo#109271] / [i915#533])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-basic:
    - shard-iclb:         NOTRUN -> ([SKIP][321], [SKIP][322]) ([i915#3555])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@kms_vrr@flip-basic.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_vrr@flip-basic.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-kbl:          NOTRUN -> ([SKIP][323], [SKIP][324]) ([fdo#109271] / [i915#2437])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@kms_writeback@writeback-pixel-formats.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-a-source-outp-complete:
    - shard-iclb:         NOTRUN -> [SKIP][325] ([i915#2530])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@nouveau_crc@pipe-a-source-outp-complete.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-iclb:         NOTRUN -> ([SKIP][326], [SKIP][327]) ([i915#2530]) +1 similar issue
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@nouveau_crc@pipe-c-source-rg.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-snb:          NOTRUN -> [SKIP][328] ([fdo#109271]) +20 similar issues
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb6/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-tglb:         NOTRUN -> ([SKIP][329], [SKIP][330]) ([i915#2530]) +2 similar issues
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb1/igt@nouveau_crc@pipe-d-source-rg.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb6/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-iclb:         NOTRUN -> ([SKIP][331], [SKIP][332]) ([fdo#109278] / [i915#2530])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@nouveau_crc@pipe-d-source-rg.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@prime_mmap_coherency@ioctl-errors:
    - shard-iclb:         NOTRUN -> ([PASS][333], [INCOMPLETE][334]) ([i915#5712])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@prime_mmap_coherency@ioctl-errors.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@prime_mmap_coherency@ioctl-errors.html

  * igt@prime_nv_api@i915_nv_double_export:
    - shard-iclb:         NOTRUN -> ([SKIP][335], [SKIP][336]) ([fdo#109291]) +1 similar issue
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@prime_nv_api@i915_nv_double_export.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@prime_nv_api@i915_nv_double_export.html

  * igt@prime_nv_api@i915_nv_import_vs_close:
    - shard-tglb:         NOTRUN -> [SKIP][337] ([fdo#109291]) +1 similar issue
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@prime_nv_api@i915_nv_import_vs_close.html

  * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
    - shard-tglb:         NOTRUN -> ([SKIP][338], [SKIP][339]) ([fdo#109291]) +2 similar issues
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> ([SKIP][340], [SKIP][341]) ([fdo#111656])
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@prime_vgem@coherency-gtt.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> ([SKIP][342], [SKIP][343]) ([fdo#109292])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@prime_vgem@coherency-gtt.html
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@prime_vgem@coherency-gtt.html

  * igt@syncobj_timeline@transfer-timeline-point:
    - shard-iclb:         NOTRUN -> ([DMESG-FAIL][344], [DMESG-FAIL][345]) ([i915#5098])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@syncobj_timeline@transfer-timeline-point.html
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-kbl:          NOTRUN -> ([DMESG-FAIL][346], [DMESG-FAIL][347]) ([i915#5098])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@syncobj_timeline@transfer-timeline-point.html
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@syncobj_timeline@transfer-timeline-point.html
    - shard-tglb:         NOTRUN -> ([DMESG-FAIL][348], [DMESG-FAIL][349]) ([i915#5098])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@syncobj_timeline@transfer-timeline-point.html
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@syncobj_timeline@transfer-timeline-point.html

  * igt@sysfs_clients@busy:
    - shard-tglb:         NOTRUN -> [SKIP][350] ([i915#2994]) +1 similar issue
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@fair-3:
    - shard-kbl:          NOTRUN -> ([SKIP][351], [SKIP][352]) ([fdo#109271] / [i915#2994]) +2 similar issues
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@sysfs_clients@fair-3.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@sysfs_clients@fair-3.html
    - shard-tglb:         NOTRUN -> ([SKIP][353], [SKIP][354]) ([i915#2994]) +2 similar issues
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@sysfs_clients@fair-3.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@sysfs_clients@fair-3.html
    - shard-iclb:         NOTRUN -> ([SKIP][355], [SKIP][356]) ([i915#2994]) +2 similar issues
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@sysfs_clients@fair-3.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@sysfs_clients@fair-3.html

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> ([SKIP][357], [SKIP][358]) ([fdo#109271] / [i915#2994]) +3 similar issues
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@sysfs_clients@recycle-many.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> ([SKIP][359], [SKIP][360]) ([fdo#109271] / [i915#2994]) +2 similar issues
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@sysfs_clients@recycle-many.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@sema-10:
    - shard-kbl:          NOTRUN -> [SKIP][361] ([fdo#109271] / [i915#2994]) +3 similar issues
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@sysfs_clients@sema-10.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> ([SKIP][362], [SKIP][363]) ([fdo#109307])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@tools_test@sysfs_l3_parity.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@tools_test@sysfs_l3_parity.html
    - shard-tglb:         NOTRUN -> ([SKIP][364], [SKIP][365]) ([fdo#109307])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@tools_test@sysfs_l3_parity.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb2/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@gem_exec_create@madvise@smem:
    - {shard-rkl}:        [INCOMPLETE][366] ([i915#5385]) -> ([PASS][367], [PASS][368])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@gem_exec_create@madvise@smem.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-6/igt@gem_exec_create@madvise@smem.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@gem_exec_create@madvise@smem.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][369] ([i915#2842]) -> ([PASS][370], [PASS][371])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-rkl}:        [SKIP][372] ([i915#4281]) -> [PASS][373]
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_color@pipe-c-invalid-degamma-lut-sizes:
    - {shard-rkl}:        [SKIP][374] ([i915#4070]) -> ([PASS][375], [PASS][376])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-rkl-1/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-4/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-rkl-5/igt@kms_color@pipe-c-invalid-degamma-lut-sizes.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][377] -> ([PASS][378], [PASS][379])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][380] ([i915#2346] / [i915#533]) -> ([PASS][381], [PASS][382])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          [DMESG-WARN][383] ([i915#5090]) -> ([PASS][384], [PASS][385])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip@flip-vs-suspend@a-edp1:
    - shard-iclb:         [INCOMPLETE][386] -> ([PASS][387], [PASS][388])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_flip@flip-vs-suspend@a-edp1.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_flip@flip-vs-suspend@a-edp1.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb8/igt@kms_flip@flip-vs-suspend@a-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-apl:          [DMESG-WARN][389] ([i915#180]) -> [PASS][390] +1 similar issue
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-iclb:         [SKIP][391] ([i915#3701]) -> ([PASS][392], [PASS][393])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a:
    - shard-apl:          [DMESG-WARN][394] ([i915#180]) -> ([PASS][395], [PASS][396]) +1 similar issue
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@kms_hdr@bpc-switch-suspend@bpc-switch-suspend-dp-1-pipe-a.html

  * igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format:
    - shard-iclb:         [SKIP][397] ([i915#5176]) -> ([PASS][398], [PASS][399]) +2 similar issues
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-5@pipe-c-edp-1-downscale-with-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-glk:          [DMESG-FAIL][400] ([i915#118] / [i915#1888]) -> ([PASS][401], [PASS][402])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk5/igt@kms_rotation_crc@primary-rotation-180.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk6/igt@kms_rotation_crc@primary-rotation-180.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk3/igt@kms_rotation_crc@primary-rotation-180.html

  * igt@perf_pmu@rc6-suspend:
    - shard-kbl:          [DMESG-WARN][403] ([i915#180]) -> [PASS][404] +1 similar issue
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@perf_pmu@rc6-suspend.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@perf_pmu@rc6-suspend.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][405] ([i915#4525]) -> ([SKIP][406], [DMESG-WARN][407]) ([i915#4525] / [i915#5614])
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb8/igt@gem_exec_balancer@parallel-bb-first.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-iclb:         [DMESG-WARN][408] ([i915#5614]) -> ([SKIP][409], [SKIP][410]) ([i915#4525]) +1 similar issue
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][411] ([i915#4525]) -> ([DMESG-FAIL][412], [SKIP][413]) ([i915#4525] / [i915#5614])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         [DMESG-WARN][414] ([i915#5614]) -> ([DMESG-WARN][415], [SKIP][416]) ([i915#4525] / [i915#5614])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb4/igt@gem_exec_balancer@parallel-out-fence.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          [FAIL][417] ([i915#2846]) -> ([FAIL][418], [PASS][419]) ([i915#2846])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-glk6/igt@gem_exec_fair@basic-deadline.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk4/igt@gem_exec_fair@basic-deadline.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-glk2/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [FAIL][420] ([i915#2842]) -> ([PASS][421], [FAIL][422]) ([i915#2842])
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [FAIL][423] ([i915#2842]) -> ([PASS][424], [FAIL][425]) ([i915#2842]) +1 similar issue
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          [SKIP][426] ([fdo#109271] / [i915#3777]) -> [SKIP][427] ([fdo#109271])
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
    - shard-iclb:         [INCOMPLETE][428] ([i915#5243]) -> ([PASS][429], [SKIP][430]) ([i915#5176])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][431] ([i915#2920]) -> ([SKIP][432], [SKIP][433]) ([i915#658])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         [SKIP][434] ([fdo#111068] / [i915#658]) -> ([SKIP][435], [SKIP][436]) ([fdo#111068] / [i915#2920] / [i915#658])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][437] ([fdo#109441]) -> ([SKIP][438], [PASS][439]) ([fdo#109441]) +5 similar issues
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][440], [FAIL][441], [FAIL][442], [FAIL][443], [FAIL][444], [FAIL][445], [FAIL][446], [FAIL][447], [FAIL][448], [FAIL][449], [FAIL][450]) ([i915#4312] / [i915#5257]) -> ([FAIL][451], [FAIL][452], [FAIL][453], [FAIL][454], [FAIL][455], [FAIL][456], [FAIL][457], [FAIL][458], [FAIL][459], [FAIL][460], [FAIL][461], [FAIL][462], [FAIL][463], [FAIL][464], [FAIL][465], [FAIL][466], [FAIL][467], [FAIL][468], [FAIL][469], [FAIL][470], [FAIL][471]) ([fdo#109271] / [i915#180] / [i915#4312] / [i915#5257] / [i915#716] / [i915#92])
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl1/igt@runner@aborted.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl4/igt@runner@aborted.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl3/igt@runner@aborted.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl6/igt@runner@aborted.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-kbl7/igt@runner@aborted.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@runner@aborted.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@runner@aborted.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl7/igt@runner@aborted.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@runner@aborted.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl6/igt@runner@aborted.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl4/igt@runner@aborted.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl3/igt@runner@aborted.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-kbl1/igt@runner@aborted.html
    - shard-apl:          ([FAIL][472], [FAIL][473], [FAIL][474], [FAIL][475], [FAIL][476], [FAIL][477], [FAIL][478], [FAIL][479]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][480], [FAIL][481], [FAIL][482], [FAIL][483], [FAIL][484], [FAIL][485], [FAIL][486], [FAIL][487], [FAIL][488], [FAIL][489], [FAIL][490], [FAIL][491]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl3/igt@runner@aborted.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl7/igt@runner@aborted.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl4/igt@runner@aborted.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl6/igt@runner@aborted.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6458/shard-apl8/igt@runner@aborted.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@runner@aborted.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@runner@aborted.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl6/igt@runner@aborted.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@runner@aborted.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@runner@aborted.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@runner@aborted.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl3/igt@runner@aborted.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl8/igt@runner@aborted.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl7/igt@runner@aborted.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl4/igt@runner@aborted.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl2/igt@runner@aborted.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7017/shard-apl1/igt@runner@aborted.html

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

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3777]: https://gitlab.freedesktop.org/drm/intel/issues/3777
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4185]: https://gitlab.freedesktop.org/drm/intel/issues/4185
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4525]: https://gitla

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
  2022-04-28 16:07 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Kamil Konieczny
@ 2022-04-29  4:51   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-29  4:51 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev, Thomas Hellström

On Thu, Apr 28, 2022 at 06:07:50PM +0200, Kamil Konieczny wrote:
> Hi Zbigniew,
> 
> On 2022-04-27 at 20:42:04 +0200, Zbigniew Kempczyński wrote:
> > Verify that eviction works when all engines try to use same offset for
> > different handles. It replaces allocator-evict-all-engines test because
> > it is simpler.
> > 
> > v2: addressing review comments (Kamil)
> > v3: simplifying subtest (Chris)
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> >  tests/i915/gem_softpin.c | 76 ++++++++++++++++++++++++++++++++++++++--
> >  1 file changed, 74 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> > index 448b4c4b9e..7dae2a6c44 100644
> > --- a/tests/i915/gem_softpin.c
> > +++ b/tests/i915/gem_softpin.c
> > @@ -1073,6 +1073,77 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
> >  	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> >  }
> >  
> > +#define MINIMAL_OFFSET 0x200000
> > +static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
> > +				 struct batch *batches, unsigned int count)
> > +{
> > +	struct drm_i915_gem_exec_object2 obj = {
> > +		.offset = max_t(uint64_t, gem_detect_safe_start_offset(fd), MINIMAL_OFFSET),
> 
> imho this should be a parameter to this function, so it will be
> calculated once but you can leave it here, your choice.

Safe start offset is cached during first run so following calls returns
it from the cache, without further probing.

> 
> > +		.flags = EXEC_OBJECT_PINNED,
> > +	};
> > +
> > +	eb->buffers_ptr = to_user_pointer(&obj);
> > +
> > +	for (unsigned int i = 0; i < count; i++) {
> > +		obj.handle = batches[i].handle;
> > +		gem_execbuf(fd, eb);
> > +	}
> > +}
> > +
> > +static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
> > +{
> > +	struct drm_i915_gem_execbuffer2 execbuf;
> > +	struct intel_execution_engine2 *e;
> > +	unsigned int engines[I915_EXEC_RING_MASK + 1];
> > +	struct batch *batches;
> > +	unsigned int nengine;
> > +	unsigned int count;
> > +	uint64_t size, batch_size = BATCH_SIZE;
> > +
> > +	nengine = 0;
> > +	for_each_ctx_engine(fd, ctx, e) {
> > +		engines[nengine++] = e->flags;
> > +	}
> > +	igt_require(nengine);
> > +
> > +	size = gem_aperture_size(fd);
> > +	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
> > +		size = 1ull << 32;
> > +	igt_require(size < (1ull<<32) * BATCH_SIZE);
> > +
> > +	count = size / BATCH_SIZE + 1;
> > +	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
> > +		  count, (long long)size, nengine);
> 
> Please add here print for timeout used and also change printing
> size to MB.

I understand you want to see this with --debug option? Ok, will add this
before merging.

> 
> > +
> > +	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
> > +	intel_detect_and_clear_missed_interrupts(fd);
> > +
> > +	memset(&execbuf, 0, sizeof(execbuf));
> > +	execbuf.buffer_count = 1;
> > +	execbuf.rsvd1 = ctx->id;
> > +
> > +	batches = calloc(count, sizeof(*batches));
> > +	igt_assert(batches);
> > +	for (unsigned int i = 0; i < count; i++)
> > +		batches[i].handle = batch_create(fd, &batch_size);
> > +
> > +	/* Flush all memory before we start the timer */
> > +	single_offset_submit(fd, &execbuf, batches, count);
> > +
> > +	igt_fork(child, nengine) {
> > +		execbuf.flags |= engines[child];
> > +		igt_until_timeout(timeout)
> > +			single_offset_submit(fd, &execbuf, batches, count);
> > +	}
> > +	igt_waitchildren();
> > +
> > +	for (unsigned int i = 0; i < count; i++)
> > +		gem_close(fd, batches[i].handle);
> > +	free(batches);
> > +
> > +	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> > +}
> > +
> >  static void make_batch(int i915, uint32_t handle, uint64_t size)
> >  {
> >  	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
> > @@ -1213,8 +1284,9 @@ igt_main
> >  		test_each_engine("allocator-evict", fd, ctx, e)
> >  			test_allocator_evict(fd, ctx, e->flags, 20);
> >  
> > -		igt_subtest("allocator-evict-all-engines")
> > -			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
> > +		igt_describe("Use same offset for all engines and for different handles");
> > +		igt_subtest("evict-single-offset")
> > +			evict_single_offset(fd, ctx, 20);
> 
> You are not using allocator here, so maybe move this down after
> evict-hog sibtest ?

Test need to be placed within 'gem_uses_full_ppgtt' group. We may argue
for the location, but I cannot move it outside it.

With above changes I'm going to take your r-b and merge.
--
Zbigniew

> 
> With that small changes you can add my r-b tag.
> 
> Regards,
> Kamil
> >  	}
> >  
> >  	igt_describe("Check start offset and alignment detection");
> > -- 
> > 2.32.0
> > 

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

* [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
@ 2022-04-27  6:10 Zbigniew Kempczyński
  0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-27  6:10 UTC (permalink / raw)
  To: igt-dev; +Cc: Thomas Hellström

Verify that eviction works when all engines try to use same offset for
different handles. It replaces allocator-evict-all-engines test because
it is simpler.

v2: addressing review comments (Kamil)

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 tests/i915/gem_softpin.c | 88 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 86 insertions(+), 2 deletions(-)

diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index 448b4c4b9e..84fed0720c 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -1073,6 +1073,89 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
 	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
 }
 
+#define MINIMAL_OFFSET 0x200000
+static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
+				 struct batch *batches, unsigned int count)
+{
+	struct drm_i915_gem_exec_object2 obj;
+	uint64_t address = max_t(uint64_t, gem_detect_safe_start_offset(fd),
+				 MINIMAL_OFFSET);
+
+	memset(&obj, 0, sizeof(obj));
+	obj.flags = EXEC_OBJECT_PINNED;
+
+	for (unsigned int i = 0; i < count; i++) {
+		obj.handle = batches[i].handle;
+		obj.offset = address;
+		eb->buffers_ptr = to_user_pointer(&obj);
+		gem_execbuf(fd, eb);
+	}
+}
+
+static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
+{
+	struct drm_i915_gem_execbuffer2 execbuf;
+	struct intel_execution_engine2 *e;
+	unsigned int engines[I915_EXEC_RING_MASK + 1];
+	struct batch *batches;
+	unsigned int nengine;
+	unsigned int count;
+	uint64_t size;
+
+	nengine = 0;
+	for_each_ctx_engine(fd, ctx, e) {
+		engines[nengine++] = e->flags;
+	}
+	igt_require(nengine);
+
+	size = gem_aperture_size(fd);
+	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
+		size = 1ull << 32;
+	igt_require(size < (1ull<<32) * BATCH_SIZE);
+
+	count = size / BATCH_SIZE + 1;
+	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
+		  count, (long long)size, nengine);
+
+	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
+	intel_detect_and_clear_missed_interrupts(fd);
+
+	memset(&execbuf, 0, sizeof(execbuf));
+	execbuf.buffer_count = 1;
+	execbuf.rsvd1 = ctx->id;
+
+	batches = calloc(count, sizeof(*batches));
+	igt_assert(batches);
+	for (unsigned int i = 0; i < count; i++) {
+		uint32_t *p;
+
+		batches[i].handle = gem_create(fd, BATCH_SIZE);
+		batches[i].ptr =
+			gem_mmap__device_coherent(fd, batches[i].handle,
+						  0, BATCH_SIZE, PROT_WRITE);
+		p = batches[i].ptr + BATCH_SIZE - 8;
+		*p = MI_BATCH_BUFFER_END;
+	}
+
+	/* Flush all memory before we start the timer */
+	single_offset_submit(fd, &execbuf, batches, count);
+
+	igt_fork(child, nengine) {
+		execbuf.flags |= engines[child];
+		igt_until_timeout(timeout)
+			single_offset_submit(fd, &execbuf, batches, count);
+	}
+	igt_waitchildren();
+
+	for (unsigned int i = 0; i < count; i++) {
+		munmap(batches[i].ptr, BATCH_SIZE);
+		gem_close(fd, batches[i].handle);
+	}
+	free(batches);
+
+	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
+}
+
 static void make_batch(int i915, uint32_t handle, uint64_t size)
 {
 	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
@@ -1213,8 +1296,9 @@ igt_main
 		test_each_engine("allocator-evict", fd, ctx, e)
 			test_allocator_evict(fd, ctx, e->flags, 20);
 
-		igt_subtest("allocator-evict-all-engines")
-			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
+		igt_describe("Use same offset for all engines and for different handles");
+		igt_subtest("evict-single-offset")
+			evict_single_offset(fd, ctx, 20);
 	}
 
 	igt_describe("Check start offset and alignment detection");
-- 
2.32.0

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
  2022-04-05 18:28 ` Kamil Konieczny
@ 2022-04-27  6:03   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-27  6:03 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev, Thomas Hellström

On Tue, Apr 05, 2022 at 08:28:30PM +0200, Kamil Konieczny wrote:
> Hi Zbigniew,
> 
> Dnia 2022-04-04 at 19:18:07 +0200, Zbigniew Kempczyński napisał(a):
> > Test verifies does eviction works when all engines try to use same
> 
> s/Test verifies does/Verify that/
> 
> > offset for different handles. It replaces allocator-evict-all-engines
> > test because it simpler version of it.
> 
> s/test/subtest/
> s/because it simpler version of it./because it is simpler./
> 
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> >  tests/i915/gem_softpin.c | 85 +++++++++++++++++++++++++++++++++++++++-
> >  1 file changed, 83 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> > index 34fc9983ff..5945317ed1 100644
> > --- a/tests/i915/gem_softpin.c
> > +++ b/tests/i915/gem_softpin.c
> > @@ -1072,6 +1072,87 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
> >  	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> >  }
> >  
> > +static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
> > +				 struct batch *batches, unsigned int count)
> > +{
> > +	struct drm_i915_gem_exec_object2 obj;
> > +	uint64_t address = max_t(uint64_t, gem_detect_safe_start_offset(fd), 0x200000);
> ---------------------------------------------------------------------------- ^
> Shouldn't this be gem_detect_safe_alignment() ? Or #define and
> describe it with comment or add comment here.

No, in this subtest I want to reuse same offset. But I agree,
adding #define will make this constant more descriptive.

> Another idea whould be to calculate it in evict_single_offset
> before fork and pass it as parameter.

But this is "calculated" (probed) in gem_detect_safe_start_offset().
I don't want to be 0x0 as start offset so max_t() choose 2M offset
if minimal start offset is lesser than I want. 

> 
> > +
> > +	memset(&obj, 0, sizeof(obj));
> > +	obj.flags = EXEC_OBJECT_PINNED;
> > +
> > +	for (unsigned int i = 0; i < count; i++) {
> > +		obj.handle = batches[i].handle;
> > +		obj.offset = address;
> > +		eb->buffers_ptr = to_user_pointer(&obj);
> > +		gem_execbuf(fd, eb);
> > +	}
> > +}
> > +
> > +static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
> > +{
> > +	struct drm_i915_gem_execbuffer2 execbuf;
> > +	struct intel_execution_engine2 *e;
> > +	unsigned int engines[I915_EXEC_RING_MASK + 1];
> > +	struct batch *batches;
> > +	unsigned int nengine;
> > +	unsigned int count;
> > +	uint64_t size;
> > +
> > +	nengine = 0;
> > +	for_each_ctx_engine(fd, ctx, e) {
> > +		engines[nengine++] = e->flags;
> > +	}
> > +	igt_require(nengine);
> > +
> > +	size = gem_aperture_size(fd);
> > +	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
> > +		size = 1ull << 32;
> > +	igt_require(size < (1ull<<32) * BATCH_SIZE);
> > +
> > +	count = size / BATCH_SIZE + 1;
> > +	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
> > +		  count, (long long)size, nengine);
> > +
> > +	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
> > +	intel_detect_and_clear_missed_interrupts(fd);
> > +
> > +	memset(&execbuf, 0, sizeof(execbuf));
> > +	execbuf.buffer_count = 1;
> > +	execbuf.rsvd1 = ctx->id;
> > +
> > +	batches = calloc(count, sizeof(*batches));
> > +	igt_assert(batches);
> > +	for (unsigned int i = 0; i < count; i++) {
> > +		uint32_t *p;
> > +
> > +		batches[i].handle = gem_create(fd, BATCH_SIZE);
> > +		batches[i].ptr =
> > +			gem_mmap__device_coherent(fd, batches[i].handle,
> > +						  0, BATCH_SIZE, PROT_WRITE);
> > +		p = batches[i].ptr + BATCH_SIZE - 8;
> > +		*p = MI_BATCH_BUFFER_END;
> > +	}
> > +
> > +	/* Flush all memory before we start the timer */
> > +	single_offset_submit(fd, &execbuf, batches, count);
> > +
> > +	igt_fork(child, nengine) {
> > +		execbuf.flags |= engines[child];
> > +		igt_until_timeout(timeout)
> > +			single_offset_submit(fd, &execbuf, batches, count);
> > +	}
> > +	igt_waitchildren();
> > +
> > +	for (unsigned int i = 0; i < count; i++) {
> > +		munmap(batches[i].ptr, BATCH_SIZE);
> > +		gem_close(fd, batches[i].handle);
> > +	}
> > +	free(batches);
> > +
> > +	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> > +}
> > +
> >  static void make_batch(int i915, uint32_t handle, uint64_t size)
> >  {
> >  	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
> > @@ -1212,8 +1293,8 @@ igt_main
> >  		test_each_engine("allocator-evict", fd, ctx, e)
> >  			test_allocator_evict(fd, ctx, e->flags, 20);
> >  
> > -		igt_subtest("allocator-evict-all-engines")
> > -			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
> > +		igt_subtest("evict-single-offset")
> > +			evict_single_offset(fd, ctx, 20);
> 
> While you change it please add description before subtest.

Ok, will be in v2.

--
Zbigniew

> 
> Regards,
> Kamil
> >  	}
> >  
> >  	igt_describe("Check start offset and alignment detection");
> > -- 
> > 2.32.0
> > 

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
  2022-04-04 17:18 Zbigniew Kempczyński
@ 2022-04-05 18:28 ` Kamil Konieczny
  2022-04-27  6:03   ` Zbigniew Kempczyński
  0 siblings, 1 reply; 14+ messages in thread
From: Kamil Konieczny @ 2022-04-05 18:28 UTC (permalink / raw)
  To: igt-dev; +Cc: Thomas Hellström

Hi Zbigniew,

Dnia 2022-04-04 at 19:18:07 +0200, Zbigniew Kempczyński napisał(a):
> Test verifies does eviction works when all engines try to use same

s/Test verifies does/Verify that/

> offset for different handles. It replaces allocator-evict-all-engines
> test because it simpler version of it.

s/test/subtest/
s/because it simpler version of it./because it is simpler./

> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  tests/i915/gem_softpin.c | 85 +++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 83 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> index 34fc9983ff..5945317ed1 100644
> --- a/tests/i915/gem_softpin.c
> +++ b/tests/i915/gem_softpin.c
> @@ -1072,6 +1072,87 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
>  	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
>  }
>  
> +static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
> +				 struct batch *batches, unsigned int count)
> +{
> +	struct drm_i915_gem_exec_object2 obj;
> +	uint64_t address = max_t(uint64_t, gem_detect_safe_start_offset(fd), 0x200000);
---------------------------------------------------------------------------- ^
Shouldn't this be gem_detect_safe_alignment() ? Or #define and
describe it with comment or add comment here.
Another idea whould be to calculate it in evict_single_offset
before fork and pass it as parameter.

> +
> +	memset(&obj, 0, sizeof(obj));
> +	obj.flags = EXEC_OBJECT_PINNED;
> +
> +	for (unsigned int i = 0; i < count; i++) {
> +		obj.handle = batches[i].handle;
> +		obj.offset = address;
> +		eb->buffers_ptr = to_user_pointer(&obj);
> +		gem_execbuf(fd, eb);
> +	}
> +}
> +
> +static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
> +{
> +	struct drm_i915_gem_execbuffer2 execbuf;
> +	struct intel_execution_engine2 *e;
> +	unsigned int engines[I915_EXEC_RING_MASK + 1];
> +	struct batch *batches;
> +	unsigned int nengine;
> +	unsigned int count;
> +	uint64_t size;
> +
> +	nengine = 0;
> +	for_each_ctx_engine(fd, ctx, e) {
> +		engines[nengine++] = e->flags;
> +	}
> +	igt_require(nengine);
> +
> +	size = gem_aperture_size(fd);
> +	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
> +		size = 1ull << 32;
> +	igt_require(size < (1ull<<32) * BATCH_SIZE);
> +
> +	count = size / BATCH_SIZE + 1;
> +	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
> +		  count, (long long)size, nengine);
> +
> +	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
> +	intel_detect_and_clear_missed_interrupts(fd);
> +
> +	memset(&execbuf, 0, sizeof(execbuf));
> +	execbuf.buffer_count = 1;
> +	execbuf.rsvd1 = ctx->id;
> +
> +	batches = calloc(count, sizeof(*batches));
> +	igt_assert(batches);
> +	for (unsigned int i = 0; i < count; i++) {
> +		uint32_t *p;
> +
> +		batches[i].handle = gem_create(fd, BATCH_SIZE);
> +		batches[i].ptr =
> +			gem_mmap__device_coherent(fd, batches[i].handle,
> +						  0, BATCH_SIZE, PROT_WRITE);
> +		p = batches[i].ptr + BATCH_SIZE - 8;
> +		*p = MI_BATCH_BUFFER_END;
> +	}
> +
> +	/* Flush all memory before we start the timer */
> +	single_offset_submit(fd, &execbuf, batches, count);
> +
> +	igt_fork(child, nengine) {
> +		execbuf.flags |= engines[child];
> +		igt_until_timeout(timeout)
> +			single_offset_submit(fd, &execbuf, batches, count);
> +	}
> +	igt_waitchildren();
> +
> +	for (unsigned int i = 0; i < count; i++) {
> +		munmap(batches[i].ptr, BATCH_SIZE);
> +		gem_close(fd, batches[i].handle);
> +	}
> +	free(batches);
> +
> +	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
> +}
> +
>  static void make_batch(int i915, uint32_t handle, uint64_t size)
>  {
>  	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
> @@ -1212,8 +1293,8 @@ igt_main
>  		test_each_engine("allocator-evict", fd, ctx, e)
>  			test_allocator_evict(fd, ctx, e->flags, 20);
>  
> -		igt_subtest("allocator-evict-all-engines")
> -			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
> +		igt_subtest("evict-single-offset")
> +			evict_single_offset(fd, ctx, 20);

While you change it please add description before subtest.

Regards,
Kamil
>  	}
>  
>  	igt_describe("Check start offset and alignment detection");
> -- 
> 2.32.0
> 

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

* [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines
@ 2022-04-04 17:18 Zbigniew Kempczyński
  2022-04-05 18:28 ` Kamil Konieczny
  0 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-04-04 17:18 UTC (permalink / raw)
  To: igt-dev; +Cc: Thomas Hellström

Test verifies does eviction works when all engines try to use same
offset for different handles. It replaces allocator-evict-all-engines
test because it simpler version of it.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 tests/i915/gem_softpin.c | 85 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 83 insertions(+), 2 deletions(-)

diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index 34fc9983ff..5945317ed1 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -1072,6 +1072,87 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
 	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
 }
 
+static void single_offset_submit(int fd, struct drm_i915_gem_execbuffer2 *eb,
+				 struct batch *batches, unsigned int count)
+{
+	struct drm_i915_gem_exec_object2 obj;
+	uint64_t address = max_t(uint64_t, gem_detect_safe_start_offset(fd), 0x200000);
+
+	memset(&obj, 0, sizeof(obj));
+	obj.flags = EXEC_OBJECT_PINNED;
+
+	for (unsigned int i = 0; i < count; i++) {
+		obj.handle = batches[i].handle;
+		obj.offset = address;
+		eb->buffers_ptr = to_user_pointer(&obj);
+		gem_execbuf(fd, eb);
+	}
+}
+
+static void evict_single_offset(int fd, const intel_ctx_t *ctx, int timeout)
+{
+	struct drm_i915_gem_execbuffer2 execbuf;
+	struct intel_execution_engine2 *e;
+	unsigned int engines[I915_EXEC_RING_MASK + 1];
+	struct batch *batches;
+	unsigned int nengine;
+	unsigned int count;
+	uint64_t size;
+
+	nengine = 0;
+	for_each_ctx_engine(fd, ctx, e) {
+		engines[nengine++] = e->flags;
+	}
+	igt_require(nengine);
+
+	size = gem_aperture_size(fd);
+	if (size > 1ull<<32) /* Limit to 4GiB as we do not use allow-48b */
+		size = 1ull << 32;
+	igt_require(size < (1ull<<32) * BATCH_SIZE);
+
+	count = size / BATCH_SIZE + 1;
+	igt_debug("Using %'d batches to fill %'llu aperture on %d engines\n",
+		  count, (long long)size, nengine);
+
+	intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
+	intel_detect_and_clear_missed_interrupts(fd);
+
+	memset(&execbuf, 0, sizeof(execbuf));
+	execbuf.buffer_count = 1;
+	execbuf.rsvd1 = ctx->id;
+
+	batches = calloc(count, sizeof(*batches));
+	igt_assert(batches);
+	for (unsigned int i = 0; i < count; i++) {
+		uint32_t *p;
+
+		batches[i].handle = gem_create(fd, BATCH_SIZE);
+		batches[i].ptr =
+			gem_mmap__device_coherent(fd, batches[i].handle,
+						  0, BATCH_SIZE, PROT_WRITE);
+		p = batches[i].ptr + BATCH_SIZE - 8;
+		*p = MI_BATCH_BUFFER_END;
+	}
+
+	/* Flush all memory before we start the timer */
+	single_offset_submit(fd, &execbuf, batches, count);
+
+	igt_fork(child, nengine) {
+		execbuf.flags |= engines[child];
+		igt_until_timeout(timeout)
+			single_offset_submit(fd, &execbuf, batches, count);
+	}
+	igt_waitchildren();
+
+	for (unsigned int i = 0; i < count; i++) {
+		munmap(batches[i].ptr, BATCH_SIZE);
+		gem_close(fd, batches[i].handle);
+	}
+	free(batches);
+
+	igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0);
+}
+
 static void make_batch(int i915, uint32_t handle, uint64_t size)
 {
 	uint32_t *bb = gem_mmap__device_coherent(i915, handle, 0, size, PROT_WRITE);
@@ -1212,8 +1293,8 @@ igt_main
 		test_each_engine("allocator-evict", fd, ctx, e)
 			test_allocator_evict(fd, ctx, e->flags, 20);
 
-		igt_subtest("allocator-evict-all-engines")
-			test_allocator_evict(fd, ctx, ALL_ENGINES, 20);
+		igt_subtest("evict-single-offset")
+			evict_single_offset(fd, ctx, 20);
 	}
 
 	igt_describe("Check start offset and alignment detection");
-- 
2.32.0

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

end of thread, other threads:[~2022-04-29  4:51 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-27 18:42 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
2022-04-27 19:26 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
2022-04-27 20:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-04-28  4:11   ` Zbigniew Kempczyński
2022-04-28 15:31     ` Vudum, Lakshminarayana
2022-04-28 15:45 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-04-28 15:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2022-04-28 16:07 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Kamil Konieczny
2022-04-29  4:51   ` Zbigniew Kempczyński
2022-04-28 18:24 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_softpin: Exercise single offset eviction on all engines (rev3) Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2022-04-27  6:10 [igt-dev] [PATCH i-g-t] tests/i915/gem_softpin: Exercise single offset eviction on all engines Zbigniew Kempczyński
2022-04-04 17:18 Zbigniew Kempczyński
2022-04-05 18:28 ` Kamil Konieczny
2022-04-27  6:03   ` Zbigniew Kempczyński

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.