All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing
@ 2021-04-30 16:18 ` Janusz Krzysztofik
  0 siblings, 0 replies; 9+ messages in thread
From: Janusz Krzysztofik @ 2021-04-30 16:18 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.

Instead of forcibly using DRM device minor number 0 when opening a
device sysfs area, convert device minor number of a user passed device
fd to the minor number of respective primary (cardX) device node.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 lib/i915/perf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index 56d5c0b3a..336824df7 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
 	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) & ~128);
 
 	return open(path, O_DIRECTORY);
 }
-- 
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] 9+ messages in thread

* [igt-dev] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing
@ 2021-04-30 16:18 ` Janusz Krzysztofik
  0 siblings, 0 replies; 9+ messages in thread
From: Janusz Krzysztofik @ 2021-04-30 16:18 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.

Instead of forcibly using DRM device minor number 0 when opening a
device sysfs area, convert device minor number of a user passed device
fd to the minor number of respective primary (cardX) device node.

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
---
 lib/i915/perf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index 56d5c0b3a..336824df7 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
 	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) & ~128);
 
 	return open(path, O_DIRECTORY);
 }
-- 
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] 9+ messages in thread

* Re: [Intel-gfx] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing
  2021-04-30 16:18 ` [igt-dev] " Janusz Krzysztofik
@ 2021-05-03  7:07   ` Lionel Landwerlin
  -1 siblings, 0 replies; 9+ messages in thread
From: Lionel Landwerlin @ 2021-05-03  7:07 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: intel-gfx

On 30/04/2021 19:18, 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.
>
> Instead of forcibly using DRM device minor number 0 when opening a
> device sysfs area, convert device minor number of a user passed device
> fd to the minor number of respective primary (cardX) device node.
>
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ---
>   lib/i915/perf.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> index 56d5c0b3a..336824df7 100644
> --- a/lib/i915/perf.c
> +++ b/lib/i915/perf.c
> @@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
>   	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) & ~128);


Isn't it minor(st.st_rdev) & 0xff ? or even 0x3f ?

Looks like /dev/dri/controlD64 can exist too.


-Lionel


>   
>   	return open(path, O_DIRECTORY);
>   }


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

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

* Re: [igt-dev] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing
@ 2021-05-03  7:07   ` Lionel Landwerlin
  0 siblings, 0 replies; 9+ messages in thread
From: Lionel Landwerlin @ 2021-05-03  7:07 UTC (permalink / raw)
  To: Janusz Krzysztofik, igt-dev; +Cc: intel-gfx

On 30/04/2021 19:18, 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.
>
> Instead of forcibly using DRM device minor number 0 when opening a
> device sysfs area, convert device minor number of a user passed device
> fd to the minor number of respective primary (cardX) device node.
>
> Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ---
>   lib/i915/perf.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> index 56d5c0b3a..336824df7 100644
> --- a/lib/i915/perf.c
> +++ b/lib/i915/perf.c
> @@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
>   	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) & ~128);


Isn't it minor(st.st_rdev) & 0xff ? or even 0x3f ?

Looks like /dev/dri/controlD64 can exist too.


-Lionel


>   
>   	return open(path, O_DIRECTORY);
>   }


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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915/perf: Fix non-card0 processing
  2021-04-30 16:18 ` [igt-dev] " Janusz Krzysztofik
  (?)
  (?)
@ 2021-05-03  9:31 ` Patchwork
  -1 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2021-05-03  9:31 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10034 -> IGTPW_5772
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@i915_selftest@live@hangcheck:
    - {fi-ehl-1}:         [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/fi-ehl-1/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/fi-ehl-1/igt@i915_selftest@live@hangcheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

  * igt@i915_module_load@reload:
    - fi-kbl-7500u:       [PASS][4] -> [DMESG-WARN][5] ([i915#2605])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/fi-kbl-7500u/igt@i915_module_load@reload.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/fi-kbl-7500u/igt@i915_module_load@reload.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-u2:          [FAIL][6] ([i915#1888]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html

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

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303


Participating hosts (46 -> 40)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6077 -> IGTPW_5772

  CI-20190529: 20190529
  CI_DRM_10034: 81d9afcd1e737eed4ea216976f506dfb68a59548 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5772: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/index.html
  IGT_6077: 126a3f6fc0e97786e2819085efc84e741093aed5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing
  2021-04-30 16:18 ` [igt-dev] " Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  (?)
@ 2021-05-03 11:09 ` Patchwork
  2021-05-05 14:55   ` Janusz Krzysztofik
  -1 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2021-05-03 11:09 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev


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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from CI_DRM_10034_full -> IGTPW_5772_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@preservation-s3@vecs0:
    - shard-kbl:          [PASS][3] -> [DMESG-WARN][4] ([i915#180]) +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vecs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vecs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([fdo#109314])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][6] ([fdo#109314])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html

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

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-tglb7/igt@gem_exec_fair@basic-deadline.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gem_exec_fair@basic-deadline.html

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

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842]) +4 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gem_exec_fair@basic-none@vcs0.html
    - shard-glk:          NOTRUN -> [FAIL][14] ([i915#2842]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html

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

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@rcs0.html
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb6/igt@gem_exec_fair@basic-pace@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [PASS][20] -> [SKIP][21] ([fdo#109271])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html

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

  * igt@gem_pread@exhaustion:
    - shard-tglb:         NOTRUN -> [WARN][24] ([i915#2658])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@gem_pread@exhaustion.html
    - shard-glk:          NOTRUN -> [WARN][25] ([i915#2658])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk2/igt@gem_pread@exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][26] ([i915#2658])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl3/igt@gem_pread@exhaustion.html
    - shard-iclb:         NOTRUN -> [WARN][27] ([i915#2658])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gem_pread@exhaustion.html
    - shard-snb:          NOTRUN -> [WARN][28] ([i915#2658])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb2/igt@gem_pread@exhaustion.html
    - shard-kbl:          NOTRUN -> [WARN][29] ([i915#2658])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl3/igt@gem_pread@exhaustion.html

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

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

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#3297])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb2/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#3297])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][34] ([i915#3002]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@gem_userptr_blits@input-checking.html

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          NOTRUN -> [DMESG-WARN][35] ([i915#180])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl2/igt@gem_workarounds@suspend-resume.html

  * igt@gen3_render_tiledx_blits:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109289])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gen3_render_tiledx_blits.html
    - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#109289])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@gen3_render_tiledx_blits.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#112306]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#112306]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-snb:          NOTRUN -> [DMESG-WARN][40] ([i915#3389])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         NOTRUN -> [FAIL][41] ([i915#454])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
    - shard-tglb:         NOTRUN -> [FAIL][42] ([i915#454])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          NOTRUN -> [FAIL][43] ([i915#3343])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@i915_pm_dc@dc9-dpms.html

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

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

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271]) +180 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-apl:          [PASS][47] -> [TIMEOUT][48] ([i915#1288])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-apl1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#111615]) +5 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_joiner@basic:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#2705])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@kms_big_joiner@basic.html

  * igt@kms_chamelium@dp-mode-timings:
    - shard-apl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +19 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_chamelium@dp-mode-timings.html

  * igt@kms_color@pipe-a-degamma:
    - shard-tglb:         NOTRUN -> [FAIL][52] ([i915#1149])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb7/igt@kms_color@pipe-a-degamma.html
    - shard-iclb:         NOTRUN -> [FAIL][53] ([i915#1149])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb5/igt@kms_color@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +22 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html

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

  * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +2 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
    - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][60] ([i915#2105])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109279])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109279] / [i915#3359])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][63] ([i915#180]) +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

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

  * igt@kms_cursor_crc@pipe-d-cursor-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278]) +8 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@kms_cursor_crc@pipe-d-cursor-dpms.html

  * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3359])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html

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

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-apl:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#2065])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#2065])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][71] -> [FAIL][72] ([i915#79])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109274]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-tglb:         NOTRUN -> [SKIP][74] ([i915#2587])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-snb:          NOTRUN -> [SKIP][76] ([fdo#109271]) +456 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-glk:          NOTRUN -> [SKIP][78] ([fdo#109271]) +45 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109280]) +12 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([fdo#111825]) +15 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_panel_fitting@legacy:
    - shard-kbl:          NOTRUN -> [SKIP][81] ([fdo#109271]) +151 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@kms_panel_fitting@legacy.html

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

  * igt@kms_plane@plane-position-hole-dpms-pipe-b-planes:
    - shard-apl:          NOTRUN -> [FAIL][83] ([i915#2472])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][85] ([fdo#108145] / [i915#265])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-apl:          NOTRUN -> [FAIL][86] ([fdo#108145] / [i915#265]) +2 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

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

  * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2733])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/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-3:
    - shard-kbl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) +5 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

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

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

  * igt@kms_psr2_su@page_flip:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#1911])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_psr2_su@page_flip.html
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109642] / [fdo#111068] / [i915#658])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][95] -> [SKIP][96] ([fdo#109441]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_psr@psr2_primary_mmap_gtt.html

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

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109309])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_tv_load_detect@load-detect.html
    - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109309])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_tv_load_detect@load-detect.html

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

  * igt@kms_vrr@flip-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][102] ([fdo#109502])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_vrr@flip-suspend.html
    - shard-tglb:         NOTRUN -> [SKIP][103] ([fdo#109502])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_vrr@flip-suspend.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#2530])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@nouveau_crc@pipe-a-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2530]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@nouveau_crc@pipe-a-source-rg.html

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

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [PASS][107] -> [DMESG-WARN][108] ([i915#180])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-apl3/igt@perf_pmu@rc6-suspend.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@perf_pmu@rc6-suspend.html

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

  * igt@prime_nv_pcopy@test1_macro:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109291]) +1 similar issue
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@prime_nv_pcopy@test1_macro.html

  * igt@runner@aborted:
    - shard-apl:          NOTRUN -> ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114]) ([fdo#109271] / [i915#1610] / [i915#180] / [i915#2292] / [i915#3002] / [i915#3363])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@runner@aborted.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@runner@aborted.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl2/igt@runner@aborted.html

  * igt@sysfs_clients@create:
    - shard-glk:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2994])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk8/igt@sysfs_clients@create.html
    - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2994])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb1/igt@sysfs_clients@create.html
    - shard-apl:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) +2 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@sysfs_clients@create.html
    - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#2994])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@sysfs_clients@create.html
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2994]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@sysfs_clients@create.html

  * igt@sysfs_heartbeat_interval@mixed@vecs0:
    - shard-kbl:          [PASS][120] -> [INCOMPLETE][121] ([i915#1731])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl3/igt@sysfs_heartbeat_interval@mixed@vecs0.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@sysfs_heartbeat_interval@mixed@vecs0.html

  
#### Possible fixes ####

  * igt@gem_ctx_engines@independent@all:
    - shard-glk:          [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk5/igt@gem_ctx_engines@independent@all.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk1/igt@gem_ctx_engines@independent@all.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][124] ([i915#2842]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [DMESG-WARN][126] ([i915#180]) -> [PASS][127] +2 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl7/igt@i915_suspend@sysfs-reader.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-tglb:         [FAIL][128] ([i915#3434]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-tglb7/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb7/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][130] ([i915#2122]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [SKIP][132] ([fdo#109441]) -> [PASS][133] +3 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb4/igt@kms_psr@psr2_primary_mmap_cpu.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][134] ([i915#2684]) -> [FAIL][135] ([i915#2680])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
    - shard-iclb:         [SKIP][136] ([i915#2920]) -> [SKIP][137] ([i915#658]) +1 similar issue
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
    - shard-iclb:         [SKIP][138] ([i915#658]) -> [SKIP][139] ([i915#2920]) +1 similar issue
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150]) ([i915#1436] / [i915

== Logs ==

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

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

* Re: [Intel-gfx] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing
  2021-05-03  7:07   ` [igt-dev] " Lionel Landwerlin
@ 2021-05-05  9:56     ` Janusz Krzysztofik
  -1 siblings, 0 replies; 9+ messages in thread
From: Janusz Krzysztofik @ 2021-05-05  9:56 UTC (permalink / raw)
  To: igt-dev, Lionel Landwerlin; +Cc: intel-gfx

Hi Lionel,

On poniedziałek, 3 maja 2021 09:07:09 CEST Lionel Landwerlin wrote:
> On 30/04/2021 19:18, 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.
> >
> > Instead of forcibly using DRM device minor number 0 when opening a
> > device sysfs area, convert device minor number of a user passed device
> > fd to the minor number of respective primary (cardX) device node.
> >
> > Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> > ---
> >   lib/i915/perf.c | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> > index 56d5c0b3a..336824df7 100644
> > --- a/lib/i915/perf.c
> > +++ b/lib/i915/perf.c
> > @@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
> >   	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) & ~128);
> 
> 
> Isn't it minor(st.st_rdev) & 0xff ? 

Did you mean 0x7f?

> or even 0x3f ?
> 
> Looks like /dev/dri/controlD64 can exist too.

Not any longer, see commit 0d49f303e8a7 ("drm: remove all control node code").

However, my approach of applying a mask is oversimplified.  Minor numbers for 
different node types (primary and render) are handled separately.  I'm going 
to propose a method similar to that implemented in igt_debugfs_path().

Thanks,
Janusz


> 
> 
> -Lionel
> 
> 
> >   
> >   	return open(path, O_DIRECTORY);
> >   }
> 
> 
> 




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

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

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

Hi Lionel,

On poniedziałek, 3 maja 2021 09:07:09 CEST Lionel Landwerlin wrote:
> On 30/04/2021 19:18, 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.
> >
> > Instead of forcibly using DRM device minor number 0 when opening a
> > device sysfs area, convert device minor number of a user passed device
> > fd to the minor number of respective primary (cardX) device node.
> >
> > Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> > ---
> >   lib/i915/perf.c | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> > index 56d5c0b3a..336824df7 100644
> > --- a/lib/i915/perf.c
> > +++ b/lib/i915/perf.c
> > @@ -376,8 +376,8 @@ open_master_sysfs_dir(int drm_fd)
> >   	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) & ~128);
> 
> 
> Isn't it minor(st.st_rdev) & 0xff ? 

Did you mean 0x7f?

> or even 0x3f ?
> 
> Looks like /dev/dri/controlD64 can exist too.

Not any longer, see commit 0d49f303e8a7 ("drm: remove all control node code").

However, my approach of applying a mask is oversimplified.  Minor numbers for 
different node types (primary and render) are handled separately.  I'm going 
to propose a method similar to that implemented in igt_debugfs_path().

Thanks,
Janusz


> 
> 
> -Lionel
> 
> 
> >   
> >   	return open(path, O_DIRECTORY);
> >   }
> 
> 
> 




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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915/perf: Fix non-card0 processing
  2021-05-03 11:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-05-05 14:55   ` Janusz Krzysztofik
  0 siblings, 0 replies; 9+ messages in thread
From: Janusz Krzysztofik @ 2021-05-05 14:55 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana

On poniedziałek, 3 maja 2021 13:09:01 CEST Patchwork wrote:
> == Series Details ==
> 
> Series: lib/i915/perf: Fix non-card0 processing
> URL   : https://patchwork.freedesktop.org/series/89701/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_10034_full -> IGTPW_5772_full
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_5772_full absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_5772_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_5772/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_5772_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
>     - shard-tglb:         [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-tglb6/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html

The failure seems unrelated to the change.  That's a false positive, I 
believe.
No need to rerun as a new version of the change has already been submitted.

Thanks,
Janusz

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_5772_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_isolation@preservation-s3@vecs0:
>     - shard-kbl:          [PASS][3] -> [DMESG-WARN][4] ([i915#180]) +5 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> 
>   * igt@gem_ctx_param@set-priority-not-supported:
>     - shard-tglb:         NOTRUN -> [SKIP][5] ([fdo#109314])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@gem_ctx_param@set-priority-not-supported.html
>     - shard-iclb:         NOTRUN -> [SKIP][6] ([fdo#109314])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gem_ctx_param@set-priority-not-supported.html
> 
>   * igt@gem_ctx_persistence@legacy-engines-queued:
>     - shard-snb:          NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +4 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          [PASS][8] -> [FAIL][9] ([i915#2846])
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl1/igt@gem_exec_fair@basic-deadline.html
>     - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2846])
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-tglb7/igt@gem_exec_fair@basic-deadline.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none-share@rcs0:
>     - shard-kbl:          NOTRUN -> [FAIL][12] ([i915#2842]) +2 similar issues
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl7/igt@gem_exec_fair@basic-none-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842]) +4 similar issues
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gem_exec_fair@basic-none@vcs0.html
>     - shard-glk:          NOTRUN -> [FAIL][14] ([i915#2842]) +1 similar issue
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs1:
>     - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842]) +4 similar issues
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html
> 
>   * igt@gem_exec_fair@basic-pace@rcs0:
>     - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@rcs0.html
>     - shard-iclb:         [PASS][18] -> [FAIL][19] ([i915#2842])
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb6/igt@gem_exec_fair@basic-pace@rcs0.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@gem_exec_fair@basic-pace@rcs0.html
> 
>   * igt@gem_exec_fair@basic-pace@vcs1:
>     - shard-kbl:          [PASS][20] -> [SKIP][21] ([fdo#109271])
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [PASS][22] -> [FAIL][23] ([i915#2849])
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_pread@exhaustion:
>     - shard-tglb:         NOTRUN -> [WARN][24] ([i915#2658])
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@gem_pread@exhaustion.html
>     - shard-glk:          NOTRUN -> [WARN][25] ([i915#2658])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk2/igt@gem_pread@exhaustion.html
>     - shard-apl:          NOTRUN -> [WARN][26] ([i915#2658])
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl3/igt@gem_pread@exhaustion.html
>     - shard-iclb:         NOTRUN -> [WARN][27] ([i915#2658])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gem_pread@exhaustion.html
>     - shard-snb:          NOTRUN -> [WARN][28] ([i915#2658])
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb2/igt@gem_pread@exhaustion.html
>     - shard-kbl:          NOTRUN -> [WARN][29] ([i915#2658])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl3/igt@gem_pread@exhaustion.html
> 
>   * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
>     - shard-iclb:         NOTRUN -> [SKIP][30] ([i915#768]) +1 similar issue
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3323])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@dmabuf-unsync:
>     - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#3297])
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb2/igt@gem_userptr_blits@dmabuf-unsync.html
>     - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#3297])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@gem_userptr_blits@dmabuf-unsync.html
> 
>   * igt@gem_userptr_blits@input-checking:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][34] ([i915#3002]) +1 similar issue
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@gem_userptr_blits@input-checking.html
> 
>   * igt@gem_workarounds@suspend-resume:
>     - shard-apl:          NOTRUN -> [DMESG-WARN][35] ([i915#180])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl2/igt@gem_workarounds@suspend-resume.html
> 
>   * igt@gen3_render_tiledx_blits:
>     - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109289])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@gen3_render_tiledx_blits.html
>     - shard-tglb:         NOTRUN -> [SKIP][37] ([fdo#109289])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@gen3_render_tiledx_blits.html
> 
>   * igt@gen9_exec_parse@allowed-all:
>     - shard-iclb:         NOTRUN -> [SKIP][38] ([fdo#112306]) +1 similar issue
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@gen9_exec_parse@allowed-all.html
>     - shard-tglb:         NOTRUN -> [SKIP][39] ([fdo#112306]) +1 similar issue
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@gen9_exec_parse@allowed-all.html
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - shard-snb:          NOTRUN -> [DMESG-WARN][40] ([i915#3389])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_pm_dc@dc6-psr:
>     - shard-iclb:         NOTRUN -> [FAIL][41] ([i915#454])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@i915_pm_dc@dc6-psr.html
>     - shard-tglb:         NOTRUN -> [FAIL][42] ([i915#454])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
> 
>   * igt@i915_pm_dc@dc9-dpms:
>     - shard-apl:          NOTRUN -> [FAIL][43] ([i915#3343])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@i915_pm_dc@dc9-dpms.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>     - shard-apl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#1937])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
> 
>   * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>     - shard-glk:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#1937])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk9/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> 
>   * igt@i915_pm_rpm@modeset-lpsp-stress:
>     - shard-apl:          NOTRUN -> [SKIP][46] ([fdo#109271]) +180 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@i915_pm_rpm@modeset-lpsp-stress.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>     - shard-apl:          [PASS][47] -> [TIMEOUT][48] ([i915#1288])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-apl1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>     - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#111615]) +5 similar issues
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
> 
>   * igt@kms_big_joiner@basic:
>     - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#2705])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@kms_big_joiner@basic.html
> 
>   * igt@kms_chamelium@dp-mode-timings:
>     - shard-apl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +19 similar issues
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_chamelium@dp-mode-timings.html
> 
>   * igt@kms_color@pipe-a-degamma:
>     - shard-tglb:         NOTRUN -> [FAIL][52] ([i915#1149])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb7/igt@kms_color@pipe-a-degamma.html
>     - shard-iclb:         NOTRUN -> [FAIL][53] ([i915#1149])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb5/igt@kms_color@pipe-a-degamma.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>     - shard-snb:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +22 similar issues
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
> 
>   * igt@kms_color_chamelium@pipe-a-degamma:
>     - shard-kbl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) +16 similar issues
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@kms_color_chamelium@pipe-a-degamma.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
>     - shard-iclb:         NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +2 similar issues
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
>     - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +3 similar issues
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
> 
>   * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
>     - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109284] / [fdo#111827]) +4 similar issues
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
>     - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278] / [fdo#109284] / [fdo#111827])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-apl:          NOTRUN -> [FAIL][60] ([i915#2105])
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen:
>     - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109279])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
>     - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#109279] / [i915#3359])
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-kbl:          NOTRUN -> [DMESG-WARN][63] ([i915#180]) +2 similar issues
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
>     - shard-tglb:         NOTRUN -> [SKIP][64] ([i915#3319]) +1 similar issue
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-dpms:
>     - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278]) +8 similar issues
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@kms_cursor_crc@pipe-d-cursor-dpms.html
> 
>   * igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
>     - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3359])
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>     - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109274] / [fdo#109278])
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> 
>   * igt@kms_cursor_legacy@pipe-d-torture-bo:
>     - shard-apl:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) +1 similar issue
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html
> 
>   * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
>     - shard-tglb:         NOTRUN -> [SKIP][69] ([i915#2065])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
>     - shard-iclb:         NOTRUN -> [SKIP][70] ([i915#2065])
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
>     - shard-glk:          [PASS][71] -> [FAIL][72] ([i915#79])
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
>     - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109274]) +1 similar issue
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
>     - shard-tglb:         NOTRUN -> [SKIP][74] ([i915#2587])
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs:
>     - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#2672])
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
>     - shard-snb:          NOTRUN -> [SKIP][76] ([fdo#109271]) +456 similar issues
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-snb5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
>     - shard-kbl:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2672])
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>     - shard-glk:          NOTRUN -> [SKIP][78] ([fdo#109271]) +45 similar issues
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
>     - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109280]) +12 similar issues
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
>     - shard-tglb:         NOTRUN -> [SKIP][80] ([fdo#111825]) +15 similar issues
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html
> 
>   * igt@kms_panel_fitting@legacy:
>     - shard-kbl:          NOTRUN -> [SKIP][81] ([fdo#109271]) +151 similar issues
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@kms_panel_fitting@legacy.html
> 
>   * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
>     - shard-kbl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#533])
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
> 
>   * igt@kms_plane@plane-position-hole-dpms-pipe-b-planes:
>     - shard-apl:          NOTRUN -> [FAIL][83] ([i915#2472])
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@kms_plane@plane-position-hole-dpms-pipe-b-planes.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265])
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>     - shard-glk:          NOTRUN -> [FAIL][85] ([fdo#108145] / [i915#265])
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
>     - shard-apl:          NOTRUN -> [FAIL][86] ([fdo#108145] / [i915#265]) +2 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
>     - shard-kbl:          NOTRUN -> [FAIL][87] ([i915#265])
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
> 
>   * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
>     - shard-apl:          NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2733])
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/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-3:
>     - shard-kbl:          NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) +5 similar issues
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5:
>     - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +4 similar issues
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1:
>     - shard-iclb:         NOTRUN -> [SKIP][91] ([i915#658])
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
>     - shard-glk:          NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#658]) +1 similar issue
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#1911])
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb8/igt@kms_psr2_su@page_flip.html
>     - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109642] / [fdo#111068] / [i915#658])
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_psr@psr2_primary_mmap_gtt:
>     - shard-iclb:         [PASS][95] -> [SKIP][96] ([fdo#109441]) +1 similar issue
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@kms_psr@psr2_primary_mmap_gtt.html
> 
>   * igt@kms_psr@psr2_sprite_render:
>     - shard-tglb:         NOTRUN -> [FAIL][97] ([i915#132])
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_psr@psr2_sprite_render.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109309])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_tv_load_detect@load-detect.html
>     - shard-iclb:         NOTRUN -> [SKIP][99] ([fdo#109309])
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-kbl:          [PASS][100] -> [DMESG-WARN][101] ([i915#180] / [i915#295])
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   * igt@kms_vrr@flip-suspend:
>     - shard-iclb:         NOTRUN -> [SKIP][102] ([fdo#109502])
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_vrr@flip-suspend.html
>     - shard-tglb:         NOTRUN -> [SKIP][103] ([fdo#109502])
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb5/igt@kms_vrr@flip-suspend.html
> 
>   * igt@nouveau_crc@pipe-a-source-rg:
>     - shard-iclb:         NOTRUN -> [SKIP][104] ([i915#2530])
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb3/igt@nouveau_crc@pipe-a-source-rg.html
>     - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2530]) +1 similar issue
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@nouveau_crc@pipe-a-source-rg.html
> 
>   * igt@nouveau_crc@pipe-d-source-outp-complete:
>     - shard-iclb:         NOTRUN -> [SKIP][106] ([fdo#109278] / [i915#2530])
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb4/igt@nouveau_crc@pipe-d-source-outp-complete.html
> 
>   * igt@perf_pmu@rc6-suspend:
>     - shard-apl:          [PASS][107] -> [DMESG-WARN][108] ([i915#180])
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-apl3/igt@perf_pmu@rc6-suspend.html
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@perf_pmu@rc6-suspend.html
> 
>   * igt@prime_nv_api@nv_self_import:
>     - shard-iclb:         NOTRUN -> [SKIP][109] ([fdo#109291]) +1 similar issue
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb1/igt@prime_nv_api@nv_self_import.html
> 
>   * igt@prime_nv_pcopy@test1_macro:
>     - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109291]) +1 similar issue
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb6/igt@prime_nv_pcopy@test1_macro.html
> 
>   * igt@runner@aborted:
>     - shard-apl:          NOTRUN -> ([FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114]) ([fdo#109271] / [i915#1610] / [i915#180] / [i915#2292] / [i915#3002] / [i915#3363])
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl7/igt@runner@aborted.html
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl6/igt@runner@aborted.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@runner@aborted.html
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl2/igt@runner@aborted.html
> 
>   * igt@sysfs_clients@create:
>     - shard-glk:          NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2994])
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk8/igt@sysfs_clients@create.html
>     - shard-tglb:         NOTRUN -> [SKIP][116] ([i915#2994])
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb1/igt@sysfs_clients@create.html
>     - shard-apl:          NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) +2 similar issues
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-apl8/igt@sysfs_clients@create.html
>     - shard-iclb:         NOTRUN -> [SKIP][118] ([i915#2994])
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb8/igt@sysfs_clients@create.html
>     - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2994]) +1 similar issue
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@sysfs_clients@create.html
> 
>   * igt@sysfs_heartbeat_interval@mixed@vecs0:
>     - shard-kbl:          [PASS][120] -> [INCOMPLETE][121] ([i915#1731])
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl3/igt@sysfs_heartbeat_interval@mixed@vecs0.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@sysfs_heartbeat_interval@mixed@vecs0.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_engines@independent@all:
>     - shard-glk:          [DMESG-WARN][122] ([i915#118] / [i915#95]) -> [PASS][123]
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk5/igt@gem_ctx_engines@independent@all.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk1/igt@gem_ctx_engines@independent@all.html
> 
>   * igt@gem_exec_fair@basic-pace@vecs0:
>     - shard-kbl:          [FAIL][124] ([i915#2842]) -> [PASS][125]
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html
> 
>   * igt@i915_suspend@sysfs-reader:
>     - shard-kbl:          [DMESG-WARN][126] ([i915#180]) -> [PASS][127] +2 similar issues
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-kbl7/igt@i915_suspend@sysfs-reader.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-kbl7/igt@i915_suspend@sysfs-reader.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
>     - shard-tglb:         [FAIL][128] ([i915#3434]) -> [PASS][129]
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-tglb7/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-tglb7/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
> 
>   * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2:
>     - shard-glk:          [FAIL][130] ([i915#2122]) -> [PASS][131]
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_psr@psr2_primary_mmap_cpu:
>     - shard-iclb:         [SKIP][132] ([fdo#109441]) -> [PASS][133] +3 similar issues
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb4/igt@kms_psr@psr2_primary_mmap_cpu.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_rc6_residency@rc6-idle:
>     - shard-iclb:         [WARN][134] ([i915#2684]) -> [FAIL][135] ([i915#2680])
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
>     - shard-iclb:         [SKIP][136] ([i915#2920]) -> [SKIP][137] ([i915#658]) +1 similar issue
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html
> 
>   * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
>     - shard-iclb:         [SKIP][138] ([i915#658]) -> [SKIP][139] ([i915#2920]) +1 similar issue
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10034/shard-iclb3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150]) ([i915#1436] / [i915
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5772/index.html
> 




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

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

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

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-30 16:18 [Intel-gfx] [RFC PATCH i-g-t] lib/i915/perf: Fix non-card0 processing Janusz Krzysztofik
2021-04-30 16:18 ` [igt-dev] " Janusz Krzysztofik
2021-05-03  7:07 ` [Intel-gfx] " Lionel Landwerlin
2021-05-03  7:07   ` [igt-dev] " Lionel Landwerlin
2021-05-05  9:56   ` [Intel-gfx] " Janusz Krzysztofik
2021-05-05  9:56     ` [igt-dev] " Janusz Krzysztofik
2021-05-03  9:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-05-03 11:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-05 14:55   ` 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.