All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t v2] lib/i915/perf: Fix non-card0 processing
@ 2021-05-05 12:41 ` Janusz Krzysztofik
  0 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2021-05-05 12:41 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

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.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
---
 lib/i915/perf.c | 31 ++++++++++++++++++++++++++++---
 1 file changed, 28 insertions(+), 3 deletions(-)

diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index 56d5c0b3a..d7768468e 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -372,14 +372,39 @@ 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);
 
-	return open(path, O_DIRECTORY);
+	if (sysfs >= 0 && minor(st.st_rdev) >= 128) {
+		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 < 128; 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);
+		}
+	}
+
+	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] 8+ messages in thread

* [igt-dev] [PATCH i-g-t v2] lib/i915/perf: Fix non-card0 processing
@ 2021-05-05 12:41 ` Janusz Krzysztofik
  0 siblings, 0 replies; 8+ messages in thread
From: Janusz Krzysztofik @ 2021-05-05 12:41 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

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.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
---
 lib/i915/perf.c | 31 ++++++++++++++++++++++++++++---
 1 file changed, 28 insertions(+), 3 deletions(-)

diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index 56d5c0b3a..d7768468e 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -372,14 +372,39 @@ 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);
 
-	return open(path, O_DIRECTORY);
+	if (sysfs >= 0 && minor(st.st_rdev) >= 128) {
+		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 < 128; 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);
+		}
+	}
+
+	return sysfs;
 }
 
 struct intel_perf *
-- 
2.25.1

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev2)
  2021-05-05 12:41 ` [igt-dev] " Janusz Krzysztofik
  (?)
@ 2021-05-05 13:27 ` Patchwork
  -1 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2021-05-05 13:27 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10048 -> IGTPW_5784
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-guc:         [PASS][1] -> [SKIP][2] ([fdo#109271])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

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

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940


Participating hosts (44 -> 38)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6078 -> IGTPW_5784

  CI-20190529: 20190529
  CI_DRM_10048: 35fe05a46b0fa7d03c874079a482543ccd5496cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5784: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/index.html
  IGT_6078: 2c65d8df10f96e30a02de1db605934d3e47433dd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 2698 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] 8+ messages in thread

* Re: [Intel-gfx] [PATCH i-g-t v2] lib/i915/perf: Fix non-card0 processing
  2021-05-05 12:41 ` [igt-dev] " Janusz Krzysztofik
  (?)
  (?)
@ 2021-05-05 13:46 ` Lionel Landwerlin
  -1 siblings, 0 replies; 8+ messages in thread
From: Lionel Landwerlin @ 2021-05-05 13:46 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: intel-gfx

On 05/05/2021 15:41, Janusz Krzysztofik wrote:
> 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.
>
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> ---
>   lib/i915/perf.c | 31 ++++++++++++++++++++++++++++---
>   1 file changed, 28 insertions(+), 3 deletions(-)
>
> diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> index 56d5c0b3a..d7768468e 100644
> --- a/lib/i915/perf.c
> +++ b/lib/i915/perf.c
> @@ -372,14 +372,39 @@ 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);

Just to spell out the error paths :


if (sysfs < 0)

     return sysfs;


>   
> -	return open(path, O_DIRECTORY);
> +	if (sysfs >= 0 && minor(st.st_rdev) >= 128) {


Then just if (minor(st.st_rdev) >= 128) { ...

Maybe add a comment above this is : /* 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 < 128; 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);
You might want to set sysfs = -1 here just in the unlikely case this is 
never found.
> +		}
> +	}
> +
> +	return sysfs;
>   }
>   
>   struct intel_perf *


With the proposed changes :

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev2)
  2021-05-05 12:41 ` [igt-dev] " Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  (?)
@ 2021-05-05 14:26 ` Patchwork
  2021-05-05 15:06   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2021-05-05 14:26 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10048_full -> IGTPW_5784_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen:
    - shard-glk:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk7/igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
    - shard-apl:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-massive:
    - shard-apl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
    - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html

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

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

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-apl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl8/igt@gem_exec_fair@basic-none-share@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/igt@gem_exec_fair@basic-pace@rcs0.html

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

  * igt@gem_exec_schedule@semaphore-codependency:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +342 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/igt@gem_exec_schedule@semaphore-codependency.html

  * igt@gem_exec_whisper@basic-contexts-forked:
    - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / [i915#95]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk1/igt@gem_exec_whisper@basic-contexts-forked.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/igt@gem_exec_whisper@basic-contexts-forked.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#307])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk3/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html

  * igt@gem_mmap_gtt@cpuset-big-copy-xy:
    - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#307])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb6/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy-xy.html

  * igt@gem_userptr_blits@input-checking:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][24] ([i915#3002])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/igt@gem_userptr_blits@input-checking.html
    - shard-snb:          NOTRUN -> [DMESG-WARN][25] ([i915#3002])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/igt@gem_userptr_blits@input-checking.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#3297])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/igt@gem_userptr_blits@readonly-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#3297])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb7/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@set-cache-level:
    - shard-kbl:          NOTRUN -> [FAIL][28] ([i915#3324])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/igt@gem_userptr_blits@set-cache-level.html
    - shard-snb:          NOTRUN -> [FAIL][29] ([i915#3324])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/igt@gem_userptr_blits@set-cache-level.html

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +13 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/igt@gen7_exec_parse@oacontrol-tracking.html
    - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109289]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [PASS][33] -> [FAIL][34] ([i915#454])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/igt@i915_pm_dc@dc6-psr.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb6/igt@i915_pm_dc@dc6-psr.html

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

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [PASS][36] -> [INCOMPLETE][37] ([i915#2782])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-snb5/igt@i915_selftest@live@hangcheck.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_addfb_basic@small-bo:
    - shard-tglb:         [PASS][38] -> [DMESG-WARN][39] ([i915#2868]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/igt@kms_addfb_basic@small-bo.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/igt@kms_addfb_basic@small-bo.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111615])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

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

  * igt@kms_chamelium@dp-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/igt@kms_chamelium@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium@hdmi-audio:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/igt@kms_chamelium@hdmi-audio.html
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/igt@kms_chamelium@hdmi-audio.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.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_5784/shard-glk5/igt@kms_color_chamelium@pipe-c-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +20 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html

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

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

  * igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +102 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109280]) +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111825]) +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.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_10048/shard-kbl6/igt@kms_hdr@bpc-switch-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-d:
    - shard-apl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][63] ([fdo#108145] / [i915#265]) +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html

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

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#658])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb8/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk3/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

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

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109441]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2437])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271]) +260 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#109291])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109291])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@sysfs_clients@fair-7:
    - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2994]) +4 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/igt@sysfs_clients@fair-7.html
    - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#2994])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/igt@sysfs_clients@fair-7.html
    - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@sysfs_clients@fair-7.html
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#2994])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/igt@sysfs_clients@fair-7.html
    - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#2994])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/igt@sysfs_clients@fair-7.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [FAIL][81] ([i915#2410]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [DMESG-WARN][83] ([i915#180]) -> [PASS][84] +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/igt@gem_eio@in-flight-suspend.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [FAIL][85] ([i915#2846]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl3/igt@gem_exec_fair@basic-deadline.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-iclb:         [FAIL][87] ([i915#2842]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-kbl:          [FAIL][91] ([i915#2842]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_whisper@basic-normal-all:
    - shard-glk:          [DMESG-WARN][93] ([i915#118] / [i915#95]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/igt@gem_exec_whisper@basic-normal-all.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk1/igt@gem_exec_whisper@basic-normal-all.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-tglb:         [FAIL][95] ([i915#3434]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb1/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding:
    - shard-tglb:         [FAIL][97] ([i915#2124]) -> [PASS][98] +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [INCOMPLETE][99] ([i915#155] / [i915#180] / [i915#636]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [SKIP][101] ([fdo#109441]) -> [PASS][102] +1 similar issue
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [DMESG-WARN][103] ([i915#180] / [i915#295]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-apl:          [FAIL][105] ([fdo#110321]) -> [TIMEOUT][106] ([i915#1319])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl2/igt@kms_content_protection@srm.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/igt@kms_content_protection@srm.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-iclb:         [SKIP][107] ([i915#2920]) -> [SKIP][108] ([i915#658]) +2 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
    - shard-iclb:         [SKIP][109] ([i915#658]) -> [SKIP][110] ([i915#2920]) +2 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602] / [i915#92]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/igt@runner@aborted.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/igt@runner@aborted.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl1/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/igt@runner@aborted.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/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#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#2733]: https://gitlab.freedesktop.org/drm/intel/issues/2733
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [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#3434]: https://gitlab.freedesktop.org/drm/intel/issues/3434
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602
  [i915#636]: https://gitlab.freedesktop.org/drm/intel/issues/636
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [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_6078 -> IGTPW_5784
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_10048: 35fe05a46b0fa7d03c874079a482543ccd5496cf @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5784: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/index.html
  IGT_6078: 2c65d8df10f96e30a02de1db605934d3e47433dd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 37902 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] 8+ messages in thread

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

On środa, 5 maja 2021 16:26:59 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing (rev2)
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10048_full -> IGTPW_5784_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5784_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5784_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_5784/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in 
IGTPW_5784_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen:
>     - shard-glk:          [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk7/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>     - shard-apl:          [PASS][3] -> [FAIL][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl3/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html]

Both failures look the same and I can't see any relation to the change -- 
false positives, I believe.

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5784_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_create@create-massive:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
>     - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) 
+1 similar issue
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-apl:          NOTRUN -> [FAIL][7] ([i915#2846])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842]) +2 similar 
issues
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk5/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-apl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl8/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2842])
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-apl:          NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar 
issue
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@gem_exec_fair@basic-pace@rcs0.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_schedule@semaphore-codependency:
>     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +342 similar 
issues
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@gem_exec_schedule@semaphore-codependency.html
> 
>   * igt@gem_exec_whisper@basic-contexts-forked:
>     - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / 
[i915#95]) +1 similar issue
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk1/
igt@gem_exec_whisper@basic-contexts-forked.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
igt@gem_exec_whisper@basic-contexts-forked.html
> 
>   * igt@gem_mmap_gtt@cpuset-basic-small-copy:
>     - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#307])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk3/
igt@gem_mmap_gtt@cpuset-basic-small-copy.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
igt@gem_mmap_gtt@cpuset-basic-small-copy.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
>     - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#307])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb6/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][24] ([i915#3002])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
igt@gem_userptr_blits@input-checking.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][25] ([i915#3002])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gem_userptr_blits@readonly-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#3297])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
igt@gem_userptr_blits@readonly-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#3297])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb7/
igt@gem_userptr_blits@readonly-unsync.html
> 
>   * igt@gem_userptr_blits@set-cache-level:
>     - shard-kbl:          NOTRUN -> [FAIL][28] ([i915#3324])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@gem_userptr_blits@set-cache-level.html
>     - shard-snb:          NOTRUN -> [FAIL][29] ([i915#3324])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
igt@gem_userptr_blits@set-cache-level.html
> 
>   * igt@gen3_render_tiledy_blits:
>     - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar 
issue
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
igt@gen3_render_tiledy_blits.html
> 
>   * igt@gen7_exec_parse@oacontrol-tracking:
>     - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +13 similar 
issues
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gen7_exec_parse@oacontrol-tracking.html
>     - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109289]) +1 similar 
issue
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@gen7_exec_parse@oacontrol-tracking.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         [PASS][33] -> [FAIL][34] ([i915#454])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
igt@i915_pm_dc@dc6-psr.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb6/
igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>     - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1937])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-snb:          [PASS][36] -> [INCOMPLETE][37] ([i915#2782])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-snb5/
igt@i915_selftest@live@hangcheck.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb6/
igt@i915_selftest@live@hangcheck.html
> 
>   * igt@kms_addfb_basic@small-bo:
>     - shard-tglb:         [PASS][38] -> [DMESG-WARN][39] ([i915#2868]) +2 
similar issues
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
igt@kms_addfb_basic@small-bo.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_addfb_basic@small-bo.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
>     - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111615])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_joiner@invalid-modeset:
>     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_big_joiner@invalid-modeset.html
> 
>   * igt@kms_chamelium@dp-hpd-for-each-pipe:
>     - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) 
+13 similar issues
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_chamelium@dp-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium@hdmi-audio:
>     - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) 
+2 similar issues
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
igt@kms_chamelium@hdmi-audio.html
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) 
+2 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
igt@kms_chamelium@hdmi-audio.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>     - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) 
+17 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.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_5784/shard-glk5/
igt@kms_color_chamelium@pipe-c-ctm-0-5.html
> 
>   * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
>     - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) 
+20 similar issues
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
igt@kms_color_chamelium@pipe-d-ctm-limited-range.html
> 
>   * igt@kms_content_protection@lic:
>     - shard-apl:          NOTRUN -> [TIMEOUT][49] ([i915#1319])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_content_protection@lic.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3319]) +1 similar 
issue
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement:
>     - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
>     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
>     - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
>     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2672])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>     - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +102 similar 
issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109280]) +3 similar 
issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111825]) +4 similar 
issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.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_10048/shard-kbl6/
igt@kms_hdr@bpc-switch-suspend.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>     - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) 
+3 similar issues
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][63] ([fdo#108145] / [i915#265]) 
+2 similar issues
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant:
>     - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278]) +3 similar 
issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html
> 
>   * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping:
>     - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2733])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
>     - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) 
+5 similar issues
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#658])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb8/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>     - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658])
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk3/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
>     - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) 
+3 similar issues
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr@psr2_cursor_plane_onoff:
>     - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109441]) +2 similar 
issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
igt@kms_psr@psr2_cursor_plane_onoff.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@kms_psr@psr2_cursor_plane_onoff.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2437])
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
>     - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271]) +260 similar 
issues
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl3/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
>     - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#109291])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
>     - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109291])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
> 
>   * igt@sysfs_clients@fair-7:
>     - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2994]) 
+4 similar issues
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@sysfs_clients@fair-7.html
>     - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#2994])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@sysfs_clients@fair-7.html
>     - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) 
+1 similar issue
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@sysfs_clients@fair-7.html
>     - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#2994])
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@sysfs_clients@fair-7.html
>     - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#2994])
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
igt@sysfs_clients@fair-7.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_persistence@many-contexts:
>     - shard-tglb:         [FAIL][81] ([i915#2410]) -> [PASS][82]
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb5/
igt@gem_ctx_persistence@many-contexts.html
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
igt@gem_ctx_persistence@many-contexts.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-kbl:          [DMESG-WARN][83] ([i915#180]) -> [PASS][84] +1 
similar issue
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@gem_eio@in-flight-suspend.html
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          [FAIL][85] ([i915#2846]) -> [PASS][86]
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl3/
igt@gem_exec_fair@basic-deadline.html
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-iclb:         [FAIL][87] ([i915#2842]) -> [PASS][88]
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90]
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-solo@rcs0:
>     - shard-kbl:          [FAIL][91] ([i915#2842]) -> [PASS][92]
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@gem_exec_fair@basic-pace-solo@rcs0.html
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@gem_exec_fair@basic-pace-solo@rcs0.html
> 
>   * igt@gem_exec_whisper@basic-normal-all:
>     - shard-glk:          [DMESG-WARN][93] ([i915#118] / [i915#95]) -> 
[PASS][94]
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
igt@gem_exec_whisper@basic-normal-all.html
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk1/
igt@gem_exec_whisper@basic-normal-all.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
>     - shard-tglb:         [FAIL][95] ([i915#3434]) -> [PASS][96]
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb6/
igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb1/
igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding:
>     - shard-tglb:         [FAIL][97] ([i915#2124]) -> [PASS][98] +1 similar 
issue
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-kbl:          [INCOMPLETE][99] ([i915#155] / [i915#180] / 
[i915#636]) -> [PASS][100]
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
igt@kms_fbcon_fbt@fbc-suspend.html
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [SKIP][101] ([fdo#109441]) -> [PASS][102] +1 
similar issue
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb1/
igt@kms_psr@psr2_sprite_plane_move.html
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-kbl:          [DMESG-WARN][103] ([i915#180] / [i915#295]) -> 
[PASS][104]
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          [FAIL][105] ([fdo#110321]) -> [TIMEOUT][106] 
([i915#1319])
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl2/
igt@kms_content_protection@srm.html
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@kms_content_protection@srm.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-iclb:         [SKIP][107] ([i915#2920]) -> [SKIP][108] 
([i915#658]) +2 similar issues
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
>     - shard-iclb:         [SKIP][109] ([i915#658]) -> [SKIP][110] 
([i915#2920]) +2 similar issues
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb3/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL]
[114], [FAIL][115], [FAIL][116], [FAIL][117]) ([i915#1436] / [i915#180] / 
[i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602] / 
[i915#92]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL]
[122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([i915#180] / 
[i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@runner@aborted.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
igt@runner@aborted.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl1/
igt@runner@aborted.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@runner@aborted.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@runner@aborted.html
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
igt@runner@aborted.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
igt@runner@aborted.html
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@runner@aborted.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
igt@runner@aborted.html
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@runner@aborted.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@runner@aborted.html
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@runner@aborted.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@runner@aborted.html
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@runner@aborted.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@runner@aborted.html
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
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#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
>   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
>   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
>   [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
>   [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
>   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#2733]: https://gitlab.freedesktop.org/drm/intel/issues/2733
>   [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
>   [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
>   [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
>   [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
>   [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
>   [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
>   [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#3434]: https://gitlab.freedesktop.org/drm/intel/issues/3434
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602
>   [i915#636]: https://gitlab.freedesktop.org/drm/intel/issues/636
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
>   [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_6078 -> IGTPW_5784
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_10048: 35fe05a46b0fa7d03c874079a482543ccd5496cf @ git://
anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_5784: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/index.html
>   IGT_6078: 2c65d8df10f96e30a02de1db605934d3e47433dd @ git://
anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://
anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/
index.html
> 




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

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

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

Janus, should I wait for Rev3 results?

-----Original Message-----
From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> 
Sent: Wednesday, May 5, 2021 8:06 AM
To: igt-dev@lists.freedesktop.org
Cc: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev2)

On środa, 5 maja 2021 16:26:59 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing (rev2)
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10048_full -> IGTPW_5784_full 
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5784_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5784_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_5784/
index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in
IGTPW_5784_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen:
>     - shard-glk:          [PASS][1] -> [FAIL][2]
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk7/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>     - shard-apl:          [PASS][3] -> [FAIL][4]
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl3/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html]

Both failures look the same and I can't see any relation to the change -- false positives, I believe.

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5784_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_create@create-massive:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@gem_create@create-massive.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
>     - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) 
+1 similar issue
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-apl:          NOTRUN -> [FAIL][7] ([i915#2846])
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-rrul@rcs0:
>     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842]) +2 similar 
issues
>    [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk5/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gem_exec_fair@basic-none-rrul@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-apl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl8/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none-solo@rcs0:
>     - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2842])
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@gem_exec_fair@basic-none-solo@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-apl:          NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar 
issue
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
>    [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@gem_exec_fair@basic-pace@rcs0.html
>    [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842])
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_schedule@semaphore-codependency:
>     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +342 similar 
issues
>    [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@gem_exec_schedule@semaphore-codependency.html
> 
>   * igt@gem_exec_whisper@basic-contexts-forked:
>     - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / 
[i915#95]) +1 similar issue
>    [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk1/
igt@gem_exec_whisper@basic-contexts-forked.html
>    [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
igt@gem_exec_whisper@basic-contexts-forked.html
> 
>   * igt@gem_mmap_gtt@cpuset-basic-small-copy:
>     - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#307])
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk3/
igt@gem_mmap_gtt@cpuset-basic-small-copy.html
>    [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
igt@gem_mmap_gtt@cpuset-basic-small-copy.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
>     - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#307])
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb6/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>    [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][24] ([i915#3002])
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
igt@gem_userptr_blits@input-checking.html
>     - shard-snb:          NOTRUN -> [DMESG-WARN][25] ([i915#3002])
>    [25]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gem_userptr_blits@readonly-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#3297])
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
igt@gem_userptr_blits@readonly-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#3297])
>    [27]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb7/
igt@gem_userptr_blits@readonly-unsync.html
> 
>   * igt@gem_userptr_blits@set-cache-level:
>     - shard-kbl:          NOTRUN -> [FAIL][28] ([i915#3324])
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@gem_userptr_blits@set-cache-level.html
>     - shard-snb:          NOTRUN -> [FAIL][29] ([i915#3324])
>    [29]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
igt@gem_userptr_blits@set-cache-level.html
> 
>   * igt@gen3_render_tiledy_blits:
>     - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar 
issue
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
igt@gen3_render_tiledy_blits.html
> 
>   * igt@gen7_exec_parse@oacontrol-tracking:
>     - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +13 similar 
issues
>    [31]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gen7_exec_parse@oacontrol-tracking.html
>     - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109289]) +1 similar 
issue
>    [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@gen7_exec_parse@oacontrol-tracking.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         [PASS][33] -> [FAIL][34] ([i915#454])
>    [33]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
igt@i915_pm_dc@dc6-psr.html
>    [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb6/
igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>     - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1937])
>    [35]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-snb:          [PASS][36] -> [INCOMPLETE][37] ([i915#2782])
>    [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-snb5/
igt@i915_selftest@live@hangcheck.html
>    [37]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb6/
igt@i915_selftest@live@hangcheck.html
> 
>   * igt@kms_addfb_basic@small-bo:
>     - shard-tglb:         [PASS][38] -> [DMESG-WARN][39] ([i915#2868]) +2 
similar issues
>    [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
igt@kms_addfb_basic@small-bo.html
>    [39]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_addfb_basic@small-bo.html
> 
>   * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
>    [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
>     - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111615])
>    [41]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_joiner@invalid-modeset:
>     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705])
>    [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_big_joiner@invalid-modeset.html
> 
>   * igt@kms_chamelium@dp-hpd-for-each-pipe:
>     - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) 
+13 similar issues
>    [43]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_chamelium@dp-hpd-for-each-pipe.html
> 
>   * igt@kms_chamelium@hdmi-audio:
>     - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) 
+2 similar issues
>    [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
igt@kms_chamelium@hdmi-audio.html
>     - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) 
+2 similar issues
>    [45]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
igt@kms_chamelium@hdmi-audio.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>     - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) 
+17 similar issues
>    [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.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_5784/shard-glk5/
igt@kms_color_chamelium@pipe-c-ctm-0-5.html
> 
>   * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
>     - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) 
+20 similar issues
>    [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
igt@kms_color_chamelium@pipe-d-ctm-limited-range.html
> 
>   * igt@kms_content_protection@lic:
>     - shard-apl:          NOTRUN -> [TIMEOUT][49] ([i915#1319])
>    [49]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_content_protection@lic.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
>     - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3319]) +1 similar 
issue
>    [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement:
>     - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
>    [51]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359])
>    [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
>     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279])
>    [53]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
>     - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278])
>    [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
>     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2672])
>    [55]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>     - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +102 similar 
issues
>    [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu:
>     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109280]) +3 similar 
issues
>    [57]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
>     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111825]) +4 similar 
issues
>    [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.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_10048/shard-kbl6/
igt@kms_hdr@bpc-switch-suspend.html
>    [60]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
>     - shard-apl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533])
>    [61]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>     - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) 
+3 similar issues
>    [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][63] ([fdo#108145] / [i915#265]) 
+2 similar issues
>    [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant:
>     - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278]) +3 similar 
issues
>    [64]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html
> 
>   * 
> igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with
> -
clipping-clamping:
>     - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2733])
>    [65]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
clipping-clamping.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
>     - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) 
+5 similar issues
>    [66]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#658])
>    [67]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb8/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>     - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658])
>    [68]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk3/
igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
>     - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) 
+3 similar issues
>    [69]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr@psr2_cursor_plane_onoff:
>     - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109441]) +2 similar 
issues
>    [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
igt@kms_psr@psr2_cursor_plane_onoff.html
>    [71]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@kms_psr@psr2_cursor_plane_onoff.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2437])
>    [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
>     - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271]) +260 similar 
issues
>    [73]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl3/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
>     - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#109291])
>    [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
>     - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109291])
>    [75]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
> 
>   * igt@sysfs_clients@fair-7:
>     - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2994]) 
+4 similar issues
>    [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
igt@sysfs_clients@fair-7.html
>     - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#2994])
>    [77]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
igt@sysfs_clients@fair-7.html
>     - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) 
+1 similar issue
>    [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@sysfs_clients@fair-7.html
>     - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#2994])
>    [79]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@sysfs_clients@fair-7.html
>     - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#2994])
>    [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
igt@sysfs_clients@fair-7.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_persistence@many-contexts:
>     - shard-tglb:         [FAIL][81] ([i915#2410]) -> [PASS][82]
>    [81]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb5/
igt@gem_ctx_persistence@many-contexts.html
>    [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
igt@gem_ctx_persistence@many-contexts.html
> 
>   * igt@gem_eio@in-flight-suspend:
>     - shard-kbl:          [DMESG-WARN][83] ([i915#180]) -> [PASS][84] +1 
similar issue
>    [83]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@gem_eio@in-flight-suspend.html
>    [84]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@gem_eio@in-flight-suspend.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          [FAIL][85] ([i915#2846]) -> [PASS][86]
>    [85]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl3/
igt@gem_exec_fair@basic-deadline.html
>    [86]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-iclb:         [FAIL][87] ([i915#2842]) -> [PASS][88]
>    [87]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
igt@gem_exec_fair@basic-none-share@rcs0.html
>    [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90]
>    [89]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-solo@rcs0:
>     - shard-kbl:          [FAIL][91] ([i915#2842]) -> [PASS][92]
>    [91]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@gem_exec_fair@basic-pace-solo@rcs0.html
>    [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@gem_exec_fair@basic-pace-solo@rcs0.html
> 
>   * igt@gem_exec_whisper@basic-normal-all:
>     - shard-glk:          [DMESG-WARN][93] ([i915#118] / [i915#95]) -> 
[PASS][94]
>    [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
igt@gem_exec_whisper@basic-normal-all.html
>    [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk1/
igt@gem_exec_whisper@basic-normal-all.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
>     - shard-tglb:         [FAIL][95] ([i915#3434]) -> [PASS][96]
>    [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb6/
igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>    [96]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb1/
igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding:
>     - shard-tglb:         [FAIL][97] ([i915#2124]) -> [PASS][98] +1 similar 
issue
>    [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
>    [98]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
> 
>   * igt@kms_fbcon_fbt@fbc-suspend:
>     - shard-kbl:          [INCOMPLETE][99] ([i915#155] / [i915#180] / 
[i915#636]) -> [PASS][100]
>    [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
igt@kms_fbcon_fbt@fbc-suspend.html
>    [100]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
igt@kms_fbcon_fbt@fbc-suspend.html
> 
>   * igt@kms_psr@psr2_sprite_plane_move:
>     - shard-iclb:         [SKIP][101] ([fdo#109441]) -> [PASS][102] +1 
similar issue
>    [101]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb1/
igt@kms_psr@psr2_sprite_plane_move.html
>    [102]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@kms_psr@psr2_sprite_plane_move.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-kbl:          [DMESG-WARN][103] ([i915#180] / [i915#295]) -> 
[PASS][104]
>    [103]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [104]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          [FAIL][105] ([fdo#110321]) -> [TIMEOUT][106] 
([i915#1319])
>    [105]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl2/
igt@kms_content_protection@srm.html
>    [106]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
igt@kms_content_protection@srm.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-iclb:         [SKIP][107] ([i915#2920]) -> [SKIP][108] 
([i915#658]) +2 similar issues
>    [107]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
>    [108]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
>     - shard-iclb:         [SKIP][109] ([i915#658]) -> [SKIP][110] 
([i915#2920]) +2 similar issues
>    [109]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb3/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
>    [110]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL]
[114], [FAIL][115], [FAIL][116], [FAIL][117]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602] /
[i915#92]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL] [122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602])
>    [111]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@runner@aborted.html
>    [112]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
igt@runner@aborted.html
>    [113]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl1/
igt@runner@aborted.html
>    [114]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
igt@runner@aborted.html
>    [115]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
igt@runner@aborted.html
>    [116]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
igt@runner@aborted.html
>    [117]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
igt@runner@aborted.html
>    [118]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@runner@aborted.html
>    [119]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
igt@runner@aborted.html
>    [120]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@runner@aborted.html
>    [121]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
igt@runner@aborted.html
>    [122]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
igt@runner@aborted.html
>    [123]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@runner@aborted.html
>    [124]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
igt@runner@aborted.html
>    [125]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
igt@runner@aborted.html
>    [126]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
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#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
>   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>   [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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
>   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
>   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>   [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
>   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
>   [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
>   [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
>   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>   [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
>   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
>   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>   [i915#2733]: https://gitlab.freedesktop.org/drm/intel/issues/2733
>   [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
>   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
>   [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
>   [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
>   [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
>   [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
>   [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
>   [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
>   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>   [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
>   [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#3434]: https://gitlab.freedesktop.org/drm/intel/issues/3434
>   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>   [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602
>   [i915#636]: https://gitlab.freedesktop.org/drm/intel/issues/636
>   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
>   [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_6078 -> IGTPW_5784
>   * Piglit: piglit_4509 -> None
> 
>   CI-20190529: 20190529
>   CI_DRM_10048: 35fe05a46b0fa7d03c874079a482543ccd5496cf @ git://
anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_5784: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/index.html
>   IGT_6078: 2c65d8df10f96e30a02de1db605934d3e47433dd @ git://
anongit.freedesktop.org/xorg/app/intel-gpu-tools
>   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://
anongit.freedesktop.org/piglit
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/
index.html
> 




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

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

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

Hi Lakshmi,

On środa, 5 maja 2021 17:39:33 CEST Vudum, Lakshminarayana wrote:
> Janus, should I wait for Rev3 results?

Yes, makes sense.

Thanks,
Janusz


> 
> -----Original Message-----
> From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> 
> Sent: Wednesday, May 5, 2021 8:06 AM
> To: igt-dev@lists.freedesktop.org
> Cc: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev2)
> 
> On środa, 5 maja 2021 16:26:59 CEST Patchwork wrote:
> > == Series Details ==
> > 
> > Series: lib/i915/perf: Fix non-card0 processing (rev2)
> > URL   : https://patchwork.freedesktop.org/series/89701/
> > State : failure
> > 
> > == Summary ==
> > 
> > CI Bug Log - changes from CI_DRM_10048_full -> IGTPW_5784_full 
> > ====================================================
> > 
> > Summary
> > -------
> > 
> >   **FAILURE**
> > 
> >   Serious unknown changes coming with IGTPW_5784_full absolutely need to be
> >   verified manually.
> >   
> >   If you think the reported changes have nothing to do with the changes
> >   introduced in IGTPW_5784_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_5784/
> index.html
> > 
> > Possible new issues
> > -------------------
> > 
> >   Here are the unknown changes that may have been introduced in
> IGTPW_5784_full:
> > 
> > ### IGT changes ###
> > 
> > #### Possible regressions ####
> > 
> >   * igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen:
> >     - shard-glk:          [PASS][1] -> [FAIL][2]
> >    [1]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk7/
> igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
> >    [2]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
> igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
> >     - shard-apl:          [PASS][3] -> [FAIL][4]
> >    [3]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl3/
> igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html
> >    [4]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
> igt@kms_cursor_crc@pipe-c-cursor-64x64-onscreen.html]
> 
> Both failures look the same and I can't see any relation to the change -- false positives, I believe.
> 
> Thanks,
> Janusz
> 
> > 
> >   
> > Known issues
> > ------------
> > 
> >   Here are the changes found in IGTPW_5784_full that come from known issues:
> > 
> > ### IGT changes ###
> > 
> > #### Issues hit ####
> > 
> >   * igt@gem_create@create-massive:
> >     - shard-apl:          NOTRUN -> [DMESG-WARN][5] ([i915#3002])
> >    [5]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
> igt@gem_create@create-massive.html
> > 
> >   * igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
> >     - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) 
> +1 similar issue
> >    [6]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
> igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
> > 
> >   * igt@gem_exec_fair@basic-deadline:
> >     - shard-apl:          NOTRUN -> [FAIL][7] ([i915#2846])
> >    [7]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
> igt@gem_exec_fair@basic-deadline.html
> > 
> >   * igt@gem_exec_fair@basic-none-rrul@rcs0:
> >     - shard-glk:          [PASS][8] -> [FAIL][9] ([i915#2842]) +2 similar 
> issues
> >    [8]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk5/
> igt@gem_exec_fair@basic-none-rrul@rcs0.html
> >    [9]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
> igt@gem_exec_fair@basic-none-rrul@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-none-share@rcs0:
> >     - shard-apl:          [PASS][10] -> [SKIP][11] ([fdo#109271])
> >    [10]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl8/
> igt@gem_exec_fair@basic-none-share@rcs0.html
> >    [11]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
> igt@gem_exec_fair@basic-none-share@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-none-solo@rcs0:
> >     - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2842])
> >    [12]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
> igt@gem_exec_fair@basic-none-solo@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-none@vcs0:
> >     - shard-apl:          NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar 
> issue
> >    [13]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
> igt@gem_exec_fair@basic-none@vcs0.html
> > 
> >   * igt@gem_exec_fair@basic-pace@rcs0:
> >     - shard-kbl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
> >    [14]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
> igt@gem_exec_fair@basic-pace@rcs0.html
> >    [15]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
> igt@gem_exec_fair@basic-pace@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-pace@vcs1:
> >     - shard-iclb:         NOTRUN -> [FAIL][16] ([i915#2842])
> >    [16]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
> igt@gem_exec_fair@basic-pace@vcs1.html
> > 
> >   * igt@gem_exec_schedule@semaphore-codependency:
> >     - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +342 similar 
> issues
> >    [17]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
> igt@gem_exec_schedule@semaphore-codependency.html
> > 
> >   * igt@gem_exec_whisper@basic-contexts-forked:
> >     - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([i915#118] / 
> [i915#95]) +1 similar issue
> >    [18]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk1/
> igt@gem_exec_whisper@basic-contexts-forked.html
> >    [19]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
> igt@gem_exec_whisper@basic-contexts-forked.html
> > 
> >   * igt@gem_mmap_gtt@cpuset-basic-small-copy:
> >     - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#307])
> >    [20]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk3/
> igt@gem_mmap_gtt@cpuset-basic-small-copy.html
> >    [21]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk4/
> igt@gem_mmap_gtt@cpuset-basic-small-copy.html
> > 
> >   * igt@gem_mmap_gtt@cpuset-big-copy-xy:
> >     - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#307])
> >    [22]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb6/
> igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> >    [23]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
> igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> > 
> >   * igt@gem_userptr_blits@input-checking:
> >     - shard-kbl:          NOTRUN -> [DMESG-WARN][24] ([i915#3002])
> >    [24]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
> igt@gem_userptr_blits@input-checking.html
> >     - shard-snb:          NOTRUN -> [DMESG-WARN][25] ([i915#3002])
> >    [25]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
> igt@gem_userptr_blits@input-checking.html
> > 
> >   * igt@gem_userptr_blits@readonly-unsync:
> >     - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#3297])
> >    [26]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
> igt@gem_userptr_blits@readonly-unsync.html
> >     - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#3297])
> >    [27]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb7/
> igt@gem_userptr_blits@readonly-unsync.html
> > 
> >   * igt@gem_userptr_blits@set-cache-level:
> >     - shard-kbl:          NOTRUN -> [FAIL][28] ([i915#3324])
> >    [28]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
> igt@gem_userptr_blits@set-cache-level.html
> >     - shard-snb:          NOTRUN -> [FAIL][29] ([i915#3324])
> >    [29]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb5/
> igt@gem_userptr_blits@set-cache-level.html
> > 
> >   * igt@gen3_render_tiledy_blits:
> >     - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109289]) +1 similar 
> issue
> >    [30]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb6/
> igt@gen3_render_tiledy_blits.html
> > 
> >   * igt@gen7_exec_parse@oacontrol-tracking:
> >     - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +13 similar 
> issues
> >    [31]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
> igt@gen7_exec_parse@oacontrol-tracking.html
> >     - shard-iclb:         NOTRUN -> [SKIP][32] ([fdo#109289]) +1 similar 
> issue
> >    [32]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
> igt@gen7_exec_parse@oacontrol-tracking.html
> > 
> >   * igt@i915_pm_dc@dc6-psr:
> >     - shard-iclb:         [PASS][33] -> [FAIL][34] ([i915#454])
> >    [33]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
> igt@i915_pm_dc@dc6-psr.html
> >    [34]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb6/
> igt@i915_pm_dc@dc6-psr.html
> > 
> >   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> >     - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1937])
> >    [35]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl2/
> igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> > 
> >   * igt@i915_selftest@live@hangcheck:
> >     - shard-snb:          [PASS][36] -> [INCOMPLETE][37] ([i915#2782])
> >    [36]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-snb5/
> igt@i915_selftest@live@hangcheck.html
> >    [37]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb6/
> igt@i915_selftest@live@hangcheck.html
> > 
> >   * igt@kms_addfb_basic@small-bo:
> >     - shard-tglb:         [PASS][38] -> [DMESG-WARN][39] ([i915#2868]) +2 
> similar issues
> >    [38]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
> igt@kms_addfb_basic@small-bo.html
> >    [39]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
> igt@kms_addfb_basic@small-bo.html
> > 
> >   * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
> >     - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#110723])
> >    [40]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
> igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> >     - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#111615])
> >    [41]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
> igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
> > 
> >   * igt@kms_big_joiner@invalid-modeset:
> >     - shard-apl:          NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705])
> >    [42]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
> igt@kms_big_joiner@invalid-modeset.html
> > 
> >   * igt@kms_chamelium@dp-hpd-for-each-pipe:
> >     - shard-kbl:          NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) 
> +13 similar issues
> >    [43]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
> igt@kms_chamelium@dp-hpd-for-each-pipe.html
> > 
> >   * igt@kms_chamelium@hdmi-audio:
> >     - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) 
> +2 similar issues
> >    [44]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
> igt@kms_chamelium@hdmi-audio.html
> >     - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) 
> +2 similar issues
> >    [45]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb8/
> igt@kms_chamelium@hdmi-audio.html
> > 
> >   * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
> >     - shard-snb:          NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) 
> +17 similar issues
> >    [46]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-snb7/
> igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.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_5784/shard-glk5/
> igt@kms_color_chamelium@pipe-c-ctm-0-5.html
> > 
> >   * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
> >     - shard-apl:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) 
> +20 similar issues
> >    [48]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
> igt@kms_color_chamelium@pipe-d-ctm-limited-range.html
> > 
> >   * igt@kms_content_protection@lic:
> >     - shard-apl:          NOTRUN -> [TIMEOUT][49] ([i915#1319])
> >    [49]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
> igt@kms_content_protection@lic.html
> > 
> >   * igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding:
> >     - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#3319]) +1 similar 
> issue
> >    [50]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
> igt@kms_cursor_crc@pipe-a-cursor-32x32-sliding.html
> > 
> >   * igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement:
> >     - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359])
> >    [51]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
> igt@kms_cursor_crc@pipe-a-cursor-512x170-rapid-movement.html
> > 
> >   * igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
> >     - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#109279] / [i915#3359])
> >    [52]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb5/
> igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
> >     - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109279])
> >    [53]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
> igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
> > 
> >   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
> >     - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278])
> >    [54]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
> igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
> > 
> >   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> >     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2672])
> >    [55]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
> >     - shard-kbl:          NOTRUN -> [SKIP][56] ([fdo#109271]) +102 similar 
> issues
> >    [56]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> > 
> >   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu:
> >     - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109280]) +3 similar 
> issues
> >    [57]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb1/
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
> > 
> >   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
> >     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111825]) +4 similar 
> issues
> >    [58]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.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_10048/shard-kbl6/
> igt@kms_hdr@bpc-switch-suspend.html
> >    [60]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@kms_hdr@bpc-switch-suspend.html
> > 
> >   * igt@kms_pipe_crc_basic@read-crc-pipe-d:
> >     - shard-apl:          NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#533])
> >    [61]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
> igt@kms_pipe_crc_basic@read-crc-pipe-d.html
> > 
> >   * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
> >     - shard-apl:          NOTRUN -> [FAIL][62] ([fdo#108145] / [i915#265]) 
> +3 similar issues
> >    [62]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
> igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
> > 
> >   * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
> >     - shard-kbl:          NOTRUN -> [FAIL][63] ([fdo#108145] / [i915#265]) 
> +2 similar issues
> >    [63]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
> igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> > 
> >   * igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant:
> >     - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278]) +3 similar 
> issues
> >    [64]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
> igt@kms_plane_alpha_blend@pipe-d-coverage-vs-premult-vs-constant.html
> > 
> >   * 
> > igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with
> > -
> clipping-clamping:
> >     - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2733])
> >    [65]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl7/
> igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-
> clipping-clamping.html
> > 
> >   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1:
> >     - shard-apl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#658]) 
> +5 similar issues
> >    [66]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
> igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html
> > 
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> >     - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#658])
> >    [67]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb8/
> igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> >     - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#658])
> >    [68]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk3/
> igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> > 
> >   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
> >     - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) 
> +3 similar issues
> >    [69]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
> igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
> > 
> >   * igt@kms_psr@psr2_cursor_plane_onoff:
> >     - shard-iclb:         [PASS][70] -> [SKIP][71] ([fdo#109441]) +2 similar 
> issues
> >    [70]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
> igt@kms_psr@psr2_cursor_plane_onoff.html
> >    [71]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
> igt@kms_psr@psr2_cursor_plane_onoff.html
> > 
> >   * igt@kms_writeback@writeback-invalid-parameters:
> >     - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2437])
> >    [72]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl1/
> igt@kms_writeback@writeback-invalid-parameters.html
> > 
> >   * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
> >     - shard-apl:          NOTRUN -> [SKIP][73] ([fdo#109271]) +260 similar 
> issues
> >    [73]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl3/
> igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
> >     - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#109291])
> >    [74]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
> igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
> >     - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109291])
> >    [75]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
> igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
> > 
> >   * igt@sysfs_clients@fair-7:
> >     - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2994]) 
> +4 similar issues
> >    [76]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl6/
> igt@sysfs_clients@fair-7.html
> >     - shard-iclb:         NOTRUN -> [SKIP][77] ([i915#2994])
> >    [77]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb3/
> igt@sysfs_clients@fair-7.html
> >     - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) 
> +1 similar issue
> >    [78]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@sysfs_clients@fair-7.html
> >     - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#2994])
> >    [79]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
> igt@sysfs_clients@fair-7.html
> >     - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#2994])
> >    [80]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk7/
> igt@sysfs_clients@fair-7.html
> > 
> >   
> > #### Possible fixes ####
> > 
> >   * igt@gem_ctx_persistence@many-contexts:
> >     - shard-tglb:         [FAIL][81] ([i915#2410]) -> [PASS][82]
> >    [81]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb5/
> igt@gem_ctx_persistence@many-contexts.html
> >    [82]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb3/
> igt@gem_ctx_persistence@many-contexts.html
> > 
> >   * igt@gem_eio@in-flight-suspend:
> >     - shard-kbl:          [DMESG-WARN][83] ([i915#180]) -> [PASS][84] +1 
> similar issue
> >    [83]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
> igt@gem_eio@in-flight-suspend.html
> >    [84]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
> igt@gem_eio@in-flight-suspend.html
> > 
> >   * igt@gem_exec_fair@basic-deadline:
> >     - shard-kbl:          [FAIL][85] ([i915#2846]) -> [PASS][86]
> >    [85]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl3/
> igt@gem_exec_fair@basic-deadline.html
> >    [86]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@gem_exec_fair@basic-deadline.html
> > 
> >   * igt@gem_exec_fair@basic-none-share@rcs0:
> >     - shard-iclb:         [FAIL][87] ([i915#2842]) -> [PASS][88]
> >    [87]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb5/
> igt@gem_exec_fair@basic-none-share@rcs0.html
> >    [88]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb4/
> igt@gem_exec_fair@basic-none-share@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-pace-share@rcs0:
> >     - shard-glk:          [FAIL][89] ([i915#2842]) -> [PASS][90]
> >    [89]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
> igt@gem_exec_fair@basic-pace-share@rcs0.html
> >    [90]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk2/
> igt@gem_exec_fair@basic-pace-share@rcs0.html
> > 
> >   * igt@gem_exec_fair@basic-pace-solo@rcs0:
> >     - shard-kbl:          [FAIL][91] ([i915#2842]) -> [PASS][92]
> >    [91]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
> igt@gem_exec_fair@basic-pace-solo@rcs0.html
> >    [92]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
> igt@gem_exec_fair@basic-pace-solo@rcs0.html
> > 
> >   * igt@gem_exec_whisper@basic-normal-all:
> >     - shard-glk:          [DMESG-WARN][93] ([i915#118] / [i915#95]) -> 
> [PASS][94]
> >    [93]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-glk4/
> igt@gem_exec_whisper@basic-normal-all.html
> >    [94]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-glk1/
> igt@gem_exec_whisper@basic-normal-all.html
> > 
> >   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
> >     - shard-tglb:         [FAIL][95] ([i915#3434]) -> [PASS][96]
> >    [95]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb6/
> igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> >    [96]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb1/
> igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> > 
> >   * igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding:
> >     - shard-tglb:         [FAIL][97] ([i915#2124]) -> [PASS][98] +1 similar 
> issue
> >    [97]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-tglb2/
> igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
> >    [98]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-tglb2/
> igt@kms_cursor_crc@pipe-a-cursor-64x64-sliding.html
> > 
> >   * igt@kms_fbcon_fbt@fbc-suspend:
> >     - shard-kbl:          [INCOMPLETE][99] ([i915#155] / [i915#180] / 
> [i915#636]) -> [PASS][100]
> >    [99]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
> igt@kms_fbcon_fbt@fbc-suspend.html
> >    [100]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl3/
> igt@kms_fbcon_fbt@fbc-suspend.html
> > 
> >   * igt@kms_psr@psr2_sprite_plane_move:
> >     - shard-iclb:         [SKIP][101] ([fdo#109441]) -> [PASS][102] +1 
> similar issue
> >    [101]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb1/
> igt@kms_psr@psr2_sprite_plane_move.html
> >    [102]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
> igt@kms_psr@psr2_sprite_plane_move.html
> > 
> >   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
> >     - shard-kbl:          [DMESG-WARN][103] ([i915#180] / [i915#295]) -> 
> [PASS][104]
> >    [103]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
> igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> >    [104]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
> igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> > 
> >   
> > #### Warnings ####
> > 
> >   * igt@kms_content_protection@srm:
> >     - shard-apl:          [FAIL][105] ([fdo#110321]) -> [TIMEOUT][106] 
> ([i915#1319])
> >    [105]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-apl2/
> igt@kms_content_protection@srm.html
> >    [106]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-apl8/
> igt@kms_content_protection@srm.html
> > 
> >   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
> >     - shard-iclb:         [SKIP][107] ([i915#2920]) -> [SKIP][108] 
> ([i915#658]) +2 similar issues
> >    [107]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb2/
> igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> >    [108]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb5/
> igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> > 
> >   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4:
> >     - shard-iclb:         [SKIP][109] ([i915#658]) -> [SKIP][110] 
> ([i915#2920]) +2 similar issues
> >    [109]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-iclb3/
> igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
> >    [110]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-iclb2/
> igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4.html
> > 
> >   * igt@runner@aborted:
> >     - shard-kbl:          ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL]
> [114], [FAIL][115], [FAIL][116], [FAIL][117]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602] /
> [i915#92]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL] [122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602])
> >    [111]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
> igt@runner@aborted.html
> >    [112]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
> igt@runner@aborted.html
> >    [113]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl1/
> igt@runner@aborted.html
> >    [114]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl4/
> igt@runner@aborted.html
> >    [115]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl2/
> igt@runner@aborted.html
> >    [116]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl6/
> igt@runner@aborted.html
> >    [117]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10048/shard-kbl7/
> igt@runner@aborted.html
> >    [118]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@runner@aborted.html
> >    [119]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl1/
> igt@runner@aborted.html
> >    [120]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
> igt@runner@aborted.html
> >    [121]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl2/
> igt@runner@aborted.html
> >    [122]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
> igt@runner@aborted.html
> >    [123]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
> igt@runner@aborted.html
> >    [124]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl6/
> igt@runner@aborted.html
> >    [125]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl7/
> igt@runner@aborted.html
> >    [126]: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/shard-kbl4/
> 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#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
> >   [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
> >   [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
> >   [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
> >   [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
> >   [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
> >   [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
> >   [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#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
> >   [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
> >   [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
> >   [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
> >   [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
> >   [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
> >   [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
> >   [i915#2124]: https://gitlab.freedesktop.org/drm/intel/issues/2124
> >   [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
> >   [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
> >   [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
> >   [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
> >   [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
> >   [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
> >   [i915#2733]: https://gitlab.freedesktop.org/drm/intel/issues/2733
> >   [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
> >   [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
> >   [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
> >   [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
> >   [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
> >   [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
> >   [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
> >   [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
> >   [i915#307]: https://gitlab.freedesktop.org/drm/intel/issues/307
> >   [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
> >   [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
> >   [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#3434]: https://gitlab.freedesktop.org/drm/intel/issues/3434
> >   [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
> >   [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
> >   [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602
> >   [i915#636]: https://gitlab.freedesktop.org/drm/intel/issues/636
> >   [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
> >   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> >   [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_6078 -> IGTPW_5784
> >   * Piglit: piglit_4509 -> None
> > 
> >   CI-20190529: 20190529
> >   CI_DRM_10048: 35fe05a46b0fa7d03c874079a482543ccd5496cf @ git://
> anongit.freedesktop.org/gfx-ci/linux
> >   IGTPW_5784: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/index.html
> >   IGT_6078: 2c65d8df10f96e30a02de1db605934d3e47433dd @ git://
> anongit.freedesktop.org/xorg/app/intel-gpu-tools
> >   piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://
> anongit.freedesktop.org/piglit
> > 
> > == Logs ==
> > 
> > For more details see: 
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5784/
> index.html
> > 
> 
> 
> 
> 
> 




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

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

end of thread, other threads:[~2021-05-05 16:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-05 12:41 [Intel-gfx] [PATCH i-g-t v2] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
2021-05-05 12:41 ` [igt-dev] " Janusz Krzysztofik
2021-05-05 13:27 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing (rev2) Patchwork
2021-05-05 13:46 ` [Intel-gfx] [PATCH i-g-t v2] lib/i915/perf: Fix non-card0 processing Lionel Landwerlin
2021-05-05 14:26 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing (rev2) Patchwork
2021-05-05 15:06   ` Janusz Krzysztofik
2021-05-05 15:39     ` Vudum, Lakshminarayana
2021-05-05 16:47       ` Janusz Krzysztofik

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.