All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing
@ 2021-05-06  6:57 Janusz Krzysztofik
  2021-05-06  7:46 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Janusz Krzysztofik @ 2021-05-06  6:57 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx, Chris Wilson

IGT i915/perf library functions now always operate on sysfs perf
attributes of card0 device node, no matter which DRM device fd a user
passes.  The intention was to always switch to primary device node if
a user passes a render device node fd, but that breaks handling of
non-card0 devices.

If a user passed a render device node fd, find a primary device node of
the same device and use it instead of forcibly using the primary device
with minor number 0 when opening the device sysfs area.

v2: Don't assume primary minor matches render minor with masked type.
v3: Reset sysfs dir fd if no match, consequently spell out error paths,
    add a comment on convertion of renderD* to cardX (Lionel).
v4: Limit primary lookup to minors <64 (Chris)

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> # v3
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/i915/perf.c | 35 ++++++++++++++++++++++++++++++++---
 1 file changed, 32 insertions(+), 3 deletions(-)

diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index 56d5c0b3a..5644a3469 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -372,14 +372,43 @@ open_master_sysfs_dir(int drm_fd)
 {
 	char path[128];
 	struct stat st;
+	int sysfs;
 
 	if (fstat(drm_fd, &st) || !S_ISCHR(st.st_mode))
                 return -1;
 
-        snprintf(path, sizeof(path), "/sys/dev/char/%d:0",
-                 major(st.st_rdev));
+	snprintf(path, sizeof(path), "/sys/dev/char/%d:%d", major(st.st_rdev), minor(st.st_rdev));
+	sysfs = open(path, O_DIRECTORY);
+	if (sysfs < 0)
+		return sysfs;
 
-	return open(path, O_DIRECTORY);
+	if (minor(st.st_rdev) >= 128) {
+		/* If we were given a renderD* drm_fd, find it's associated cardX node. */
+		char device[100], cmp[100];
+		int device_len, cmp_len, i;
+
+		device_len = readlinkat(sysfs, "device", device, sizeof(device));
+		close(sysfs);
+		if (device_len < 0)
+			return device_len;
+
+		for (i = 0; i < 64; i++) {
+
+			snprintf(path, sizeof(path), "/sys/dev/char/%d:%d", major(st.st_rdev), i);
+			sysfs = open(path, O_DIRECTORY);
+			if (sysfs < 0)
+				continue;
+
+			cmp_len = readlinkat(sysfs, "device", cmp, sizeof(cmp));
+			if (cmp_len == device_len && !memcmp(cmp, device, cmp_len))
+				break;
+
+			close(sysfs);
+			sysfs = -1;
+		}
+	}
+
+	return sysfs;
 }
 
 struct intel_perf *
-- 
2.25.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
@ 2021-05-06  7:46 ` Patchwork
  2021-05-06  8:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-05-06  7:46 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev4)
URL   : https://patchwork.freedesktop.org/series/89701/
State : success

== Summary ==

CI Bug Log - changes from IGT_6080 -> IGTPW_5786
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@sync-fork-compute0:
    - fi-snb-2600:        NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/fi-snb-2600/igt@amdgpu/amd_cs_nop@sync-fork-compute0.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-bsw-nick:        [PASS][2] -> [DMESG-FAIL][3] ([i915#2927])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html

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

  
#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - fi-snb-2600:        [INCOMPLETE][5] ([i915#2782]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/fi-snb-2600/igt@i915_selftest@live@hangcheck.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       [FAIL][7] ([i915#1372]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.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
  [i915#1372]: https://gitlab.freedesktop.org/drm/intel/issues/1372
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927


Participating hosts (44 -> 37)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-bdw-gvtdvm fi-apl-guc fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6080 -> IGTPW_5786

  CI-20190529: 20190529
  CI_DRM_10050: ae46d9d790a148ab7b293cad67c770c0221e2c83 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5786: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/index.html
  IGT_6080: 1c450c3d4df19cf1087b8ccff3b62cb51addacae @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
  2021-05-06  7:46 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
@ 2021-05-06  8:42 ` Patchwork
  2021-05-06 10:41   ` Janusz Krzysztofik
  2021-05-06 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2021-05-06  8:42 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev4)
URL   : https://patchwork.freedesktop.org/series/89701/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-tglb:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
    - shard-apl:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
    - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][7] ([i915#180])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][9] -> [TIMEOUT][10] ([i915#2369] / [i915#2481] / [i915#3070])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@gem_eio@unwedge-stress.html

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

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][13] -> [FAIL][14] ([i915#2842]) +4 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-iclb:         [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [PASS][18] -> [SKIP][19] ([fdo#109271])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_mmap_offset@clear:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#3160])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@gem_mmap_offset@clear.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_mmap_offset@clear.html

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

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([i915#768])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#3297])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#3297])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][26] -> [INCOMPLETE][27] ([i915#155] / [i915#2405])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([fdo#109289]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#112306]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#2527])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html
    - shard-iclb:         NOTRUN -> [SKIP][31] ([i915#2527])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         NOTRUN -> [FAIL][32] ([i915#454])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@i915_pm_dc@dc6-psr.html
    - shard-tglb:         NOTRUN -> [FAIL][33] ([i915#454])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111644] / [i915#1397] / [i915#2411])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110892])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][36] -> [DMESG-WARN][37] ([i915#180]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl4/igt@i915_suspend@forcewake.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@i915_suspend@forcewake.html

  * igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs:
    - shard-glk:          [PASS][38] -> [DMESG-FAIL][39] ([i915#118] / [i915#95])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111614])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#111615])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#110723])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo:
    - shard-snb:          NOTRUN -> [SKIP][44] ([fdo#109271]) +366 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb2/igt@kms_ccs@pipe-a-ccs-on-another-bo.html

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

  * igt@kms_color@pipe-d-ctm-green-to-red:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#1149])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color@pipe-d-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

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

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html

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

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][52] ([i915#1319])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3116])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][54] ([i915#3116])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +88 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#109279] / [i915#3359]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
    - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271]) +60 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#533])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
    - shard-glk:          [PASS][61] -> [FAIL][62] ([i915#79])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +15 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-tglb:         [PASS][67] -> [FAIL][68] ([i915#2839])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2733])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2733])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([i915#1836])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_prime@basic-crc@first-to-second.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#658])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

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

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

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][80] -> [SKIP][81] ([fdo#109642] / [fdo#111068] / [i915#658])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109441]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html

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

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#2437])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2437]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_writeback@writeback-fb-id.html

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

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271]) +213 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@nouveau_crc@pipe-c-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#2530]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html
    - shard-iclb:         NOTRUN -> [SKIP][90] ([i915#2530]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@nouveau_crc@pipe-c-source-outp-inactive.html

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

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#2994])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@sysfs_clients@fair-0.html
    - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@sysfs_clients@fair-0.html
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2994])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +2 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@sema-25:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@sysfs_clients@sema-25.html

  * igt@sysfs_heartbeat_interval@mixed@bcs0:
    - shard-glk:          NOTRUN -> [FAIL][97] ([i915#1731])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@sysfs_heartbeat_interval@mixed@bcs0.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][98] ([i915#658]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb3/igt@feature_discovery@psr2.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][100] ([i915#2842]) -> [PASS][101] +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [FAIL][102] ([i915#2842]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@gem_exec_fair@basic-none@vecs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][104] ([i915#2842]) -> [PASS][105] +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_vm_create@destroy-race:
    - shard-tglb:         [TIMEOUT][106] ([i915#2795]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@gem_vm_create@destroy-race.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@gem_vm_create@destroy-race.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-kbl:          [INCOMPLETE][108] ([i915#155] / [i915#2405]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-glk:          [FAIL][112] ([i915#49]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][114] ([i915#180] / [i915#533]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_properties@connector-properties-atomic:
    - shard-glk:          [DMESG-WARN][116] ([i915#118] / [i915#95]) -> [PASS][117] +3 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_properties@connector-properties-atomic.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk8/igt@kms_properties@connector-properties-atomic.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][118] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@kms_psr2_su@frontbuffer.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +2 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][122] ([fdo#109271]) -> [FAIL][123] ([i915#2842])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][124] ([i915#2842]) -> [FAIL][125] ([i915#2849])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][126] ([i915#2684]) -> [WARN][127] ([i915#1804] / [i915#2684])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-iclb:         [SKIP][128] ([i915#658]) -> [SKIP][129] ([i915#2920]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][130] ([i915#2920]) -> [SKIP][131] ([i915#658]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([i915#180] / [i915#1814] / [i915#2292] / [i915#3002] / [i915#3363]) -> ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141]) ([i915#180] / [i915#3002] / [i915#3363])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][142], [FAIL][143]) ([i915#3002] / [i915#3363]) -> ([FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl7/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl3/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@runner@aborted.html
   [146]: https://intel-gfx-ci.01.org/tree/

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06  8:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-06 10:41   ` Janusz Krzysztofik
  2021-05-06 10:47     ` Petri Latvala
  0 siblings, 1 reply; 15+ messages in thread
From: Janusz Krzysztofik @ 2021-05-06 10:41 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana

On czwartek, 6 maja 2021 10:42:55 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing (rev4)
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5786_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5786_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_5786/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in 
IGTPW_5786_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
>     - shard-tglb:         [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/
igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/
igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
>     - shard-apl:          [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/
igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
>     - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html

The change only affects two tests which are calling intel_perf_for_fd(): perf 
and core_hotunplug.  In the two latter cases reported above, none of those two 
tests were executed in the same run before the reported failure occurred so 
there is no way for the change to be responsible for that failure.

In the first case of the above three, a perf test was indeed executed a few 
steps before the reported failure occurred, but for me it's hard to understand 
how that could be the reason of that failure, close to impossible.  Lakshmi, 
can we please retry?

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5786_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_isolation@preservation-s3@vcs0:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][7] ([i915#180])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@gem_ctx_isolation@preservation-s3@vcs0.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed:
>     - shard-snb:          NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) 
+4 similar issues
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb2/
igt@gem_ctx_persistence@legacy-engines-mixed.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-iclb:         [PASS][9] -> [TIMEOUT][10] ([i915#2369] / 
[i915#2481] / [i915#3070])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb7/
igt@gem_eio@unwedge-stress.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/
igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          NOTRUN -> [FAIL][11] ([i915#2846])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
igt@gem_exec_fair@basic-deadline.html
>     - shard-apl:          NOTRUN -> [FAIL][12] ([i915#2846])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          [PASS][13] -> [FAIL][14] ([i915#2842]) +4 similar 
issues
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk4/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/
igt@gem_exec_fair@basic-none@vcs1.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-iclb:         [PASS][16] -> [FAIL][17] ([i915#2842])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/
igt@gem_exec_fair@basic-pace@rcs0.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/
igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-kbl:          [PASS][18] -> [SKIP][19] ([fdo#109271])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/
igt@gem_exec_fair@basic-pace@vecs0.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@gem_mmap_offset@clear:
>     - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#3160])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/
igt@gem_mmap_offset@clear.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/
igt@gem_mmap_offset@clear.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-kbl:          NOTRUN -> [WARN][22] ([i915#2658])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/
igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_render_copy@y-tiled-to-vebox-linear:
>     - shard-iclb:         NOTRUN -> [SKIP][23] ([i915#768])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/
igt@gem_render_copy@y-tiled-to-vebox-linear.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#3297])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#3297])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-kbl:          [PASS][26] -> [INCOMPLETE][27] ([i915#155] / 
[i915#2405])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl6/
igt@gem_workarounds@suspend-resume-fd.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@gen3_render_linear_blits:
>     - shard-iclb:         NOTRUN -> [SKIP][28] ([fdo#109289]) +1 similar 
issue
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/
igt@gen3_render_linear_blits.html
> 
>   * igt@gen9_exec_parse@basic-rejected:
>     - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#112306]) +1 similar 
issue
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/
igt@gen9_exec_parse@basic-rejected.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#2527])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/
igt@gen9_exec_parse@bb-oversize.html
>     - shard-iclb:         NOTRUN -> [SKIP][31] ([i915#2527])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/
igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         NOTRUN -> [FAIL][32] ([i915#454])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/
igt@i915_pm_dc@dc6-psr.html
>     - shard-tglb:         NOTRUN -> [FAIL][33] ([i915#454])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/
igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111644] / [i915#1397] / 
[i915#2411])
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>     - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#110892])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@i915_suspend@forcewake:
>     - shard-kbl:          [PASS][36] -> [DMESG-WARN][37] ([i915#180]) +1 
similar issue
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl4/
igt@i915_suspend@forcewake.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@i915_suspend@forcewake.html
> 
>   * igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs:
>     - shard-glk:          [PASS][38] -> [DMESG-FAIL][39] ([i915#118] / 
[i915#95])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/
igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/
igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-90:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) 
+1 similar issue
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/
igt@kms_big_fb@linear-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>     - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111614])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/
igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#111615])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/
igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>     - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#110723])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
> 
>   * igt@kms_ccs@pipe-a-ccs-on-another-bo:
>     - shard-snb:          NOTRUN -> [SKIP][44] ([fdo#109271]) +366 similar 
issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb2/
igt@kms_ccs@pipe-a-ccs-on-another-bo.html
> 
>   * igt@kms_chamelium@vga-hpd-without-ddc:
>     - shard-snb:          NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) 
+13 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb7/
igt@kms_chamelium@vga-hpd-without-ddc.html
> 
>   * igt@kms_color@pipe-d-ctm-green-to-red:
>     - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#1149])
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_color@pipe-d-ctm-green-to-red.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
>     - shard-iclb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) 
+1 similar issue
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_color_chamelium@pipe-b-ctm-limited-range.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>     - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) 
+14 similar issues
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl3/
igt@kms_color_chamelium@pipe-c-ctm-0-25.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-0-5:
>     - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) 
+2 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/
igt@kms_color_chamelium@pipe-c-ctm-0-5.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-negative:
>     - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) 
+10 similar issues
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/
igt@kms_color_chamelium@pipe-c-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-d-ctm-0-25:
>     - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109284] 
/ [fdo#111827])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/
igt@kms_color_chamelium@pipe-d-ctm-0-25.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-apl:          NOTRUN -> [TIMEOUT][52] ([i915#1319])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-tglb:         NOTRUN -> [SKIP][53] ([i915#3116])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/
igt@kms_content_protection@dp-mst-type-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][54] ([i915#3116])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/
igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
>     - shard-iclb:         NOTRUN -> [SKIP][55] ([fdo#109278] / [fdo#109279]) 
+2 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/
igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
>     - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +88 similar 
issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/
igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#109279] / [i915#3359]) 
+2 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
>     - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271]) +60 similar 
issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
> 
>   * igt@kms_cursor_legacy@pipe-d-torture-bo:
>     - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#533])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@kms_cursor_legacy@pipe-d-torture-bo.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][60] ([fdo#109274]) +4 similar 
issues
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_flip@2x-flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
>     - shard-glk:          [PASS][61] -> [FAIL][62] ([i915#79])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/
igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk5/
igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
>     - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#111825]) +10 similar 
issues
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb6/
igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
>     - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +15 similar 
issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/
igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
>     - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/
igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533]) 
+1 similar issue
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl2/
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
> 
>   * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
>     - shard-tglb:         [PASS][67] -> [FAIL][68] ([i915#2839])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/
igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/
igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
>     - shard-apl:          [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +1 
similar issue
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl6/
igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>     - shard-apl:          NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265]) 
+1 similar issue
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][72] ([i915#265]) +1 similar issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
> 
>   * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping:
>     - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2733])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping.html
>     - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2733])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping.html
> 
>   * igt@kms_prime@basic-crc@first-to-second:
>     - shard-iclb:         NOTRUN -> [SKIP][75] ([i915#1836])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_prime@basic-crc@first-to-second.html
> 
>   * igt@kms_psr2_sf@cursor-plane-update-sf:
>     - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) 
+2 similar issues
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
igt@kms_psr2_sf@cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
>     - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#658])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>     - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) 
+6 similar issues
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl7/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) 
+1 similar issue
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-iclb:         [PASS][80] -> [SKIP][81] ([fdo#109642] / 
[fdo#111068] / [i915#658])
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/
igt@kms_psr2_su@page_flip.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/
igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_psr@psr2_sprite_mmap_gtt:
>     - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109441]) +1 similar 
issue
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/
igt@kms_psr@psr2_sprite_mmap_gtt.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/
igt@kms_psr@psr2_sprite_mmap_gtt.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
>     - shard-iclb:         NOTRUN -> [SKIP][84] ([fdo#109278]) +8 similar 
issues
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html
> 
>   * igt@kms_writeback@writeback-check-output:
>     - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#2437])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/
igt@kms_writeback@writeback-check-output.html
> 
>   * igt@kms_writeback@writeback-fb-id:
>     - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2437]) 
+1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@kms_writeback@writeback-fb-id.html
> 
>   * igt@kms_writeback@writeback-pixel-formats:
>     - shard-glk:          NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2437])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk1/
igt@kms_writeback@writeback-pixel-formats.html
> 
>   * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
>     - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271]) +213 similar 
issues
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/
igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html
> 
>   * igt@nouveau_crc@pipe-c-source-outp-inactive:
>     - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#2530]) +1 similar 
issue
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
>     - shard-iclb:         NOTRUN -> [SKIP][90] ([i915#2530]) +1 similar 
issue
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
> 
>   * igt@prime_nv_api@i915_nv_import_twice_check_flink_name:
>     - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109291]) +1 similar 
issue
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/
igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html
> 
>   * igt@sysfs_clients@fair-0:
>     - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#2994])
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/
igt@sysfs_clients@fair-0.html
>     - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) 
+2 similar issues
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/
igt@sysfs_clients@fair-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2994])
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/
igt@sysfs_clients@fair-0.html
> 
>   * igt@sysfs_clients@fair-1:
>     - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) 
+2 similar issues
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@sysfs_clients@fair-1.html
> 
>   * igt@sysfs_clients@sema-25:
>     - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) 
+2 similar issues
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/
igt@sysfs_clients@sema-25.html
> 
>   * igt@sysfs_heartbeat_interval@mixed@bcs0:
>     - shard-glk:          NOTRUN -> [FAIL][97] ([i915#1731])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/
igt@sysfs_heartbeat_interval@mixed@bcs0.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@feature_discovery@psr2:
>     - shard-iclb:         [SKIP][98] ([i915#658]) -> [PASS][99]
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb3/
igt@feature_discovery@psr2.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/
igt@feature_discovery@psr2.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-iclb:         [FAIL][100] ([i915#2842]) -> [PASS][101] +1 
similar issue
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-kbl:          [FAIL][102] ([i915#2842]) -> [PASS][103]
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
igt@gem_exec_fair@basic-none@vecs0.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/
igt@gem_exec_fair@basic-none@vecs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][104] ([i915#2842]) -> [PASS][105] +1 
similar issue
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk3/
igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/
igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_vm_create@destroy-race:
>     - shard-tglb:         [TIMEOUT][106] ([i915#2795]) -> [PASS][107]
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/
igt@gem_vm_create@destroy-race.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/
igt@gem_vm_create@destroy-race.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-suspend:
>     - shard-kbl:          [INCOMPLETE][108] ([i915#155] / [i915#2405]) -> 
[PASS][109]
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
igt@kms_cursor_crc@pipe-b-cursor-suspend.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/
igt@kms_cursor_crc@pipe-b-cursor-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend@c-dp1:
>     - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 
similar issues
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@kms_flip@flip-vs-suspend@c-dp1.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/
igt@kms_flip@flip-vs-suspend@c-dp1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-stridechange:
>     - shard-glk:          [FAIL][112] ([i915#49]) -> [PASS][113]
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
>     - shard-kbl:          [DMESG-WARN][114] ([i915#180] / [i915#533]) -> 
[PASS][115]
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl6/
igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
> 
>   * igt@kms_properties@connector-properties-atomic:
>     - shard-glk:          [DMESG-WARN][116] ([i915#118] / [i915#95]) -> 
[PASS][117] +3 similar issues
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/
igt@kms_properties@connector-properties-atomic.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk8/
igt@kms_properties@connector-properties-atomic.html
> 
>   * igt@kms_psr2_su@frontbuffer:
>     - shard-iclb:         [SKIP][118] ([fdo#109642] / [fdo#111068] / 
[i915#658]) -> [PASS][119]
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/
igt@kms_psr2_su@frontbuffer.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/
igt@kms_psr2_su@frontbuffer.html
> 
>   * igt@kms_psr@psr2_primary_mmap_cpu:
>     - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +2 
similar issues
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/
igt@kms_psr@psr2_primary_mmap_cpu.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/
igt@kms_psr@psr2_primary_mmap_cpu.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-kbl:          [SKIP][122] ([fdo#109271]) -> [FAIL][123] 
([i915#2842])
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/
igt@gem_exec_fair@basic-pace@vcs1.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [FAIL][124] ([i915#2842]) -> [FAIL][125] 
([i915#2849])
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb6/
igt@gem_exec_fair@basic-throttle@rcs0.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/
igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle:
>     - shard-iclb:         [WARN][126] ([i915#2684]) -> [WARN][127] 
([i915#1804] / [i915#2684])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/
igt@i915_pm_rc6_residency@rc6-idle.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/
igt@i915_pm_rc6_residency@rc6-idle.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
>     - shard-iclb:         [SKIP][128] ([i915#658]) -> [SKIP][129] 
([i915#2920]) +1 similar issue
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb5/
igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-iclb:         [SKIP][130] ([i915#2920]) -> [SKIP][131] 
([i915#658]) +1 similar issue
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL]
[135], [FAIL][136], [FAIL][137]) ([i915#180] / [i915#1814] / [i915#2292] / 
[i915#3002] / [i915#3363]) -> ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL]
[141]) ([i915#180] / [i915#3002] / [i915#3363])
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@runner@aborted.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/
igt@runner@aborted.html
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/
igt@runner@aborted.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@runner@aborted.html
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@runner@aborted.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/
igt@runner@aborted.html
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@runner@aborted.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@runner@aborted.html
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/
igt@runner@aborted.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/
igt@runner@aborted.html
>     - shard-apl:          ([FAIL][142], [FAIL][143]) ([i915#3002] / 
[i915#3363]) -> ([FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147]) 
([i915#180] / [i915#1814] / [i915#3002] / [i915#3363])
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl7/
igt@runner@aborted.html
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl3/
igt@runner@aborted.html
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@runner@aborted.html
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/
igt@runner@aborted.html
>    [146]: https://intel-gfx-ci.01.org/tree/
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/
index.html
> 




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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06 10:41   ` Janusz Krzysztofik
@ 2021-05-06 10:47     ` Petri Latvala
  2021-05-06 12:43       ` Janusz Krzysztofik
  0 siblings, 1 reply; 15+ messages in thread
From: Petri Latvala @ 2021-05-06 10:47 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev, Vudum, Lakshminarayana

On Thu, May 06, 2021 at 12:41:07PM +0200, Janusz Krzysztofik wrote:
> On czwartek, 6 maja 2021 10:42:55 CEST Patchwork wrote:
> > == Series Details ==
> > 
> > Series: lib/i915/perf: Fix non-card0 processing (rev4)
> > URL   : https://patchwork.freedesktop.org/series/89701/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> > 
> >   Serious unknown changes coming with IGTPW_5786_full absolutely need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in IGTPW_5786_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_5786/
> index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in 
> IGTPW_5786_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
> >     - shard-tglb:         [PASS][1] -> [FAIL][2]
> >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/
> igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/
> igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > 
> >   * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
> >     - shard-apl:          [PASS][3] -> [FAIL][4]
> >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/
> igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
> igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> >     - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
> >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
> igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
> igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> 
> The change only affects two tests which are calling intel_perf_for_fd(): perf 
> and core_hotunplug.  In the two latter cases reported above, none of those two 
> tests were executed in the same run before the reported failure occurred so 
> there is no way for the change to be responsible for that failure.
> 
> In the first case of the above three, a perf test was indeed executed a few 
> steps before the reported failure occurred, but for me it's hard to understand 
> how that could be the reason of that failure, close to impossible.  Lakshmi, 
> can we please retry?

Retest queued.


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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev5)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
  2021-05-06  7:46 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
  2021-05-06  8:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-06 11:56 ` Patchwork
  2021-05-06 13:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-05-06 11:56 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev5)
URL   : https://patchwork.freedesktop.org/series/89701/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10051 -> IGTPW_5787
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@sync-gfx0:
    - fi-tgl-y:           NOTRUN -> [SKIP][1] ([fdo#109315] / [i915#2575]) +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/fi-tgl-y/igt@amdgpu/amd_cs_nop@sync-gfx0.html

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

  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1208]: https://gitlab.freedesktop.org/drm/intel/issues/1208
  [i915#1614]: https://gitlab.freedesktop.org/drm/intel/issues/1614
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575


Participating hosts (44 -> 40)
------------------------------

  Additional (1): fi-cml-drallion 
  Missing    (5): fi-ilk-m540 fi-hsw-4200u fi-ctg-p8600 fi-dg1-1 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6080 -> IGTPW_5787

  CI-20190529: 20190529
  CI_DRM_10051: 192c13a9a811dc07a77e56aae334fad855903764 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5787: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/index.html
  IGT_6080: 1c450c3d4df19cf1087b8ccff3b62cb51addacae @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06 10:47     ` Petri Latvala
@ 2021-05-06 12:43       ` Janusz Krzysztofik
  2021-05-06 12:46         ` Petri Latvala
  0 siblings, 1 reply; 15+ messages in thread
From: Janusz Krzysztofik @ 2021-05-06 12:43 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, Vudum, Lakshminarayana

On czwartek, 6 maja 2021 12:47:26 CEST Petri Latvala wrote:
> On Thu, May 06, 2021 at 12:41:07PM +0200, Janusz Krzysztofik wrote:
> > On czwartek, 6 maja 2021 10:42:55 CEST Patchwork wrote:
> > > == Series Details ==
> > > 
> > > Series: lib/i915/perf: Fix non-card0 processing (rev4)
> > > URL   : https://patchwork.freedesktop.org/series/89701/
> > > State : failure
> > > 
> > > == Summary ==
> > > 
> > > CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
> > > ====================================================
> > > 
> > > Summary
> > > -------
> > > 
> > >   **FAILURE**
> > > 
> > >   Serious unknown changes coming with IGTPW_5786_full absolutely need to be
> > >   verified manually.
> > >   
> > >   If you think the reported changes have nothing to do with the changes
> > >   introduced in IGTPW_5786_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_5786/
> > index.html
> > > 
> > > Possible new issues
> > > -------------------
> > > 
> > >   Here are the unknown changes that may have been introduced in 
> > IGTPW_5786_full:
> > > 
> > > ### IGT changes ###
> > > 
> > > #### Possible regressions ####
> > > 
> > >   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
> > >     - shard-tglb:         [PASS][1] -> [FAIL][2]
> > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/
> > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/
> > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > > 
> > >   * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
> > >     - shard-apl:          [PASS][3] -> [FAIL][4]
> > >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/
> > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
> > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > >     - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
> > >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
> > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
> > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > 
> > The change only affects two tests which are calling intel_perf_for_fd(): perf 
> > and core_hotunplug.  In the two latter cases reported above, none of those two 
> > tests were executed in the same run before the reported failure occurred so 
> > there is no way for the change to be responsible for that failure.
> > 
> > In the first case of the above three, a perf test was indeed executed a few 
> > steps before the reported failure occurred, but for me it's hard to understand 
> > how that could be the reason of that failure, close to impossible.  Lakshmi, 
> > can we please retry?
> 
> Retest queued.

The second attempt have apparently given better results, thank you.

Janusz

> 
> 
> 




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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06 12:43       ` Janusz Krzysztofik
@ 2021-05-06 12:46         ` Petri Latvala
  2021-05-06 12:50           ` Janusz Krzysztofik
  0 siblings, 1 reply; 15+ messages in thread
From: Petri Latvala @ 2021-05-06 12:46 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev, Vudum, Lakshminarayana

On Thu, May 06, 2021 at 02:43:12PM +0200, Janusz Krzysztofik wrote:
> On czwartek, 6 maja 2021 12:47:26 CEST Petri Latvala wrote:
> > On Thu, May 06, 2021 at 12:41:07PM +0200, Janusz Krzysztofik wrote:
> > > On czwartek, 6 maja 2021 10:42:55 CEST Patchwork wrote:
> > > > == Series Details ==
> > > > 
> > > > Series: lib/i915/perf: Fix non-card0 processing (rev4)
> > > > URL   : https://patchwork.freedesktop.org/series/89701/
> > > > State : failure
> > > > 
> > > > == Summary ==
> > > > 
> > > > CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
> > > > ====================================================
> > > > 
> > > > Summary
> > > > -------
> > > > 
> > > >   **FAILURE**
> > > > 
> > > >   Serious unknown changes coming with IGTPW_5786_full absolutely need to be
> > > >   verified manually.
> > > >   
> > > >   If you think the reported changes have nothing to do with the changes
> > > >   introduced in IGTPW_5786_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_5786/
> > > index.html
> > > > 
> > > > Possible new issues
> > > > -------------------
> > > > 
> > > >   Here are the unknown changes that may have been introduced in 
> > > IGTPW_5786_full:
> > > > 
> > > > ### IGT changes ###
> > > > 
> > > > #### Possible regressions ####
> > > > 
> > > >   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
> > > >     - shard-tglb:         [PASS][1] -> [FAIL][2]
> > > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/
> > > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > > >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/
> > > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > > > 
> > > >   * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
> > > >     - shard-apl:          [PASS][3] -> [FAIL][4]
> > > >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/
> > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
> > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > >     - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
> > > >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
> > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
> > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > 
> > > The change only affects two tests which are calling intel_perf_for_fd(): perf 
> > > and core_hotunplug.  In the two latter cases reported above, none of those two 
> > > tests were executed in the same run before the reported failure occurred so 
> > > there is no way for the change to be responsible for that failure.
> > > 
> > > In the first case of the above three, a perf test was indeed executed a few 
> > > steps before the reported failure occurred, but for me it's hard to understand 
> > > how that could be the reason of that failure, close to impossible.  Lakshmi, 
> > > can we please retry?
> > 
> > Retest queued.
> 
> The second attempt have apparently given better results, thank you.

But the shard results are not in yet, that was just BAT.


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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06 12:46         ` Petri Latvala
@ 2021-05-06 12:50           ` Janusz Krzysztofik
  0 siblings, 0 replies; 15+ messages in thread
From: Janusz Krzysztofik @ 2021-05-06 12:50 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, Vudum, Lakshminarayana

On czwartek, 6 maja 2021 14:46:56 CEST Petri Latvala wrote:
> On Thu, May 06, 2021 at 02:43:12PM +0200, Janusz Krzysztofik wrote:
> > On czwartek, 6 maja 2021 12:47:26 CEST Petri Latvala wrote:
> > > On Thu, May 06, 2021 at 12:41:07PM +0200, Janusz Krzysztofik wrote:
> > > > On czwartek, 6 maja 2021 10:42:55 CEST Patchwork wrote:
> > > > > == Series Details ==
> > > > > 
> > > > > Series: lib/i915/perf: Fix non-card0 processing (rev4)
> > > > > URL   : https://patchwork.freedesktop.org/series/89701/
> > > > > State : failure
> > > > > 
> > > > > == Summary ==
> > > > > 
> > > > > CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
> > > > > ====================================================
> > > > > 
> > > > > Summary
> > > > > -------
> > > > > 
> > > > >   **FAILURE**
> > > > > 
> > > > >   Serious unknown changes coming with IGTPW_5786_full absolutely need to be
> > > > >   verified manually.
> > > > >   
> > > > >   If you think the reported changes have nothing to do with the changes
> > > > >   introduced in IGTPW_5786_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_5786/
> > > > index.html
> > > > > 
> > > > > Possible new issues
> > > > > -------------------
> > > > > 
> > > > >   Here are the unknown changes that may have been introduced in 
> > > > IGTPW_5786_full:
> > > > > 
> > > > > ### IGT changes ###
> > > > > 
> > > > > #### Possible regressions ####
> > > > > 
> > > > >   * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
> > > > >     - shard-tglb:         [PASS][1] -> [FAIL][2]
> > > > >    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/
> > > > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > > > >    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/
> > > > igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
> > > > > 
> > > > >   * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
> > > > >     - shard-apl:          [PASS][3] -> [FAIL][4]
> > > > >    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/
> > > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > > >    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/
> > > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > > >     - shard-kbl:          [PASS][5] -> [FAIL][6] +1 similar issue
> > > > >    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/
> > > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > > >    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/
> > > > igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
> > > > 
> > > > The change only affects two tests which are calling intel_perf_for_fd(): perf 
> > > > and core_hotunplug.  In the two latter cases reported above, none of those two 
> > > > tests were executed in the same run before the reported failure occurred so 
> > > > there is no way for the change to be responsible for that failure.
> > > > 
> > > > In the first case of the above three, a perf test was indeed executed a few 
> > > > steps before the reported failure occurred, but for me it's hard to understand 
> > > > how that could be the reason of that failure, close to impossible.  Lakshmi, 
> > > > can we please retry?
> > > 
> > > Retest queued.
> > 
> > The second attempt have apparently given better results, thank you.
> 
> But the shard results are not in yet, that was just BAT.

Oh, I missed that, sorry.

Janusz

> 
> 
> 




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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev5)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  2021-05-06 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork
@ 2021-05-06 13:24 ` Patchwork
  2021-05-06 14:41   ` Janusz Krzysztofik
  2021-05-06 15:38 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2021-05-06 13:24 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev5)
URL   : https://patchwork.freedesktop.org/series/89701/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10051_full -> IGTPW_5787_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@linear-16bpp-rotate-0:
    - shard-tglb:         [PASS][1] -> [FAIL][2] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/igt@kms_big_fb@linear-16bpp-rotate-0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/igt@kms_big_fb@linear-16bpp-rotate-0.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][4] ([i915#180]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk5/igt@gem_exec_fair@basic-deadline.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][9] ([i915#2842]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842]) +2 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_reloc@basic-wide-active@bcs0:
    - shard-apl:          NOTRUN -> [FAIL][14] ([i915#2389]) +3 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/igt@gem_exec_reloc@basic-wide-active@bcs0.html

  * igt@gem_exec_whisper@basic-forked-all:
    - shard-glk:          [PASS][15] -> [DMESG-WARN][16] ([i915#118] / [i915#95])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk6/igt@gem_exec_whisper@basic-forked-all.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/igt@gem_exec_whisper@basic-forked-all.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#307]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3323])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl1/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#3297])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#3297])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@set-cache-level:
    - shard-kbl:          NOTRUN -> [FAIL][22] ([i915#3324])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl4/igt@gem_userptr_blits@set-cache-level.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#2527])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/igt@gen9_exec_parse@bb-oversize.html
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2527])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][25] ([i915#454])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#111644] / [i915#1397] / [i915#2411])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#110892])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271]) +166 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111614])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111615])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

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

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

  * igt@kms_color_chamelium@pipe-b-ctm-0-25:
    - shard-kbl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@kms_color_chamelium@pipe-b-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
    - shard-snb:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) +21 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb2/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#3116])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#3116])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/igt@kms_content_protection@dp-mst-type-0.html

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

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-size-change:
    - shard-tglb:         [PASS][40] -> [FAIL][41] ([i915#2124])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109279] / [i915#3359]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
    - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271]) +26 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html

  * igt@kms_dp_tiled_display@basic-test-pattern:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#426])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/igt@kms_dp_tiled_display@basic-test-pattern.html
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#426])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb6/igt@kms_dp_tiled_display@basic-test-pattern.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][46] -> [INCOMPLETE][47] ([i915#180] / [i915#1982])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-busy-flip:
    - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271]) +58 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/igt@kms_flip@2x-busy-flip.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109274]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
    - shard-apl:          NOTRUN -> [FAIL][50] ([i915#79])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][51] -> [DMESG-WARN][52] ([i915#180])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
    - shard-apl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2642]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
    - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#49])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +443 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109280]) +8 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][59] -> [DMESG-WARN][60] ([i915#180]) +4 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][61] ([i915#265])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([i915#658])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
    - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#658])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][67] -> [SKIP][68] ([fdo#109441])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/igt@kms_psr@psr2_no_drrs.html

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

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

  * igt@nouveau_crc@pipe-c-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#2530]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/igt@nouveau_crc@pipe-c-source-outp-inactive.html
    - shard-iclb:         NOTRUN -> [SKIP][72] ([i915#2530]) +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/igt@nouveau_crc@pipe-c-source-outp-inactive.html

  * igt@runner@aborted:
    - shard-snb:          NOTRUN -> ([FAIL][73], [FAIL][74]) ([i915#3002] / [i915#698])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/igt@runner@aborted.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/igt@runner@aborted.html

  * igt@sysfs_clients@create:
    - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2994]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/igt@sysfs_clients@create.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#2994])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/igt@sysfs_clients@fair-0.html
    - shard-glk:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2994])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/igt@sysfs_clients@fair-0.html
    - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#2994])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/igt@sysfs_clients@fair-0.html
    - shard-kbl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/igt@sysfs_clients@fair-0.html

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][80] ([i915#2369] / [i915#3063]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/igt@gem_eio@unwedge-stress.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [FAIL][82] ([i915#2842]) -> [PASS][83] +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][84] ([i915#2842]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [FAIL][86] ([i915#2842]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-sync@rcs0:
    - shard-kbl:          [SKIP][88] ([fdo#109271]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/igt@gem_exec_fair@basic-sync@rcs0.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@gem_exec_fair@basic-sync@rcs0.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [SKIP][90] ([i915#2190]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb6/igt@gem_huc_copy@huc-copy.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/igt@gem_huc_copy@huc-copy.html

  * igt@gem_mmap_gtt@cpuset-big-copy-xy:
    - shard-glk:          [FAIL][92] ([i915#307]) -> [PASS][93] +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk9/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk4/igt@gem_mmap_gtt@cpuset-big-copy-xy.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-iclb:         [FAIL][94] ([i915#307]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/igt@gem_mmap_gtt@cpuset-medium-copy.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          [INCOMPLETE][96] ([i915#2880]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_suspend@debugfs-reader:
    - shard-kbl:          [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +2 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/igt@i915_suspend@debugfs-reader.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/igt@i915_suspend@debugfs-reader.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-glk:          [FAIL][100] ([i915#49]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_properties@connector-properties-atomic:
    - shard-glk:          [DMESG-WARN][102] ([i915#118] / [i915#95]) -> [PASS][103] +3 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/igt@kms_properties@connector-properties-atomic.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/igt@kms_properties@connector-properties-atomic.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [SKIP][104] ([fdo#109441]) -> [PASS][105] +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/igt@kms_psr@psr2_sprite_render.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/igt@kms_psr@psr2_sprite_render.html

  * igt@perf@polling-parameterized:
    - shard-glk:          [FAIL][106] ([i915#1542]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk1/igt@perf@polling-parameterized.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk2/igt@perf@polling-parameterized.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][108] ([i915#2849]) -> [FAIL][109] ([i915#2842])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][110] ([i915#2920]) -> [SKIP][111] ([i915#658]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][112] ([i915#658]) -> [SKIP][113] ([i915#2920]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl2/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl7/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/igt@runner@aborted.html
    - shard-apl:          ([FAIL][126], [FAIL][127]) ([i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][128], [FAIL][129], [FAIL][130]) ([i915#180] / [i915#3002] / [i915#3363])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/igt@runner@aborted.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/igt@runner@aborted.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/igt@runner@aborted.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/igt@runner@aborted.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2642]: https://gitlab.freedesktop.org/drm/intel/issues/2642
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [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#2880]: https://gitlab.freedesktop.org/drm/intel/issues/2880
  [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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3324]: https://gitlab.freedesktop.org/drm/intel/issues/3324
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


Participating hosts (11 -> 8)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6080 -> IGTPW_5787
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev5)
  2021-05-06 13:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-06 14:41   ` Janusz Krzysztofik
  2021-05-06 16:03     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 15+ messages in thread
From: Janusz Krzysztofik @ 2021-05-06 14:41 UTC (permalink / raw)
  To: igt-dev; +Cc: Latvala Petri, Vudum, Lakshminarayana

On czwartek, 6 maja 2021 15:24:19 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing (rev5)
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10051_full -> IGTPW_5787_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5787_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5787_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_5787/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in 
IGTPW_5787_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-0:
>     - shard-tglb:         [PASS][1] -> [FAIL][2] +1 similar issue
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/
igt@kms_big_fb@linear-16bpp-rotate-0.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/
igt@kms_big_fb@linear-16bpp-rotate-0.html

No perf nor core_hotunplug tests which use the library helper affected by the 
change were executed in the same run, no reason to blame the change for the 
failure, I believe.

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5787_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_create@create-massive:
>     - shard-snb:          NOTRUN -> [DMESG-WARN][3] ([i915#3002]) +1 similar 
issue
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_isolation@preservation-s3@vcs0:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][4] ([i915#180]) +2 similar 
issues
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_ctx_isolation@preservation-s3@vcs0.html
> 
>   * igt@gem_ctx_persistence@clone:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) 
+6 similar issues
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@gem_ctx_persistence@clone.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk5/
igt@gem_exec_fair@basic-deadline.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-kbl:          NOTRUN -> [FAIL][9] ([i915#2842]) +3 similar 
issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         [PASS][10] -> [FAIL][11] ([i915#2842])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@gem_exec_fair@basic-pace@vcs1.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842]) +2 similar 
issues
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk3/
igt@gem_exec_fair@basic-pace@vecs0.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@gem_exec_reloc@basic-wide-active@bcs0:
>     - shard-apl:          NOTRUN -> [FAIL][14] ([i915#2389]) +3 similar 
issues
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@gem_exec_reloc@basic-wide-active@bcs0.html
> 
>   * igt@gem_exec_whisper@basic-forked-all:
>     - shard-glk:          [PASS][15] -> [DMESG-WARN][16] ([i915#118] / 
[i915#95])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk6/
igt@gem_exec_whisper@basic-forked-all.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/
igt@gem_exec_whisper@basic-forked-all.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-odd:
>     - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#307]) +1 similar 
issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb1/
igt@gem_mmap_gtt@cpuset-big-copy-odd.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@gem_mmap_gtt@cpuset-big-copy-odd.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3323])
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl1/
igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#3297])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#3297])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_userptr_blits@set-cache-level:
>     - shard-kbl:          NOTRUN -> [FAIL][22] ([i915#3324])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl4/
igt@gem_userptr_blits@set-cache-level.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#2527])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/
igt@gen9_exec_parse@bb-oversize.html
>     - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2527])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         NOTRUN -> [FAIL][25] ([i915#454])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#111644] / [i915#1397] / 
[i915#2411])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>     - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#110892])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>     - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271]) +166 similar 
issues
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl3/
igt@i915_pm_rpm@modeset-pc8-residency-stress.html
> 
>   * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>     - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/
igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
>     - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111614])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/
igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111615])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/
igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_chamelium@hdmi-edid-change-during-suspend:
>     - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) 
+18 similar issues
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@kms_chamelium@hdmi-edid-change-during-suspend.html
> 
>   * igt@kms_color@pipe-d-ctm-green-to-red:
>     - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#109278] / [i915#1149])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@kms_color@pipe-d-ctm-green-to-red.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-0-25:
>     - shard-kbl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) 
+5 similar issues
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@kms_color_chamelium@pipe-b-ctm-0-25.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
>     - shard-snb:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) 
+21 similar issues
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb2/
igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#3116])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_content_protection@dp-mst-type-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#3116])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-apl:          NOTRUN -> [TIMEOUT][38] ([i915#1319])
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_content_protection@legacy.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
>     - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109278] / [fdo#109279]) 
+1 similar issue
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-size-change:
>     - shard-tglb:         [PASS][40] -> [FAIL][41] ([i915#2124])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb7/
igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109279] / [i915#3359]) 
+2 similar issues
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
>     - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271]) +26 similar 
issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
> 
>   * igt@kms_dp_tiled_display@basic-test-pattern:
>     - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#426])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/
igt@kms_dp_tiled_display@basic-test-pattern.html
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#426])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb6/
igt@kms_dp_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-apl:          [PASS][46] -> [INCOMPLETE][47] ([i915#180] / 
[i915#1982])
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl3/
igt@kms_fbcon_fbt@fbc-suspend.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_flip@2x-busy-flip:
>     - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271]) +58 similar 
issues
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@kms_flip@2x-busy-flip.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109274]) +2 similar 
issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_flip@2x-flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
>     - shard-apl:          NOTRUN -> [FAIL][50] ([i915#79])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>     - shard-apl:          [PASS][51] -> [DMESG-WARN][52] ([i915#180])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl2/
igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
>     - shard-apl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2642]) 
+1 similar issue
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#49])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
>     - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111825]) +11 similar 
issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
>     - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +443 similar 
issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/
igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>     - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109280]) +8 similar 
issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_hdr@bpc-switch-suspend:
>     - shard-kbl:          [PASS][59] -> [DMESG-WARN][60] ([i915#180]) +4 
similar issues
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/
igt@kms_hdr@bpc-switch-suspend.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][61] ([i915#265])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
>     - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) 
+1 similar issue
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
>     - shard-iclb:         NOTRUN -> [SKIP][63] ([i915#658])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
>     - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#658])
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk1/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>     - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#658]) 
+3 similar issues
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][67] -> [SKIP][68] ([fdo#109441])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@kms_psr@psr2_no_drrs.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
>     - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278]) +3 similar 
issues
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html
> 
>   * igt@kms_vblank@pipe-d-wait-idle:
>     - shard-apl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#533])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@kms_vblank@pipe-d-wait-idle.html
> 
>   * igt@nouveau_crc@pipe-c-source-outp-inactive:
>     - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#2530]) +1 similar 
issue
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
>     - shard-iclb:         NOTRUN -> [SKIP][72] ([i915#2530]) +1 similar 
issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
> 
>   * igt@runner@aborted:
>     - shard-snb:          NOTRUN -> ([FAIL][73], [FAIL][74]) ([i915#3002] / 
[i915#698])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@runner@aborted.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@runner@aborted.html
> 
>   * igt@sysfs_clients@create:
>     - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2994]) 
+1 similar issue
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@sysfs_clients@create.html
> 
>   * igt@sysfs_clients@fair-0:
>     - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#2994])
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/
igt@sysfs_clients@fair-0.html
>     - shard-glk:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2994])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@sysfs_clients@fair-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#2994])
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@sysfs_clients@fair-0.html
>     - shard-kbl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@sysfs_clients@fair-0.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-tglb:         [TIMEOUT][80] ([i915#2369] / [i915#3063]) -> 
[PASS][81]
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/
igt@gem_eio@unwedge-stress.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          [FAIL][82] ([i915#2842]) -> [PASS][83] +2 similar 
issues
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-iclb:         [FAIL][84] ([i915#2842]) -> [PASS][85]
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb6/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-kbl:          [FAIL][86] ([i915#2842]) -> [PASS][87]
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl3/
igt@gem_exec_fair@basic-pace@rcs0.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-sync@rcs0:
>     - shard-kbl:          [SKIP][88] ([fdo#109271]) -> [PASS][89]
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/
igt@gem_exec_fair@basic-sync@rcs0.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_exec_fair@basic-sync@rcs0.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-tglb:         [SKIP][90] ([i915#2190]) -> [PASS][91]
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb6/
igt@gem_huc_copy@huc-copy.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/
igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
>     - shard-glk:          [FAIL][92] ([i915#307]) -> [PASS][93] +1 similar 
issue
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk9/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk4/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 
>   * igt@gem_mmap_gtt@cpuset-medium-copy:
>     - shard-iclb:         [FAIL][94] ([i915#307]) -> [PASS][95]
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@gem_mmap_gtt@cpuset-medium-copy.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_mmap_gtt@cpuset-medium-copy.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-snb:          [INCOMPLETE][96] ([i915#2880]) -> [PASS][97]
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-snb6/
igt@i915_module_load@reload-with-fault-injection.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/
igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_suspend@debugfs-reader:
>     - shard-kbl:          [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +2 
similar issues
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@i915_suspend@debugfs-reader.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@i915_suspend@debugfs-reader.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-stridechange:
>     - shard-glk:          [FAIL][100] ([i915#49]) -> [PASS][101]
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
> 
>   * igt@kms_properties@connector-properties-atomic:
>     - shard-glk:          [DMESG-WARN][102] ([i915#118] / [i915#95]) -> 
[PASS][103] +3 similar issues
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_properties@connector-properties-atomic.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/
igt@kms_properties@connector-properties-atomic.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-iclb:         [SKIP][104] ([fdo#109441]) -> [PASS][105] +1 
similar issue
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@kms_psr@psr2_sprite_render.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@perf@polling-parameterized:
>     - shard-glk:          [FAIL][106] ([i915#1542]) -> [PASS][107]
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk1/
igt@perf@polling-parameterized.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk2/
igt@perf@polling-parameterized.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [FAIL][108] ([i915#2849]) -> [FAIL][109] 
([i915#2842])
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@gem_exec_fair@basic-throttle@rcs0.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         [SKIP][110] ([i915#2920]) -> [SKIP][111] 
([i915#658]) +1 similar issue
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-iclb:         [SKIP][112] ([i915#658]) -> [SKIP][113] 
([i915#2920]) +1 similar issue
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb5/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][114], [FAIL][115], [FAIL][116], [FAIL]
[117], [FAIL][118]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> 
([FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], 
[FAIL][125]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / 
[i915#3002] / [i915#3363])
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl2/
igt@runner@aborted.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl7/
igt@runner@aborted.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@runner@aborted.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@runner@aborted.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@runner@aborted.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/
igt@runner@aborted.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>     - shard-apl:          ([FAIL][126], [FAIL][127]) ([i915#1814] / 
[i915#3002] / [i915#3363]) -> ([FAIL][128], [FAIL][129], [FAIL][130]) 
([i915#180] / [i915#3002] / [i915#3363])
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/
igt@runner@aborted.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/
igt@runner@aborted.html
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@runner@aborted.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@runner@aborted.html
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@runner@aborted.html
> 
>   
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>   [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
>   [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
>   [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
>   [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
>   [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
>   [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369
>   [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
>   [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
>   [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
>   [i915#2642]: https://gitlab.freedesktop.org/drm/intel/issues/2642
>   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>   [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#2880]: https://gitlab.freedesktop.org/drm/intel/issues/2880
>   [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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
>   [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
>   [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3324]: https://gitlab.freedesktop.org/drm/intel/issues/3324
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
>   [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698
>   [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
>   [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> 
> 
> Participating hosts (11 -> 8)
> ------------------------------
> 
>   Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_6080 -> IGTPW_5787
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/
index.html
> 




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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
                   ` (3 preceding siblings ...)
  2021-05-06 13:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-06 15:38 ` Patchwork
  2021-05-06 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2021-05-07  9:19 ` [igt-dev] ✗ GitLab.Pipeline: warning for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-05-06 15:38 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev4)
URL   : https://patchwork.freedesktop.org/series/89701/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding:
    - shard-kbl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][3] ([i915#180])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][5] -> [TIMEOUT][6] ([i915#2369] / [i915#2481] / [i915#3070])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][7] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
    - shard-apl:          NOTRUN -> [FAIL][8] ([i915#2846])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2842]) +4 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html

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

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-iclb:         [PASS][12] -> [FAIL][13] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_mmap_offset@clear:
    - shard-glk:          [PASS][16] -> [FAIL][17] ([i915#3160])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@gem_mmap_offset@clear.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_mmap_offset@clear.html

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

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#768])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#3297])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#3297])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][22] -> [INCOMPLETE][23] ([i915#155] / [i915#2405])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109289]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#112306]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#2527])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#2527])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         NOTRUN -> [FAIL][28] ([i915#454])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@i915_pm_dc@dc6-psr.html
    - shard-tglb:         NOTRUN -> [FAIL][29] ([i915#454])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111644] / [i915#1397] / [i915#2411])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#110892])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl4/igt@i915_suspend@forcewake.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@i915_suspend@forcewake.html

  * igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs:
    - shard-glk:          [PASS][34] -> [DMESG-FAIL][35] ([i915#118] / [i915#95])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#111614])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-tglb:         [PASS][38] -> [FAIL][39] ([i915#3434])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#111615])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#110723])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo:
    - shard-snb:          NOTRUN -> [SKIP][42] ([fdo#109271]) +366 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb2/igt@kms_ccs@pipe-a-ccs-on-another-bo.html

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

  * igt@kms_color@pipe-d-ctm-green-to-red:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#1149])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color@pipe-d-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

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

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html

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

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][50] ([i915#1319])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3116])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][52] ([i915#3116])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
    - shard-kbl:          NOTRUN -> [SKIP][54] ([fdo#109271]) +88 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
    - shard-apl:          [PASS][55] -> [FAIL][56] ([i915#3444])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
    - shard-kbl:          [PASS][57] -> [FAIL][58] ([i915#3444])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#109279] / [i915#3359]) +2 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
    - shard-glk:          NOTRUN -> [SKIP][60] ([fdo#109271]) +60 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
    - shard-glk:          [PASS][63] -> [FAIL][64] ([i915#79])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109280]) +15 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#533])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-tglb:         [PASS][69] -> [FAIL][70] ([i915#2839])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [PASS][71] -> [DMESG-WARN][72] ([i915#180]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2733])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2733])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#1836])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_prime@basic-crc@first-to-second.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([i915#658])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

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

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

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109642] / [fdo#111068] / [i915#658])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][84] -> [SKIP][85] ([fdo#109441]) +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html

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

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][87] ([i915#2437])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2437]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_writeback@writeback-fb-id.html

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

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271]) +213 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@nouveau_crc@pipe-c-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([i915#2530]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html
    - shard-iclb:         NOTRUN -> [SKIP][92] ([i915#2530]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@nouveau_crc@pipe-c-source-outp-inactive.html

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

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([i915#2994])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@sysfs_clients@fair-0.html
    - shard-glk:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +2 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@sysfs_clients@fair-0.html
    - shard-iclb:         NOTRUN -> [SKIP][96] ([i915#2994])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#2994]) +2 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@sema-25:
    - shard-kbl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2994]) +2 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@sysfs_clients@sema-25.html

  * igt@sysfs_heartbeat_interval@mixed@bcs0:
    - shard-glk:          NOTRUN -> [FAIL][99] ([i915#1731])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@sysfs_heartbeat_interval@mixed@bcs0.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][100] ([i915#658]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb3/igt@feature_discovery@psr2.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][102] ([i915#2842]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [FAIL][104] ([i915#2842]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@gem_exec_fair@basic-none@vecs0.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][106] ([i915#2842]) -> [PASS][107] +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_vm_create@destroy-race:
    - shard-tglb:         [TIMEOUT][108] ([i915#2795]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@gem_vm_create@destroy-race.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@gem_vm_create@destroy-race.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-kbl:          [INCOMPLETE][110] ([i915#155] / [i915#2405]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][112] ([i915#180]) -> [PASS][113] +4 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-glk:          [FAIL][114] ([i915#49]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][116] ([i915#180] / [i915#533]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_properties@connector-properties-atomic:
    - shard-glk:          [DMESG-WARN][118] ([i915#118] / [i915#95]) -> [PASS][119] +3 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_properties@connector-properties-atomic.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk8/igt@kms_properties@connector-properties-atomic.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][120] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@kms_psr2_su@frontbuffer.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][122] ([fdo#109441]) -> [PASS][123] +2 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][124] ([fdo#109271]) -> [FAIL][125] ([i915#2842])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][126] ([i915#2842]) -> [FAIL][127] ([i915#2849])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][128] ([i915#2684]) -> [WARN][129] ([i915#1804] / [i915#2684])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-iclb:         [SKIP][130] ([i915#658]) -> [SKIP][131] ([i915#2920]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][132] ([i915#2920]) -> [SKIP][133] ([i915#658]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#180] / [i915#1814] / [i915#2292] / [i915#3002] / [i915#3363]) -> ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143]) ([i915#180] / [i915#3002] / [i915#3363])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][144], [FAIL][145]) ([i915#3002] / [i915#3363]) -> ([FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363])
   [144]: https://intel-gfx-ci.01.org/tree

== Logs ==

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

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

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/i915/perf: Fix non-card0 processing (rev4)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
                   ` (4 preceding siblings ...)
  2021-05-06 15:38 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
@ 2021-05-06 15:46 ` Patchwork
  2021-05-07  9:19 ` [igt-dev] ✗ GitLab.Pipeline: warning for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-05-06 15:46 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev4)
URL   : https://patchwork.freedesktop.org/series/89701/
State : success

== Summary ==

CI Bug Log - changes from IGT_6080_full -> IGTPW_5786_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-apl:          NOTRUN -> [DMESG-WARN][1] ([i915#180])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][3] -> [TIMEOUT][4] ([i915#2369] / [i915#2481] / [i915#3070])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][5] ([i915#2846])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
    - shard-apl:          NOTRUN -> [FAIL][6] ([i915#2846])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2842]) +4 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][9] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-iclb:         [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@gem_exec_fair@basic-pace@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [PASS][12] -> [SKIP][13] ([fdo#109271])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_mmap_offset@clear:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#3160])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@gem_mmap_offset@clear.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_mmap_offset@clear.html

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

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][17] ([i915#768])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][18] ([i915#3297])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#3297])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][20] -> [INCOMPLETE][21] ([i915#155] / [i915#2405])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen3_render_linear_blits:
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#109289]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#112306]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][24] ([i915#2527])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#2527])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         NOTRUN -> [FAIL][26] ([i915#454])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@i915_pm_dc@dc6-psr.html
    - shard-tglb:         NOTRUN -> [FAIL][27] ([i915#454])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][28] ([fdo#111644] / [i915#1397] / [i915#2411])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110892])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][30] -> [DMESG-WARN][31] ([i915#180]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl4/igt@i915_suspend@forcewake.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@i915_suspend@forcewake.html

  * igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs:
    - shard-glk:          [PASS][32] -> [DMESG-FAIL][33] ([i915#118] / [i915#95])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_atomic_transition@modeset-transition-fencing@1x-outputs.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#111614])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-tglb:         [PASS][36] -> [FAIL][37] ([i915#3434])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#111615])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#110723])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo:
    - shard-snb:          NOTRUN -> [SKIP][40] ([fdo#109271]) +366 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-snb2/igt@kms_ccs@pipe-a-ccs-on-another-bo.html

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

  * igt@kms_color@pipe-d-ctm-green-to-red:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#1149])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color@pipe-d-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

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

  * igt@kms_color_chamelium@pipe-c-ctm-negative:
    - shard-kbl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_color_chamelium@pipe-c-ctm-negative.html

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

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][48] ([i915#1319])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#3116])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
    - shard-iclb:         NOTRUN -> [SKIP][50] ([i915#3116])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][51] ([fdo#109278] / [fdo#109279]) +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
    - shard-kbl:          NOTRUN -> [SKIP][52] ([fdo#109271]) +88 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
    - shard-apl:          [PASS][53] -> [FAIL][54] ([i915#3444])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
    - shard-kbl:          [PASS][55] -> [FAIL][56] ([i915#3444]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#109279] / [i915#3359]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
    - shard-glk:          NOTRUN -> [SKIP][58] ([fdo#109271]) +60 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#533])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
    - shard-glk:          [PASS][61] -> [FAIL][62] ([i915#79])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109280]) +15 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-tglb:         [PASS][67] -> [FAIL][68] ([i915#2839])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb1/igt@kms_plane@pixel-format-pipe-a-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#2733])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
    - shard-kbl:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#2733])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html

  * igt@kms_prime@basic-crc@first-to-second:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([i915#1836])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@kms_prime@basic-crc@first-to-second.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#658])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html

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

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

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][80] -> [SKIP][81] ([fdo#109642] / [fdo#111068] / [i915#658])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_sprite_mmap_gtt:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([fdo#109441]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html

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

  * igt@kms_writeback@writeback-check-output:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([i915#2437])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb6/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2437]) +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@kms_writeback@writeback-fb-id.html

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

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271]) +213 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@nouveau_crc@pipe-c-source-outp-inactive:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#2530]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html
    - shard-iclb:         NOTRUN -> [SKIP][90] ([i915#2530]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb5/igt@nouveau_crc@pipe-c-source-outp-inactive.html

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

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([i915#2994])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb7/igt@sysfs_clients@fair-0.html
    - shard-glk:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk3/igt@sysfs_clients@fair-0.html
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#2994])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb1/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +2 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@sema-25:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@sysfs_clients@sema-25.html

  * igt@sysfs_heartbeat_interval@mixed@bcs0:
    - shard-glk:          NOTRUN -> [FAIL][97] ([i915#1731])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk7/igt@sysfs_heartbeat_interval@mixed@bcs0.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][98] ([i915#658]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb3/igt@feature_discovery@psr2.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][100] ([i915#2842]) -> [PASS][101] +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [FAIL][102] ([i915#2842]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@gem_exec_fair@basic-none@vecs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][104] ([i915#2842]) -> [PASS][105] +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_vm_create@destroy-race:
    - shard-tglb:         [TIMEOUT][106] ([i915#2795]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-tglb2/igt@gem_vm_create@destroy-race.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-tglb3/igt@gem_vm_create@destroy-race.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-kbl:          [INCOMPLETE][108] ([i915#155] / [i915#2405]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl3/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-glk:          [FAIL][112] ([i915#49]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk9/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][114] ([i915#180] / [i915#533]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_properties@connector-properties-atomic:
    - shard-glk:          [DMESG-WARN][116] ([i915#118] / [i915#95]) -> [PASS][117] +3 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-glk2/igt@kms_properties@connector-properties-atomic.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-glk8/igt@kms_properties@connector-properties-atomic.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][118] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb4/igt@kms_psr2_su@frontbuffer.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +2 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][122] ([fdo#109271]) -> [FAIL][123] ([i915#2842])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][124] ([i915#2842]) -> [FAIL][125] ([i915#2849])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][126] ([i915#2684]) -> [WARN][127] ([i915#1804] / [i915#2684])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
    - shard-iclb:         [SKIP][128] ([i915#658]) -> [SKIP][129] ([i915#2920]) +1 similar issue
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][130] ([i915#2920]) -> [SKIP][131] ([i915#658]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137]) ([i915#180] / [i915#1814] / [i915#2292] / [i915#3002] / [i915#3363]) -> ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141]) ([i915#180] / [i915#3002] / [i915#3363])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl3/igt@runner@aborted.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-kbl1/igt@runner@aborted.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl1/igt@runner@aborted.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-kbl7/igt@runner@aborted.html
    - shard-apl:          ([FAIL][142], [FAIL][143]) ([i915#3002] / [i915#3363]) -> ([FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl7/igt@runner@aborted.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6080/shard-apl3/igt@runner@aborted.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@runner@aborted.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl1/igt@runner@aborted.html
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl2/igt@runner@aborted.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5786/shard-apl7/igt@runner@aborted.html

  
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#1092

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev5)
  2021-05-06 14:41   ` Janusz Krzysztofik
@ 2021-05-06 16:03     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 15+ messages in thread
From: Vudum, Lakshminarayana @ 2021-05-06 16:03 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: igt-dev, Latvala, Petri

Re-reported.

-----Original Message-----
From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> 
Sent: Thursday, May 6, 2021 7:41 AM
To: igt-dev@lists.freedesktop.org
Cc: igt-dev@lists.freedesktop.org; Latvala, Petri <petri.latvala@intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev5)

On czwartek, 6 maja 2021 15:24:19 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing (rev5)
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10051_full -> IGTPW_5787_full 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5787_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5787_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_5787/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in
IGTPW_5787_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-0:
>     - shard-tglb:         [PASS][1] -> [FAIL][2] +1 similar issue
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/
igt@kms_big_fb@linear-16bpp-rotate-0.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/
igt@kms_big_fb@linear-16bpp-rotate-0.html

No perf nor core_hotunplug tests which use the library helper affected by the change were executed in the same run, no reason to blame the change for the failure, I believe.

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5787_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_create@create-massive:
>     - shard-snb:          NOTRUN -> [DMESG-WARN][3] ([i915#3002]) +1 similar 
issue
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_isolation@preservation-s3@vcs0:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][4] ([i915#180]) +2 similar 
issues
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_ctx_isolation@preservation-s3@vcs0.html
> 
>   * igt@gem_ctx_persistence@clone:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) 
+6 similar issues
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@gem_ctx_persistence@clone.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk5/
igt@gem_exec_fair@basic-deadline.html
>    [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-kbl:          NOTRUN -> [FAIL][9] ([i915#2842]) +3 similar 
issues
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         [PASS][10] -> [FAIL][11] ([i915#2842])
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@gem_exec_fair@basic-pace@vcs1.html
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-glk:          [PASS][12] -> [FAIL][13] ([i915#2842]) +2 similar 
issues
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk3/
igt@gem_exec_fair@basic-pace@vecs0.html
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@gem_exec_reloc@basic-wide-active@bcs0:
>     - shard-apl:          NOTRUN -> [FAIL][14] ([i915#2389]) +3 similar 
issues
>    [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@gem_exec_reloc@basic-wide-active@bcs0.html
> 
>   * igt@gem_exec_whisper@basic-forked-all:
>     - shard-glk:          [PASS][15] -> [DMESG-WARN][16] ([i915#118] / 
[i915#95])
>    [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk6/
igt@gem_exec_whisper@basic-forked-all.html
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/
igt@gem_exec_whisper@basic-forked-all.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-odd:
>     - shard-iclb:         [PASS][17] -> [FAIL][18] ([i915#307]) +1 similar 
issue
>    [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb1/
igt@gem_mmap_gtt@cpuset-big-copy-odd.html
>    [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@gem_mmap_gtt@cpuset-big-copy-odd.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3323])
>    [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl1/
igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@readonly-pwrite-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#3297])
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][21] ([i915#3297])
>    [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_userptr_blits@readonly-pwrite-unsync.html
> 
>   * igt@gem_userptr_blits@set-cache-level:
>     - shard-kbl:          NOTRUN -> [FAIL][22] ([i915#3324])
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl4/
igt@gem_userptr_blits@set-cache-level.html
> 
>   * igt@gen9_exec_parse@bb-oversize:
>     - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#2527])
>    [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/
igt@gen9_exec_parse@bb-oversize.html
>     - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2527])
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@gen9_exec_parse@bb-oversize.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-tglb:         NOTRUN -> [FAIL][25] ([i915#454])
>    [25]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp-stress:
>     - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#111644] / [i915#1397] / 
[i915#2411])
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>     - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#110892])
>    [27]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>     - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271]) +166 similar 
issues
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl3/
igt@i915_pm_rpm@modeset-pc8-residency-stress.html
> 
>   * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>     - shard-iclb:         NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614])
>    [29]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/
igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
>     - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#111614])
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/
igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
>     - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#111615])
>    [31]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb2/
igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
> 
>   * igt@kms_chamelium@hdmi-edid-change-during-suspend:
>     - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) 
+18 similar issues
>    [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@kms_chamelium@hdmi-edid-change-during-suspend.html
> 
>   * igt@kms_color@pipe-d-ctm-green-to-red:
>     - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#109278] / [i915#1149])
>    [33]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@kms_color@pipe-d-ctm-green-to-red.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-0-25:
>     - shard-kbl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) 
+5 similar issues
>    [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@kms_color_chamelium@pipe-b-ctm-0-25.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue:
>     - shard-snb:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) 
+21 similar issues
>    [35]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb2/
igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#3116])
>    [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_content_protection@dp-mst-type-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#3116])
>    [37]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-apl:          NOTRUN -> [TIMEOUT][38] ([i915#1319])
>    [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_content_protection@legacy.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
>     - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109278] / [fdo#109279]) 
+1 similar issue
>    [39]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb1/
igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-size-change:
>     - shard-tglb:         [PASS][40] -> [FAIL][41] ([i915#2124])
>    [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-size-change.html
>    [41]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb7/
igt@kms_cursor_crc@pipe-a-cursor-size-change.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109279] / [i915#3359]) 
+2 similar issues
>    [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
>     - shard-glk:          NOTRUN -> [SKIP][43] ([fdo#109271]) +26 similar 
issues
>    [43]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/
igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html
> 
>   * igt@kms_dp_tiled_display@basic-test-pattern:
>     - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#426])
>    [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb3/
igt@kms_dp_tiled_display@basic-test-pattern.html
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#426])
>    [45]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb6/
igt@kms_dp_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-apl:          [PASS][46] -> [INCOMPLETE][47] ([i915#180] / 
[i915#1982])
>    [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl3/
igt@kms_fbcon_fbt@fbc-suspend.html
>    [47]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_flip@2x-busy-flip:
>     - shard-kbl:          NOTRUN -> [SKIP][48] ([fdo#109271]) +58 similar 
issues
>    [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@kms_flip@2x-busy-flip.html
> 
>   * igt@kms_flip@2x-flip-vs-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][49] ([fdo#109274]) +2 similar 
issues
>    [49]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_flip@2x-flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1:
>     - shard-apl:          NOTRUN -> [FAIL][50] ([i915#79])
>    [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>     - shard-apl:          [PASS][51] -> [DMESG-WARN][52] ([i915#180])
>    [51]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl2/
igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
>    [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile:
>     - shard-apl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2642]) 
+1 similar issue
>    [53]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl7/
igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-glk:          [PASS][54] -> [FAIL][55] ([i915#49])
>    [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
>    [55]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
>     - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111825]) +11 similar 
issues
>    [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
>     - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +443 similar 
issues
>    [57]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/
igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>     - shard-iclb:         NOTRUN -> [SKIP][58] ([fdo#109280]) +8 similar 
issues
>    [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
> 
>   * igt@kms_hdr@bpc-switch-suspend:
>     - shard-kbl:          [PASS][59] -> [DMESG-WARN][60] ([i915#180]) +4 
similar issues
>    [59]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/
igt@kms_hdr@bpc-switch-suspend.html
>    [60]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][61] ([i915#265])
>    [61]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
>     - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) 
+1 similar issue
>    [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2:
>     - shard-iclb:         NOTRUN -> [SKIP][63] ([i915#658])
>    [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb7/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
>     - shard-glk:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#658])
>    [64]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk1/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
>     - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#658]) 
+3 similar issues
>    [65]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658])
>    [66]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][67] -> [SKIP][68] ([fdo#109441])
>    [67]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@kms_psr@psr2_no_drrs.html
>    [68]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
>     - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278]) +3 similar 
issues
>    [69]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html
> 
>   * igt@kms_vblank@pipe-d-wait-idle:
>     - shard-apl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#533])
>    [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@kms_vblank@pipe-d-wait-idle.html
> 
>   * igt@nouveau_crc@pipe-c-source-outp-inactive:
>     - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#2530]) +1 similar 
issue
>    [71]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb3/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
>     - shard-iclb:         NOTRUN -> [SKIP][72] ([i915#2530]) +1 similar 
issue
>    [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb8/
igt@nouveau_crc@pipe-c-source-outp-inactive.html
> 
>   * igt@runner@aborted:
>     - shard-snb:          NOTRUN -> ([FAIL][73], [FAIL][74]) ([i915#3002] / 
[i915#698])
>    [73]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@runner@aborted.html
>    [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb5/
igt@runner@aborted.html
> 
>   * igt@sysfs_clients@create:
>     - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2994]) 
+1 similar issue
>    [75]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@sysfs_clients@create.html
> 
>   * igt@sysfs_clients@fair-0:
>     - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#2994])
>    [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb1/
igt@sysfs_clients@fair-0.html
>     - shard-glk:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2994])
>    [77]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk7/
igt@sysfs_clients@fair-0.html
>     - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#2994])
>    [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@sysfs_clients@fair-0.html
>     - shard-kbl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2994])
>    [79]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@sysfs_clients@fair-0.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-tglb:         [TIMEOUT][80] ([i915#2369] / [i915#3063]) -> 
[PASS][81]
>    [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb1/
igt@gem_eio@unwedge-stress.html
>    [81]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb8/
igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          [FAIL][82] ([i915#2842]) -> [PASS][83] +2 similar 
issues
>    [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
>    [83]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk5/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-iclb:         [FAIL][84] ([i915#2842]) -> [PASS][85]
>    [84]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb6/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [85]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-kbl:          [FAIL][86] ([i915#2842]) -> [PASS][87]
>    [86]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl3/
igt@gem_exec_fair@basic-pace@rcs0.html
>    [87]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-sync@rcs0:
>     - shard-kbl:          [SKIP][88] ([fdo#109271]) -> [PASS][89]
>    [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl6/
igt@gem_exec_fair@basic-sync@rcs0.html
>    [89]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@gem_exec_fair@basic-sync@rcs0.html
> 
>   * igt@gem_huc_copy@huc-copy:
>     - shard-tglb:         [SKIP][90] ([i915#2190]) -> [PASS][91]
>    [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-tglb6/
igt@gem_huc_copy@huc-copy.html
>    [91]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-tglb5/
igt@gem_huc_copy@huc-copy.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
>     - shard-glk:          [FAIL][92] ([i915#307]) -> [PASS][93] +1 similar 
issue
>    [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk9/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>    [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk4/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 
>   * igt@gem_mmap_gtt@cpuset-medium-copy:
>     - shard-iclb:         [FAIL][94] ([i915#307]) -> [PASS][95]
>    [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@gem_mmap_gtt@cpuset-medium-copy.html
>    [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_mmap_gtt@cpuset-medium-copy.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-snb:          [INCOMPLETE][96] ([i915#2880]) -> [PASS][97]
>    [96]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-snb6/
igt@i915_module_load@reload-with-fault-injection.html
>    [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-snb6/
igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_suspend@debugfs-reader:
>     - shard-kbl:          [DMESG-WARN][98] ([i915#180]) -> [PASS][99] +2 
similar issues
>    [98]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@i915_suspend@debugfs-reader.html
>    [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl7/
igt@i915_suspend@debugfs-reader.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-stridechange:
>     - shard-glk:          [FAIL][100] ([i915#49]) -> [PASS][101]
>    [100]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
>    [101]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk6/
igt@kms_frontbuffer_tracking@fbc-stridechange.html
> 
>   * igt@kms_properties@connector-properties-atomic:
>     - shard-glk:          [DMESG-WARN][102] ([i915#118] / [i915#95]) -> 
[PASS][103] +3 similar issues
>    [102]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk2/
igt@kms_properties@connector-properties-atomic.html
>    [103]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk3/
igt@kms_properties@connector-properties-atomic.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-iclb:         [SKIP][104] ([fdo#109441]) -> [PASS][105] +1 
similar issue
>    [104]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@kms_psr@psr2_sprite_render.html
>    [105]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@perf@polling-parameterized:
>     - shard-glk:          [FAIL][106] ([i915#1542]) -> [PASS][107]
>    [106]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-glk1/
igt@perf@polling-parameterized.html
>    [107]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-glk2/
igt@perf@polling-parameterized.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [FAIL][108] ([i915#2849]) -> [FAIL][109] 
([i915#2842])
>    [108]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb8/
igt@gem_exec_fair@basic-throttle@rcs0.html
>    [109]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb6/
igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         [SKIP][110] ([i915#2920]) -> [SKIP][111] 
([i915#658]) +1 similar issue
>    [110]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>    [111]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb4/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-iclb:         [SKIP][112] ([i915#658]) -> [SKIP][113] 
([i915#2920]) +1 similar issue
>    [112]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-iclb5/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>    [113]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-iclb2/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][114], [FAIL][115], [FAIL][116], [FAIL]
[117], [FAIL][118]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363]) -> ([FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124],
[FAIL][125]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363])
>    [114]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl2/
igt@runner@aborted.html
>    [115]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [116]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [117]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl7/
igt@runner@aborted.html
>    [118]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-kbl1/
igt@runner@aborted.html
>    [119]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@runner@aborted.html
>    [120]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl1/
igt@runner@aborted.html
>    [121]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl6/
igt@runner@aborted.html
>    [122]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>    [123]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>    [124]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl2/
igt@runner@aborted.html
>    [125]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-kbl3/
igt@runner@aborted.html
>     - shard-apl:          ([FAIL][126], [FAIL][127]) ([i915#1814] / 
[i915#3002] / [i915#3363]) -> ([FAIL][128], [FAIL][129], [FAIL][130]) ([i915#180] / [i915#3002] / [i915#3363])
>    [126]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/
igt@runner@aborted.html
>    [127]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10051/shard-apl1/
igt@runner@aborted.html
>    [128]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl8/
igt@runner@aborted.html
>    [129]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl2/
igt@runner@aborted.html
>    [130]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/shard-apl6/
igt@runner@aborted.html
> 
>   
>   [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>   [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>   [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
>   [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
>   [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
>   [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>   [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>   [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>   [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
>   [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
>   [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
>   [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
>   [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
>   [i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369
>   [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
>   [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
>   [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
>   [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>   [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
>   [i915#2642]: https://gitlab.freedesktop.org/drm/intel/issues/2642
>   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>   [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#2880]: https://gitlab.freedesktop.org/drm/intel/issues/2880
>   [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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
>   [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
>   [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
>   [i915#3324]: https://gitlab.freedesktop.org/drm/intel/issues/3324
>   [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>   [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
>   [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#698]: https://gitlab.freedesktop.org/drm/intel/issues/698
>   [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
>   [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
> 
> 
> Participating hosts (11 -> 8)
> ------------------------------
> 
>   Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_6080 -> IGTPW_5787
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5787/
index.html
> 




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

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

* [igt-dev] ✗ GitLab.Pipeline: warning for lib/i915/perf: Fix non-card0 processing (rev5)
  2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
                   ` (5 preceding siblings ...)
  2021-05-06 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2021-05-07  9:19 ` Patchwork
  6 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-05-07  9:19 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: lib/i915/perf: Fix non-card0 processing (rev5)
URL   : https://patchwork.freedesktop.org/series/89701/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/314969 for the overview.

test:ninja-test-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/9536844):
      result_str += "\n\n" + result.get_log()
    File "/usr/lib/python3/dist-packages/mesonbuild/mtest.py", line 178, in get_log
      res += self.stde
  TypeError: can only concatenate str (not "bytes") to str
    1/290 lib igt_assert                          TIMEOUT 32.01 s 
  FAILED: meson-test 
  /usr/bin/meson test --no-rebuild --print-errorlogs
  ninja: build stopped: subcommand failed.
  section_end:1620301166:step_script
  section_start:1620301166:upload_artifacts_on_failure
  Uploading artifacts for failed job
  Uploading artifacts...
  build: found 1583 matching files and directories   
  Uploading artifacts as "archive" to coordinator... ok  id=9536844 responseStatus=201 Created token=fUxtTPuF
  section_end:1620301174:upload_artifacts_on_failure
  section_start:1620301174:cleanup_file_variables
  Cleaning up file based variables
  section_end:1620301176:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/314969
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-05-07  9:19 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-06  6:57 [Intel-gfx] [PATCH i-g-t v4] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
2021-05-06  7:46 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
2021-05-06  8:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-06 10:41   ` Janusz Krzysztofik
2021-05-06 10:47     ` Petri Latvala
2021-05-06 12:43       ` Janusz Krzysztofik
2021-05-06 12:46         ` Petri Latvala
2021-05-06 12:50           ` Janusz Krzysztofik
2021-05-06 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork
2021-05-06 13:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-06 14:41   ` Janusz Krzysztofik
2021-05-06 16:03     ` Vudum, Lakshminarayana
2021-05-06 15:38 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev4) Patchwork
2021-05-06 15:46 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2021-05-07  9:19 ` [igt-dev] ✗ GitLab.Pipeline: warning for lib/i915/perf: Fix non-card0 processing (rev5) Patchwork

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.