All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers.
@ 2021-06-21 17:21 Mark Yacoub
  2021-06-21 18:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3) Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Mark Yacoub @ 2021-06-21 17:21 UTC (permalink / raw)
  To: igt-dev; +Cc: petri.latvala, bas, seanpaul, Mark Yacoub

From: Mark Yacoub <markyacoub@google.com>

Calculate the width and height of the tile on amdgpu when the modifier
is not linear.

v1:
Change width_ret to bytes not pixels.

Cc: bas@basnieuwenhuizen.nl
Cc: daniel.vetter@ffwll.ch
Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
Change-Id: I30849ee1368fc626d1ce2826fb726cd76565a449
---
 lib/igt_fb.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 71b89855..a3926dc9 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -396,6 +396,19 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
 		vc4_modifier_param = fourcc_mod_broadcom_param(modifier);
 		modifier = fourcc_mod_broadcom_mod(modifier);
 	}
+	// For all non-linear modifiers, AMD uses 64 KiB tiles
+	else if (IS_AMD_FMT_MOD(modifier)) {
+		igt_require_amdgpu(fd);
+		const int bytes_per_pixel = fb_bpp / 8;
+		const int format_log2 = log2(bytes_per_pixel);
+		const int pixel_log2 = log2(64 * 1024) - format_log2;
+		const int width_log2 = (pixel_log2 + 1) / 2;
+		const int height_log2 = pixel_log2 - width_log2;
+
+		*width_ret = bytes_per_pixel << width_log2;
+		*height_ret = 1 << height_log2;
+		return;
+	}
 
 	switch (modifier) {
 	case LOCAL_DRM_FORMAT_MOD_NONE:
-- 
2.32.0.288.g62a8d224e6-goog

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3)
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
@ 2021-06-21 18:02 ` Patchwork
  2021-06-21 20:38 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-06-21 18:02 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev


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

== Series Details ==

Series: lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3)
URL   : https://patchwork.freedesktop.org/series/89017/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10255 -> IGTPW_5950
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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


Changes
-------

  No changes found


Participating hosts (44 -> 39)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6115 -> IGTPW_5950

  CI-20190529: 20190529
  CI_DRM_10255: 33910d77746495afd054c12d50f158be8039bac0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5950: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/index.html
  IGT_6115: 4ef420186b82f1a6d9c9b69d2f8de4fd100a2af3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3)
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
  2021-06-21 18:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3) Patchwork
@ 2021-06-21 20:38 ` Patchwork
  2021-06-22 18:11 ` [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Rodrigo Siqueira
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-06-21 20:38 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev


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

== Series Details ==

Series: lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3)
URL   : https://patchwork.freedesktop.org/series/89017/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10255_full -> IGTPW_5950_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
    - shard-snb:          NOTRUN -> [DMESG-WARN][1] +7 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-snb5/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][2] +13 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][3] +14 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([fdo#112306])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb1/igt@gen9_exec_parse@unaligned-jump.html
    - shard-tglb:         NOTRUN -> [SKIP][6] ([fdo#112306])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - shard-apl:          NOTRUN -> [SKIP][7] ([fdo#109271]) +6 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-apl6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
    - shard-tglb:         NOTRUN -> [SKIP][8] ([fdo#109506] / [i915#2411])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][9] ([fdo#109293] / [fdo#109506])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][10] ([fdo#110725] / [fdo#111614])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb5/igt@kms_big_fb@linear-64bpp-rotate-270.html
    - shard-tglb:         NOTRUN -> [SKIP][11] ([fdo#111614])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_color@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [DMESG-WARN][12] ([i915#1610]) +13 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-apl8/igt@kms_color@pipe-c-ctm-0-25.html
    - shard-iclb:         NOTRUN -> [DMESG-WARN][13] ([i915#1149]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb2/igt@kms_color@pipe-c-ctm-0-25.html

  * igt@kms_color@pipe-c-ctm-0-5:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][14] ([i915#1149]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb5/igt@kms_color@pipe-c-ctm-0-5.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-rapid-movement:
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#3319])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-rapid-movement.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> [SKIP][17] ([fdo#109271]) +8 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-glk7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][18] ([fdo#111825]) +3 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

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

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][20] ([i915#2411]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@kms_vblank@pipe-b-wait-idle:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][21] ([i915#1610]) +14 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl7/igt@kms_vblank@pipe-b-wait-idle.html

  * igt@kms_vblank@pipe-c-query-idle:
    - shard-glk:          NOTRUN -> [DMESG-WARN][22] ([i915#1610]) +14 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-glk8/igt@kms_vblank@pipe-c-query-idle.html

  * igt@kms_vblank@pipe-c-wait-idle-hang:
    - shard-snb:          NOTRUN -> [SKIP][23] ([fdo#109271]) +17 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-snb6/igt@kms_vblank@pipe-c-wait-idle-hang.html

  * igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([fdo#109278]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-iclb4/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html
    - shard-kbl:          NOTRUN -> [SKIP][25] ([fdo#109271]) +9 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@kms_vblank@pipe-d-ts-continuation-modeset-rpm.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34], [FAIL][35], [FAIL][36], [FAIL][37], [FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50]) ([fdo#109271] / [i915#1814] / [i915#2426] / [i915#2505] / [i915#3363] / [i915#602]) -> ([FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58], [FAIL][59], [FAIL][60], [FAIL][61], [FAIL][62], [FAIL][63], [FAIL][64], [FAIL][65], [FAIL][66], [FAIL][67], [FAIL][68], [FAIL][69], [FAIL][70], [FAIL][71], [FAIL][72], [FAIL][73], [FAIL][74], [FAIL][75]) ([fdo#109271] / [i915#1436] / [i915#1814] / [i915#2426] / [i915#2505] / [i915#3363] / [i915#602])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl7/igt@runner@aborted.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl7/igt@runner@aborted.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl6/igt@runner@aborted.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl7/igt@runner@aborted.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl6/igt@runner@aborted.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl7/igt@runner@aborted.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl6/igt@runner@aborted.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl6/igt@runner@aborted.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl4/igt@runner@aborted.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl1/igt@runner@aborted.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl4/igt@runner@aborted.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl1/igt@runner@aborted.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl4/igt@runner@aborted.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl1/igt@runner@aborted.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl4/igt@runner@aborted.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl1/igt@runner@aborted.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl3/igt@runner@aborted.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl3/igt@runner@aborted.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl1/igt@runner@aborted.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl3/igt@runner@aborted.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl2/igt@runner@aborted.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl3/igt@runner@aborted.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl2/igt@runner@aborted.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl2/igt@runner@aborted.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-kbl2/igt@runner@aborted.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl3/igt@runner@aborted.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl6/igt@runner@aborted.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl1/igt@runner@aborted.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@runner@aborted.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl3/igt@runner@aborted.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl6/igt@runner@aborted.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@runner@aborted.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl6/igt@runner@aborted.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl7/igt@runner@aborted.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl7/igt@runner@aborted.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl1/igt@runner@aborted.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl1/igt@runner@aborted.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl4/igt@runner@aborted.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl4/igt@runner@aborted.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl7/igt@runner@aborted.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@runner@aborted.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl6/igt@runner@aborted.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@runner@aborted.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl4/igt@runner@aborted.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl3/igt@runner@aborted.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl7/igt@runner@aborted.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl3/igt@runner@aborted.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl2/igt@runner@aborted.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl1/igt@runner@aborted.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-kbl6/igt@runner@aborted.html
    - shard-tglb:         ([FAIL][76], [FAIL][77], [FAIL][78], [FAIL][79], [FAIL][80], [FAIL][81], [FAIL][82], [FAIL][83], [FAIL][84], [FAIL][85], [FAIL][86], [FAIL][87], [FAIL][88], [FAIL][89], [FAIL][90], [FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94], [FAIL][95], [FAIL][96], [FAIL][97], [FAIL][98], [FAIL][99], [FAIL][100]) ([i915#1602] / [i915#1814] / [i915#2426] / [i915#402] / [i915#456]) -> ([FAIL][101], [FAIL][102], [FAIL][103], [FAIL][104], [FAIL][105], [FAIL][106], [FAIL][107], [FAIL][108], [FAIL][109], [FAIL][110], [FAIL][111], [FAIL][112], [FAIL][113], [FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125]) ([i915#1436] / [i915#1602] / [i915#1814] / [i915#2426] / [i915#402] / [i915#456])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb1/igt@runner@aborted.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb5/igt@runner@aborted.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb1/igt@runner@aborted.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb8/igt@runner@aborted.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb6/igt@runner@aborted.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb2/igt@runner@aborted.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb3/igt@runner@aborted.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb6/igt@runner@aborted.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb3/igt@runner@aborted.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb6/igt@runner@aborted.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb8/igt@runner@aborted.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb2/igt@runner@aborted.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb7/igt@runner@aborted.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb7/igt@runner@aborted.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb3/igt@runner@aborted.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb5/igt@runner@aborted.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb6/igt@runner@aborted.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb3/igt@runner@aborted.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb5/igt@runner@aborted.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb6/igt@runner@aborted.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb2/igt@runner@aborted.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb5/igt@runner@aborted.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb7/igt@runner@aborted.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb8/igt@runner@aborted.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10255/shard-tglb1/igt@runner@aborted.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb2/igt@runner@aborted.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb8/igt@runner@aborted.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb7/igt@runner@aborted.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb6/igt@runner@aborted.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb2/igt@runner@aborted.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@runner@aborted.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb3/igt@runner@aborted.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb3/igt@runner@aborted.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@runner@aborted.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb7/igt@runner@aborted.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb6/igt@runner@aborted.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb2/igt@runner@aborted.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb5/igt@runner@aborted.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb3/igt@runner@aborted.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@runner@aborted.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb8/igt@runner@aborted.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb6/igt@runner@aborted.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb2/igt@runner@aborted.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb1/igt@runner@aborted.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb8/igt@runner@aborted.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb8/igt@runner@aborted.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb7/igt@runner@aborted.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb5/igt@runner@aborted.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb7/igt@runner@aborted.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/shard-tglb5/igt@runner@aborted.html

  
  [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#112306]: https://bugs.freedesktop.org/show_bug.cgi?id=112306
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#1610]: https://gitlab.freedesktop.org/drm/intel/issues/1610
  [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
  [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602


Participating hosts (10 -> 7)
------------------------------

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6115 -> IGTPW_5950
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_10255: 33910d77746495afd054c12d50f158be8039bac0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5950: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5950/index.html
  IGT_6115: 4ef420186b82f1a6d9c9b69d2f8de4fd100a2af3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

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

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

* Re: [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers.
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
  2021-06-21 18:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3) Patchwork
  2021-06-21 20:38 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-06-22 18:11 ` Rodrigo Siqueira
  2021-06-23  6:15   ` Petri Latvala
  2021-06-28  8:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Rodrigo Siqueira @ 2021-06-22 18:11 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev, Mark Yacoub, seanpaul, petri.latvala, bas

On 06/21, Mark Yacoub wrote:
> From: Mark Yacoub <markyacoub@google.com>
> 
> Calculate the width and height of the tile on amdgpu when the modifier
> is not linear.
> 
> v1:
> Change width_ret to bytes not pixels.
> 
> Cc: bas@basnieuwenhuizen.nl
> Cc: daniel.vetter@ffwll.ch
> Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
> Change-Id: I30849ee1368fc626d1ce2826fb726cd76565a449
> ---
>  lib/igt_fb.c | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index 71b89855..a3926dc9 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -396,6 +396,19 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
>  		vc4_modifier_param = fourcc_mod_broadcom_param(modifier);
>  		modifier = fourcc_mod_broadcom_mod(modifier);
>  	}
> +	// For all non-linear modifiers, AMD uses 64 KiB tiles
> +	else if (IS_AMD_FMT_MOD(modifier)) {
> +		igt_require_amdgpu(fd);
> +		const int bytes_per_pixel = fb_bpp / 8;
> +		const int format_log2 = log2(bytes_per_pixel);
> +		const int pixel_log2 = log2(64 * 1024) - format_log2;
> +		const int width_log2 = (pixel_log2 + 1) / 2;
> +		const int height_log2 = pixel_log2 - width_log2;
> +
> +		*width_ret = bytes_per_pixel << width_log2;
> +		*height_ret = 1 << height_log2;
> +		return;
> +	}

Hi Mark,

This patch lgtm,

Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>

However, let's check if Bas has any comment about it.

Btw, is the CI failure a false positive?

Thanks

>  
>  	switch (modifier) {
>  	case LOCAL_DRM_FORMAT_MOD_NONE:
> -- 
> 2.32.0.288.g62a8d224e6-goog
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Figt-dev&amp;data=04%7C01%7CRodrigo.Siqueira%40amd.com%7C9bb62f4ec1014d6c59c508d934d9127e%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637598929185530952%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=1D6ewDi%2FlMRkDjtg94ZNeaxHQFJhfMrYAbKLGQ2%2F9DA%3D&amp;reserved=0

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

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

* Re: [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers.
  2021-06-22 18:11 ` [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Rodrigo Siqueira
@ 2021-06-23  6:15   ` Petri Latvala
  2021-07-06 12:35     ` Rodrigo Siqueira
  0 siblings, 1 reply; 15+ messages in thread
From: Petri Latvala @ 2021-06-23  6:15 UTC (permalink / raw)
  To: Rodrigo Siqueira; +Cc: igt-dev, Mark Yacoub, seanpaul, bas

On Tue, Jun 22, 2021 at 02:11:52PM -0400, Rodrigo Siqueira wrote:
> On 06/21, Mark Yacoub wrote:
> > From: Mark Yacoub <markyacoub@google.com>
> > 
> > Calculate the width and height of the tile on amdgpu when the modifier
> > is not linear.
> > 
> > v1:
> > Change width_ret to bytes not pixels.
> > 
> > Cc: bas@basnieuwenhuizen.nl
> > Cc: daniel.vetter@ffwll.ch
> > Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
> > Change-Id: I30849ee1368fc626d1ce2826fb726cd76565a449
> > ---
> >  lib/igt_fb.c | 13 +++++++++++++
> >  1 file changed, 13 insertions(+)
> > 
> > diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> > index 71b89855..a3926dc9 100644
> > --- a/lib/igt_fb.c
> > +++ b/lib/igt_fb.c
> > @@ -396,6 +396,19 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
> >  		vc4_modifier_param = fourcc_mod_broadcom_param(modifier);
> >  		modifier = fourcc_mod_broadcom_mod(modifier);
> >  	}
> > +	// For all non-linear modifiers, AMD uses 64 KiB tiles
> > +	else if (IS_AMD_FMT_MOD(modifier)) {
> > +		igt_require_amdgpu(fd);
> > +		const int bytes_per_pixel = fb_bpp / 8;
> > +		const int format_log2 = log2(bytes_per_pixel);
> > +		const int pixel_log2 = log2(64 * 1024) - format_log2;
> > +		const int width_log2 = (pixel_log2 + 1) / 2;
> > +		const int height_log2 = pixel_log2 - width_log2;
> > +
> > +		*width_ret = bytes_per_pixel << width_log2;
> > +		*height_ret = 1 << height_log2;
> > +		return;
> > +	}
> 
> Hi Mark,
> 
> This patch lgtm,
> 
> Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
> 
> However, let's check if Bas has any comment about it.
> 
> Btw, is the CI failure a false positive?

Looks like those results are caused by the regression in the kernel we
had for a bit. I queued this patch for a re-test.


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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
                   ` (2 preceding siblings ...)
  2021-06-22 18:11 ` [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Rodrigo Siqueira
@ 2021-06-28  8:29 ` Patchwork
  2021-06-28  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2021-07-01 22:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-06-28  8:29 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev


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

== Series Details ==

Series: lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
URL   : https://patchwork.freedesktop.org/series/89017/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10282 -> IGTPW_5952
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@runner@aborted:
    - fi-bdw-5557u:       NOTRUN -> [FAIL][1] ([i915#1602] / [i915#2029])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/fi-bdw-5557u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_mocs:
    - {fi-tgl-1115g4}:    [DMESG-WARN][2] ([i915#2867]) -> [PASS][3] +14 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/fi-tgl-1115g4/igt@i915_selftest@live@gt_mocs.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/fi-tgl-1115g4/igt@i915_selftest@live@gt_mocs.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#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
  [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867


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

  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-n3050 fi-bsw-cyan fi-kbl-x1275 fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6119 -> IGTPW_5952

  CI-20190529: 20190529
  CI_DRM_10282: 67f5a18128770817e4218a9e496d2bf5047c51e8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5952: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html
  IGT_6119: a306810ebbc8984bde38a57ef0c33eea394f4e18 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
                   ` (3 preceding siblings ...)
  2021-06-28  8:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4) Patchwork
@ 2021-06-28  9:26 ` Patchwork
  2021-06-28 17:08   ` Mark Yacoub
  2021-07-01 22:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2021-06-28  9:26 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev


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

== Series Details ==

Series: lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
URL   : https://patchwork.freedesktop.org/series/89017/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_shrink@reclaim:
    - shard-tglb:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html

  * igt@i915_pm_dc@dc5-psr:
    - shard-iclb:         [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_rps@waitboost:
    - shard-glk:          [PASS][5] -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html

  
#### Warnings ####

  * igt@runner@aborted:
    - shard-iclb:         ([FAIL][7], [FAIL][8]) ([i915#1814] / [i915#3002]) -> ([FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12]) ([i915#3002])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-clear:
    - shard-glk:          [PASS][13] -> [FAIL][14] ([i915#1888] / [i915#3160])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html

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

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

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [PASS][17] -> [FAIL][18] ([i915#2410])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html

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

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#2842]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [PASS][22] -> [FAIL][23] ([i915#2842])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [PASS][24] -> [FAIL][25] ([i915#2842] / [i915#3468])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][26] -> [FAIL][27] ([i915#2842])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         NOTRUN -> [FAIL][28] ([i915#2842]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][29] ([i915#2842])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html

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

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          NOTRUN -> [FAIL][31] ([i915#2842]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#112283])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#112283])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#2190])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html

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

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

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][37] ([fdo#109271]) +63 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

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

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#3297])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#3297])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html

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

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109289]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html

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

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

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][46] -> [DMESG-WARN][47] ([i915#180]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#111614])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html

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

  * igt@kms_chamelium@dp-crc-multiple:
    - shard-glk:          NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html

  * igt@kms_chamelium@vga-hpd-with-enabled-mode:
    - shard-iclb:         NOTRUN -> [SKIP][52] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html

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

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +28 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

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

  * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html

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

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> [FAIL][59] ([i915#2105])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html
    - shard-apl:          NOTRUN -> [FAIL][60] ([i915#2105])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109300] / [fdo#111066])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html
    - shard-tglb:         NOTRUN -> [SKIP][63] ([fdo#109279] / [i915#3359]) +4 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html

  * igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([i915#3359])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([fdo#111825]) +14 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@pipe-d-single-move:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109278]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html

  * igt@kms_dp_dsc@basic-dsc-enable-dp:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([fdo#109349])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109349])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html

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

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [PASS][72] -> [INCOMPLETE][73] ([i915#155] / [i915#636])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html

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

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

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

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

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][78] ([i915#180])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([i915#1187])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html
    - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#1187])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][81] ([i915#180]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#533]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-apl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#533]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - shard-kbl:          NOTRUN -> [FAIL][85] ([fdo#108145] / [i915#265])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html

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

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

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][88] ([i915#3536]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3536])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-a-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([fdo#112054])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html

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

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-tglb:         NOTRUN -> [SKIP][93] ([i915#2920]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-glk:          NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#658]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([i915#658])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][96] -> [SKIP][97] ([fdo#109441])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_setmode@basic:
    - shard-snb:          NOTRUN -> [FAIL][98] ([i915#31])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][99] ([IGT#2])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.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_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#2437])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html
    - shard-kbl:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2437])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#2437])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html
    - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#2437])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html

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

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

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

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][109] ([fdo#109271]) +304 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109291])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][111] ([i915#2994]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         NOTRUN -> [SKIP][112] ([i915#2994]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2994]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html

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

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][116] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][118] ([i915#2842]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [FAIL][120] ([i915#2842]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_gttfill@basic:
    - shard-iclb:         [INCOMPLETE][122] ([i915#2405]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html

  * igt@gem_mmap_gtt@big-copy-xy:
    - shard-glk:          [FAIL][124] ([i915#307]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [DMESG-WARN][126] ([i915#1436] / [i915#716]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][128] ([fdo#109271]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          [DMESG-WARN][130] ([i915#118] / [i915#95]) -> [PASS][131] +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][132] ([i915#180]) -> [PASS][133] +2 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [DMESG-WARN][134] ([i915#180]) -> [PASS][135] +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][136] ([fdo#109441]) -> [PASS][137] +1 similar issue
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][138] ([i915#2842]) -> [FAIL][139] ([i915#2852])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][140] ([fdo#109349]) -> [DMESG-WARN][141] ([i915#1226])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][142] ([i915#2920]) -> [SKIP][143] ([i915#658])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
    - shard-iclb:         [SKIP][144] ([i915#

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-28  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-06-28 17:08   ` Mark Yacoub
  2021-06-29 16:07     ` Rodrigo Siqueira
  0 siblings, 1 reply; 15+ messages in thread
From: Mark Yacoub @ 2021-06-28 17:08 UTC (permalink / raw)
  To: Development mailing list for IGT GPU Tools


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

sounds like a false positive.it's an AMD only code.

On Mon, Jun 28, 2021 at 5:26 AM Patchwork <patchwork@emeril.freedesktop.org>
wrote:

> *Patch Details*
> *Series:* lib/igt_fb: Support Tile Size for AMD non linear modifiers.
> (rev4)
> *URL:* https://patchwork.freedesktop.org/series/89017/
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html CI
> Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_5952_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_5952_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_5952/index.html
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_5952_full:
> IGT changes Possible regressions
>
>    -
>
>    igt@gem_shrink@reclaim:
>    - shard-tglb: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html>
>       -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html>
>    -
>
>    igt@i915_pm_dc@dc5-psr:
>    - shard-iclb: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
>       -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
>    -
>
>    igt@i915_pm_rps@waitboost:
>    - shard-glk: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html>
>
> Warnings
>
>    - igt@runner@aborted:
>       - shard-iclb: (FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html>,
>       FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html>)
>       ([i915#1814] / [i915#3002]) -> (FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html>,
>       FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html>,
>       FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html>,
>       FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html>)
>       ([i915#3002])
>
> Known issues
>
> Here are the changes found in IGTPW_5952_full that come from known issues:
> IGT changes Issues hit
>
>    -
>
>    igt@gem_create@create-clear:
>    - shard-glk: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html>
>       ([i915#1888] / [i915#3160])
>    -
>
>    igt@gem_create@create-massive:
>    - shard-kbl: NOTRUN -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_create@create-massive.html>
>       ([i915#3002])
>    -
>
>    igt@gem_ctx_persistence@legacy-engines-mixed:
>    - shard-snb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html>
>       ([fdo#109271] / [i915#1099]) +7 similar issues
>    -
>
>    igt@gem_ctx_persistence@many-contexts:
>    - shard-tglb: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html>
>       ([i915#2410])
>    -
>
>    igt@gem_exec_fair@basic-deadline:
>    - shard-apl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_exec_fair@basic-deadline.html>
>       ([i915#2846])
>    -
>
>    igt@gem_exec_fair@basic-none-rrul@rcs0:
>    - shard-glk: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>       ([i915#2842]) +1 similar issue
>    -
>
>    igt@gem_exec_fair@basic-none-vip@rcs0:
>    - shard-kbl: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
>       ([i915#2842])
>    -
>
>    igt@gem_exec_fair@basic-none@vecs0:
>    - shard-glk: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html>
>       ([i915#2842] / [i915#3468])
>    -
>
>    igt@gem_exec_fair@basic-pace-share@rcs0:
>    - shard-tglb: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>       -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>       ([i915#2842])
>    -
>
>    igt@gem_exec_fair@basic-pace@bcs0:
>    - shard-tglb: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html>
>       ([i915#2842]) +3 similar issues
>    -
>
>    igt@gem_exec_fair@basic-pace@rcs0:
>    - shard-kbl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html>
>       ([i915#2842])
>    -
>
>    igt@gem_exec_fair@basic-pace@vcs1:
>    - shard-iclb: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
>       ([i915#2842]) +4 similar issues
>    -
>
>    igt@gem_exec_fair@basic-pace@vecs0:
>    - shard-glk: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html>
>       ([i915#2842]) +2 similar issues
>    -
>
>    igt@gem_exec_params@secure-non-master:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html>
>       ([fdo#112283])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html>
>       ([fdo#112283])
>       -
>
>    igt@gem_huc_copy@huc-copy:
>    - shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html>
>       ([fdo#109271] / [i915#2190])
>    -
>
>    igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
>    - shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html>
>       ([fdo#109271]) +159 similar issues
>    -
>
>    igt@gem_render_copy@y-tiled-to-vebox-linear:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
>       ([i915#768]) +1 similar issue
>    -
>
>    igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
>    - shard-glk: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html>
>       ([fdo#109271]) +63 similar issues
>    -
>
>    igt@gem_userptr_blits@dmabuf-sync:
>    - shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
>       ([fdo#109271] / [i915#3323])
>    -
>
>    igt@gem_userptr_blits@dmabuf-unsync:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html>
>       ([i915#3297])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html>
>       ([i915#3297])
>       -
>
>    igt@gem_userptr_blits@input-checking:
>    - shard-apl: NOTRUN -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@gem_userptr_blits@input-checking.html>
>       ([i915#3002]) +1 similar issue
>    -
>
>    igt@gen3_render_tiledy_blits:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html>
>       ([fdo#109289]) +2 similar issues
>    -
>
>    igt@gen7_exec_parse@chained-batch:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gen7_exec_parse@chained-batch.html>
>       ([fdo#109289]) +1 similar issue
>    -
>
>    igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
>    -
>
>       shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
>       ([fdo#109271] / [i915#1937])
>       -
>
>       shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
>       ([fdo#109271] / [i915#1937])
>       -
>
>    igt@i915_suspend@forcewake:
>    - shard-kbl: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html>
>       -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html>
>       ([i915#180]) +1 similar issue
>    -
>
>    igt@kms_big_fb@linear-64bpp-rotate-270:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html>
>       ([fdo#111614])
>    -
>
>    igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>    -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
>       ([fdo#110723])
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
>       ([fdo#111615])
>       -
>
>    igt@kms_chamelium@dp-crc-multiple:
>    - shard-glk: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html>
>       ([fdo#109271] / [fdo#111827]) +8 similar issues
>    -
>
>    igt@kms_chamelium@vga-hpd-with-enabled-mode:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
>       ([fdo#109284] / [fdo#111827]) +4 similar issues
>    -
>
>    igt@kms_chamelium@vga-hpd-without-ddc:
>    - shard-snb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
>       ([fdo#109271] / [fdo#111827]) +19 similar issues
>    -
>
>    igt@kms_color_chamelium@pipe-a-ctm-limited-range:
>    - shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html>
>       ([fdo#109271] / [fdo#111827]) +28 similar issues
>    -
>
>    igt@kms_color_chamelium@pipe-a-degamma:
>    - shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html>
>       ([fdo#109271] / [fdo#111827]) +18 similar issues
>    -
>
>    igt@kms_color_chamelium@pipe-d-ctm-limited-range:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
>       ([fdo#109284] / [fdo#111827]) +5 similar issues
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
>       ([fdo#109278] / [fdo#109284] / [fdo#111827])
>       -
>
>    igt@kms_content_protection@atomic:
>    - shard-apl: NOTRUN -> TIMEOUT
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_content_protection@atomic.html>
>       ([i915#1319])
>    -
>
>    igt@kms_content_protection@uevent:
>    -
>
>       shard-kbl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html>
>       ([i915#2105])
>       -
>
>       shard-apl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html>
>       ([i915#2105])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html>
>       ([fdo#109300] / [fdo#111066])
>       -
>
>    igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
>    -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
>       ([fdo#109278] / [fdo#109279]) +1 similar issue
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
>       ([fdo#109279] / [i915#3359]) +4 similar issues
>       -
>
>    igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html>
>       ([i915#3359])
>    -
>
>    igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
>       ([fdo#111825]) +14 similar issues
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
>       ([fdo#109274] / [fdo#109278]) +1 similar issue
>       -
>
>    igt@kms_cursor_legacy@pipe-d-single-move:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html>
>       ([fdo#109278]) +7 similar issues
>    -
>
>    igt@kms_dp_dsc@basic-dsc-enable-dp:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
>       ([fdo#109349])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
>       ([fdo#109349])
>       -
>
>    igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
>       ([i915#3528])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
>       ([i915#3528])
>       -
>
>    igt@kms_fbcon_fbt@fbc-suspend:
>    - shard-kbl: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
>       -> INCOMPLETE
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
>       ([i915#155] / [i915#636])
>    -
>
>    igt@kms_flip@2x-flip-vs-panning-interruptible:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
>       ([fdo#109274]) +1 similar issue
>    -
>
>    igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
>    - shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html>
>       ([fdo#109271] / [i915#2672])
>    -
>
>    igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
>       ([fdo#109280]) +12 similar issues
>    -
>
>    igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
>    - shard-snb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html>
>       ([fdo#109271]) +349 similar issues
>    -
>
>    igt@kms_hdr@bpc-switch-suspend:
>    - shard-apl: NOTRUN -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html>
>       ([i915#180])
>    -
>
>    igt@kms_hdr@static-toggle:
>    -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html>
>       ([i915#1187])
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html>
>       ([i915#1187])
>       -
>
>    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
>    - shard-kbl: NOTRUN -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
>       ([i915#180]) +1 similar issue
>    -
>
>    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
>    -
>
>       shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
>       ([fdo#109271] / [i915#533]) +1 similar issue
>       -
>
>       shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
>       ([fdo#109271] / [i915#533]) +2 similar issues
>       -
>
>       shard-glk: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
>       ([fdo#109271] / [i915#533])
>       -
>
>    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
>    - shard-kbl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html>
>       ([fdo#108145] / [i915#265])
>    -
>
>    igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>    - shard-apl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
>       ([i915#265]) +1 similar issue
>    -
>
>    igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
>    - shard-apl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html>
>       ([fdo#108145] / [i915#265]) +3 similar issues
>    -
>
>    igt@kms_plane_lowres@pipe-a-tiling-x:
>    -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html>
>       ([i915#3536]) +1 similar issue
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html>
>       ([i915#3536])
>       -
>
>    igt@kms_plane_lowres@pipe-a-tiling-yf:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
>       ([fdo#112054])
>    -
>
>    igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
>    - shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html>
>       ([fdo#109271] / [i915#658]) +10 similar issues
>    -
>
>    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
>    - shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
>       ([fdo#109271] / [i915#658]) +4 similar issues
>    -
>
>    igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>    -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
>       ([i915#2920]) +1 similar issue
>       -
>
>       shard-glk: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
>       ([fdo#109271] / [i915#658]) +1 similar issue
>       -
>
>    igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
>       ([i915#658])
>    -
>
>    igt@kms_psr@psr2_sprite_render:
>    - shard-iclb: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html>
>       -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html>
>       ([fdo#109441])
>    -
>
>    igt@kms_setmode@basic:
>    - shard-snb: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html>
>       ([i915#31])
>    -
>
>    igt@kms_sysfs_edid_timing:
>    - shard-apl: NOTRUN -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html>
>       ([IGT#2])
>    -
>
>    igt@kms_vblank@pipe-a-ts-continuation-suspend:
>    - shard-kbl: PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
>       -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
>       ([i915#180] / [i915#295])
>    -
>
>    igt@kms_writeback@writeback-fb-id:
>    -
>
>       shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html>
>       ([fdo#109271] / [i915#2437])
>       -
>
>       shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html>
>       ([fdo#109271] / [i915#2437])
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html>
>       ([i915#2437])
>       -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html>
>       ([i915#2437])
>       -
>
>    igt@nouveau_crc@pipe-a-source-outp-complete:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-complete.html>
>       ([i915#2530])
>    -
>
>    igt@nouveau_crc@pipe-c-source-rg:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@nouveau_crc@pipe-c-source-rg.html>
>       ([i915#2530]) +1 similar issue
>    -
>
>    igt@prime_nv_api@i915_nv_double_export:
>    - shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@prime_nv_api@i915_nv_double_export.html>
>       ([fdo#109291]) +1 similar issue
>    -
>
>    igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
>    -
>
>       shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
>       ([fdo#109271]) +304 similar issues
>       -
>
>       shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
>       ([fdo#109291])
>       -
>
>    igt@sysfs_clients@fair-0:
>    - shard-tglb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html>
>       ([i915#2994]) +1 similar issue
>    -
>
>    igt@sysfs_clients@recycle-many:
>    -
>
>       shard-iclb: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html>
>       ([i915#2994]) +1 similar issue
>       -
>
>       shard-glk: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html>
>       ([fdo#109271] / [i915#2994]) +1 similar issue
>       -
>
>    igt@sysfs_clients@sema-10:
>    -
>
>       shard-kbl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@sysfs_clients@sema-10.html>
>       ([fdo#109271] / [i915#2994]) +2 similar issues
>       -
>
>       shard-apl: NOTRUN -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@sysfs_clients@sema-10.html>
>       ([fdo#109271] / [i915#2994]) +3 similar issues
>
> Possible fixes
>
>    -
>
>    igt@gem_eio@unwedge-stress:
>    - shard-iclb: TIMEOUT
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html>
>       ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html>
>    -
>
>    igt@gem_exec_fair@basic-flow@rcs0:
>    - shard-tglb: FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
>       ([i915#2842]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html>
>    -
>
>    igt@gem_exec_fair@basic-none@vcs0:
>    - shard-apl: FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
>       ([i915#2842]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
>    -
>
>    igt@gem_exec_gttfill@basic:
>    - shard-iclb: INCOMPLETE
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html>
>       ([i915#2405]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html>
>    -
>
>    igt@gem_mmap_gtt@big-copy-xy:
>    - shard-glk: FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html>
>       ([i915#307]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html>
>    -
>
>    igt@gen9_exec_parse@allowed-all:
>    - shard-glk: DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html>
>       ([i915#1436] / [i915#716]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html>
>    -
>
>    igt@i915_pm_dc@dc9-dpms:
>    - shard-apl: SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
>       ([fdo#109271]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html>
>    -
>
>    igt@kms_big_fb@linear-32bpp-rotate-0:
>    - shard-glk: DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html>
>       ([i915#118] / [i915#95]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html>
>       +1 similar issue
>    -
>
>    igt@kms_cursor_crc@pipe-c-cursor-suspend:
>    - shard-kbl: DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
>       ([i915#180]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
>       +2 similar issues
>    -
>
>    igt@kms_frontbuffer_tracking@fbc-suspend:
>    - shard-apl: DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html>
>       ([i915#180]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
>       +1 similar issue
>    -
>
>    igt@kms_psr@psr2_cursor_plane_onoff:
>    - shard-iclb: SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
>       ([fdo#109441]) -> PASS
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
>       +1 similar issue
>
> Warnings
>
>    -
>
>    igt@gem_exec_fair@basic-none-rrul@rcs0:
>    - shard-iclb: FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>       ([i915#2842]) -> FAIL
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>       ([i915#2852])
>    -
>
>    igt@kms_dp_dsc@basic-dsc-enable-edp:
>    - shard-iclb: SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
>       ([fdo#109349]) -> DMESG-WARN
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
>       ([i915#1226])
>    -
>
>    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
>    - shard-iclb: SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
>       ([i915#2920]) -> SKIP
>       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
>       ([i915#658])
>    -
>
>    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
>    - shard-iclb: [SKIP][144] ([i915#
>
>

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-28 17:08   ` Mark Yacoub
@ 2021-06-29 16:07     ` Rodrigo Siqueira
  2021-06-29 16:55       ` Mark Yacoub
  0 siblings, 1 reply; 15+ messages in thread
From: Rodrigo Siqueira @ 2021-06-29 16:07 UTC (permalink / raw)
  To: Petri Latvala; +Cc: Development mailing list for IGT GPU Tools

On 06/28, Mark Yacoub wrote:
> sounds like a false positive.it's an AMD only code.

Hi Petri,

I agree with Mark, I think this is a false positive. In this case, how
can I proceed to apply this patch? When we have a false positive, can we
just go ahead and apply the patch in the upstream? I'm just trying to
understand the correct procedure.

Thanks
Siqueira

 
> On Mon, Jun 28, 2021 at 5:26 AM Patchwork <patchwork@emeril.freedesktop.org>
> wrote:
> 
> > *Patch Details*
> > *Series:* lib/igt_fb: Support Tile Size for AMD non linear modifiers.
> > (rev4)
> > *URL:* https://patchwork.freedesktop.org/series/89017/
> > *State:* failure
> > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html CI
> > Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full Summary
> >
> > *FAILURE*
> >
> > Serious unknown changes coming with IGTPW_5952_full absolutely need to be
> > verified manually.
> >
> > If you think the reported changes have nothing to do with the changes
> > introduced in IGTPW_5952_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_5952/index.html
> > Possible new issues
> >
> > Here are the unknown changes that may have been introduced in
> > IGTPW_5952_full:
> > IGT changes Possible regressions
> >
> >    -
> >
> >    igt@gem_shrink@reclaim:
> >    - shard-tglb: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html>
> >       -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html>
> >    -
> >
> >    igt@i915_pm_dc@dc5-psr:
> >    - shard-iclb: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> >       -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> >    -
> >
> >    igt@i915_pm_rps@waitboost:
> >    - shard-glk: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html>
> >
> > Warnings
> >
> >    - igt@runner@aborted:
> >       - shard-iclb: (FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html>,
> >       FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html>)
> >       ([i915#1814] / [i915#3002]) -> (FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html>,
> >       FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html>,
> >       FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html>,
> >       FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html>)
> >       ([i915#3002])
> >
> > Known issues
> >
> > Here are the changes found in IGTPW_5952_full that come from known issues:
> > IGT changes Issues hit
> >
> >    -
> >
> >    igt@gem_create@create-clear:
> >    - shard-glk: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html>
> >       ([i915#1888] / [i915#3160])
> >    -
> >
> >    igt@gem_create@create-massive:
> >    - shard-kbl: NOTRUN -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_create@create-massive.html>
> >       ([i915#3002])
> >    -
> >
> >    igt@gem_ctx_persistence@legacy-engines-mixed:
> >    - shard-snb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html>
> >       ([fdo#109271] / [i915#1099]) +7 similar issues
> >    -
> >
> >    igt@gem_ctx_persistence@many-contexts:
> >    - shard-tglb: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html>
> >       ([i915#2410])
> >    -
> >
> >    igt@gem_exec_fair@basic-deadline:
> >    - shard-apl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_exec_fair@basic-deadline.html>
> >       ([i915#2846])
> >    -
> >
> >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> >    - shard-glk: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> >       ([i915#2842]) +1 similar issue
> >    -
> >
> >    igt@gem_exec_fair@basic-none-vip@rcs0:
> >    - shard-kbl: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> >       ([i915#2842])
> >    -
> >
> >    igt@gem_exec_fair@basic-none@vecs0:
> >    - shard-glk: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html>
> >       ([i915#2842] / [i915#3468])
> >    -
> >
> >    igt@gem_exec_fair@basic-pace-share@rcs0:
> >    - shard-tglb: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> >       -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> >       ([i915#2842])
> >    -
> >
> >    igt@gem_exec_fair@basic-pace@bcs0:
> >    - shard-tglb: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html>
> >       ([i915#2842]) +3 similar issues
> >    -
> >
> >    igt@gem_exec_fair@basic-pace@rcs0:
> >    - shard-kbl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html>
> >       ([i915#2842])
> >    -
> >
> >    igt@gem_exec_fair@basic-pace@vcs1:
> >    - shard-iclb: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
> >       ([i915#2842]) +4 similar issues
> >    -
> >
> >    igt@gem_exec_fair@basic-pace@vecs0:
> >    - shard-glk: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html>
> >       ([i915#2842]) +2 similar issues
> >    -
> >
> >    igt@gem_exec_params@secure-non-master:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html>
> >       ([fdo#112283])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html>
> >       ([fdo#112283])
> >       -
> >
> >    igt@gem_huc_copy@huc-copy:
> >    - shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html>
> >       ([fdo#109271] / [i915#2190])
> >    -
> >
> >    igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
> >    - shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html>
> >       ([fdo#109271]) +159 similar issues
> >    -
> >
> >    igt@gem_render_copy@y-tiled-to-vebox-linear:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> >       ([i915#768]) +1 similar issue
> >    -
> >
> >    igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> >    - shard-glk: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html>
> >       ([fdo#109271]) +63 similar issues
> >    -
> >
> >    igt@gem_userptr_blits@dmabuf-sync:
> >    - shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
> >       ([fdo#109271] / [i915#3323])
> >    -
> >
> >    igt@gem_userptr_blits@dmabuf-unsync:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html>
> >       ([i915#3297])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html>
> >       ([i915#3297])
> >       -
> >
> >    igt@gem_userptr_blits@input-checking:
> >    - shard-apl: NOTRUN -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@gem_userptr_blits@input-checking.html>
> >       ([i915#3002]) +1 similar issue
> >    -
> >
> >    igt@gen3_render_tiledy_blits:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html>
> >       ([fdo#109289]) +2 similar issues
> >    -
> >
> >    igt@gen7_exec_parse@chained-batch:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gen7_exec_parse@chained-batch.html>
> >       ([fdo#109289]) +1 similar issue
> >    -
> >
> >    igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> >    -
> >
> >       shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> >       ([fdo#109271] / [i915#1937])
> >       -
> >
> >       shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> >       ([fdo#109271] / [i915#1937])
> >       -
> >
> >    igt@i915_suspend@forcewake:
> >    - shard-kbl: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html>
> >       -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html>
> >       ([i915#180]) +1 similar issue
> >    -
> >
> >    igt@kms_big_fb@linear-64bpp-rotate-270:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> >       ([fdo#111614])
> >    -
> >
> >    igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
> >    -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> >       ([fdo#110723])
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> >       ([fdo#111615])
> >       -
> >
> >    igt@kms_chamelium@dp-crc-multiple:
> >    - shard-glk: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html>
> >       ([fdo#109271] / [fdo#111827]) +8 similar issues
> >    -
> >
> >    igt@kms_chamelium@vga-hpd-with-enabled-mode:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> >       ([fdo#109284] / [fdo#111827]) +4 similar issues
> >    -
> >
> >    igt@kms_chamelium@vga-hpd-without-ddc:
> >    - shard-snb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> >       ([fdo#109271] / [fdo#111827]) +19 similar issues
> >    -
> >
> >    igt@kms_color_chamelium@pipe-a-ctm-limited-range:
> >    - shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html>
> >       ([fdo#109271] / [fdo#111827]) +28 similar issues
> >    -
> >
> >    igt@kms_color_chamelium@pipe-a-degamma:
> >    - shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html>
> >       ([fdo#109271] / [fdo#111827]) +18 similar issues
> >    -
> >
> >    igt@kms_color_chamelium@pipe-d-ctm-limited-range:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> >       ([fdo#109284] / [fdo#111827]) +5 similar issues
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> >       ([fdo#109278] / [fdo#109284] / [fdo#111827])
> >       -
> >
> >    igt@kms_content_protection@atomic:
> >    - shard-apl: NOTRUN -> TIMEOUT
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_content_protection@atomic.html>
> >       ([i915#1319])
> >    -
> >
> >    igt@kms_content_protection@uevent:
> >    -
> >
> >       shard-kbl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html>
> >       ([i915#2105])
> >       -
> >
> >       shard-apl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html>
> >       ([i915#2105])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html>
> >       ([fdo#109300] / [fdo#111066])
> >       -
> >
> >    igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
> >    -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> >       ([fdo#109278] / [fdo#109279]) +1 similar issue
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> >       ([fdo#109279] / [i915#3359]) +4 similar issues
> >       -
> >
> >    igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html>
> >       ([i915#3359])
> >    -
> >
> >    igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> >       ([fdo#111825]) +14 similar issues
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> >       ([fdo#109274] / [fdo#109278]) +1 similar issue
> >       -
> >
> >    igt@kms_cursor_legacy@pipe-d-single-move:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html>
> >       ([fdo#109278]) +7 similar issues
> >    -
> >
> >    igt@kms_dp_dsc@basic-dsc-enable-dp:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> >       ([fdo#109349])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> >       ([fdo#109349])
> >       -
> >
> >    igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> >       ([i915#3528])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> >       ([i915#3528])
> >       -
> >
> >    igt@kms_fbcon_fbt@fbc-suspend:
> >    - shard-kbl: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> >       -> INCOMPLETE
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> >       ([i915#155] / [i915#636])
> >    -
> >
> >    igt@kms_flip@2x-flip-vs-panning-interruptible:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
> >       ([fdo#109274]) +1 similar issue
> >    -
> >
> >    igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> >    - shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html>
> >       ([fdo#109271] / [i915#2672])
> >    -
> >
> >    igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> >       ([fdo#109280]) +12 similar issues
> >    -
> >
> >    igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
> >    - shard-snb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html>
> >       ([fdo#109271]) +349 similar issues
> >    -
> >
> >    igt@kms_hdr@bpc-switch-suspend:
> >    - shard-apl: NOTRUN -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html>
> >       ([i915#180])
> >    -
> >
> >    igt@kms_hdr@static-toggle:
> >    -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html>
> >       ([i915#1187])
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html>
> >       ([i915#1187])
> >       -
> >
> >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> >    - shard-kbl: NOTRUN -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> >       ([i915#180]) +1 similar issue
> >    -
> >
> >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
> >    -
> >
> >       shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> >       ([fdo#109271] / [i915#533]) +1 similar issue
> >       -
> >
> >       shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> >       ([fdo#109271] / [i915#533]) +2 similar issues
> >       -
> >
> >       shard-glk: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> >       ([fdo#109271] / [i915#533])
> >       -
> >
> >    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
> >    - shard-kbl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html>
> >       ([fdo#108145] / [i915#265])
> >    -
> >
> >    igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> >    - shard-apl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
> >       ([i915#265]) +1 similar issue
> >    -
> >
> >    igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> >    - shard-apl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html>
> >       ([fdo#108145] / [i915#265]) +3 similar issues
> >    -
> >
> >    igt@kms_plane_lowres@pipe-a-tiling-x:
> >    -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> >       ([i915#3536]) +1 similar issue
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> >       ([i915#3536])
> >       -
> >
> >    igt@kms_plane_lowres@pipe-a-tiling-yf:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
> >       ([fdo#112054])
> >    -
> >
> >    igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> >    - shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html>
> >       ([fdo#109271] / [i915#658]) +10 similar issues
> >    -
> >
> >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> >    - shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> >       ([fdo#109271] / [i915#658]) +4 similar issues
> >    -
> >
> >    igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> >    -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> >       ([i915#2920]) +1 similar issue
> >       -
> >
> >       shard-glk: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> >       ([fdo#109271] / [i915#658]) +1 similar issue
> >       -
> >
> >    igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
> >       ([i915#658])
> >    -
> >
> >    igt@kms_psr@psr2_sprite_render:
> >    - shard-iclb: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html>
> >       -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html>
> >       ([fdo#109441])
> >    -
> >
> >    igt@kms_setmode@basic:
> >    - shard-snb: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html>
> >       ([i915#31])
> >    -
> >
> >    igt@kms_sysfs_edid_timing:
> >    - shard-apl: NOTRUN -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html>
> >       ([IGT#2])
> >    -
> >
> >    igt@kms_vblank@pipe-a-ts-continuation-suspend:
> >    - shard-kbl: PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> >       -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> >       ([i915#180] / [i915#295])
> >    -
> >
> >    igt@kms_writeback@writeback-fb-id:
> >    -
> >
> >       shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html>
> >       ([fdo#109271] / [i915#2437])
> >       -
> >
> >       shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html>
> >       ([fdo#109271] / [i915#2437])
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html>
> >       ([i915#2437])
> >       -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html>
> >       ([i915#2437])
> >       -
> >
> >    igt@nouveau_crc@pipe-a-source-outp-complete:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-complete.html>
> >       ([i915#2530])
> >    -
> >
> >    igt@nouveau_crc@pipe-c-source-rg:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@nouveau_crc@pipe-c-source-rg.html>
> >       ([i915#2530]) +1 similar issue
> >    -
> >
> >    igt@prime_nv_api@i915_nv_double_export:
> >    - shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@prime_nv_api@i915_nv_double_export.html>
> >       ([fdo#109291]) +1 similar issue
> >    -
> >
> >    igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
> >    -
> >
> >       shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> >       ([fdo#109271]) +304 similar issues
> >       -
> >
> >       shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> >       ([fdo#109291])
> >       -
> >
> >    igt@sysfs_clients@fair-0:
> >    - shard-tglb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html>
> >       ([i915#2994]) +1 similar issue
> >    -
> >
> >    igt@sysfs_clients@recycle-many:
> >    -
> >
> >       shard-iclb: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html>
> >       ([i915#2994]) +1 similar issue
> >       -
> >
> >       shard-glk: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html>
> >       ([fdo#109271] / [i915#2994]) +1 similar issue
> >       -
> >
> >    igt@sysfs_clients@sema-10:
> >    -
> >
> >       shard-kbl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@sysfs_clients@sema-10.html>
> >       ([fdo#109271] / [i915#2994]) +2 similar issues
> >       -
> >
> >       shard-apl: NOTRUN -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@sysfs_clients@sema-10.html>
> >       ([fdo#109271] / [i915#2994]) +3 similar issues
> >
> > Possible fixes
> >
> >    -
> >
> >    igt@gem_eio@unwedge-stress:
> >    - shard-iclb: TIMEOUT
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html>
> >       ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html>
> >    -
> >
> >    igt@gem_exec_fair@basic-flow@rcs0:
> >    - shard-tglb: FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
> >       ([i915#2842]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html>
> >    -
> >
> >    igt@gem_exec_fair@basic-none@vcs0:
> >    - shard-apl: FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
> >       ([i915#2842]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
> >    -
> >
> >    igt@gem_exec_gttfill@basic:
> >    - shard-iclb: INCOMPLETE
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html>
> >       ([i915#2405]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html>
> >    -
> >
> >    igt@gem_mmap_gtt@big-copy-xy:
> >    - shard-glk: FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html>
> >       ([i915#307]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html>
> >    -
> >
> >    igt@gen9_exec_parse@allowed-all:
> >    - shard-glk: DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html>
> >       ([i915#1436] / [i915#716]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html>
> >    -
> >
> >    igt@i915_pm_dc@dc9-dpms:
> >    - shard-apl: SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
> >       ([fdo#109271]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html>
> >    -
> >
> >    igt@kms_big_fb@linear-32bpp-rotate-0:
> >    - shard-glk: DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> >       ([i915#118] / [i915#95]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> >       +1 similar issue
> >    -
> >
> >    igt@kms_cursor_crc@pipe-c-cursor-suspend:
> >    - shard-kbl: DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> >       ([i915#180]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> >       +2 similar issues
> >    -
> >
> >    igt@kms_frontbuffer_tracking@fbc-suspend:
> >    - shard-apl: DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> >       ([i915#180]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> >       +1 similar issue
> >    -
> >
> >    igt@kms_psr@psr2_cursor_plane_onoff:
> >    - shard-iclb: SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> >       ([fdo#109441]) -> PASS
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> >       +1 similar issue
> >
> > Warnings
> >
> >    -
> >
> >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> >    - shard-iclb: FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> >       ([i915#2842]) -> FAIL
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> >       ([i915#2852])
> >    -
> >
> >    igt@kms_dp_dsc@basic-dsc-enable-edp:
> >    - shard-iclb: SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> >       ([fdo#109349]) -> DMESG-WARN
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> >       ([i915#1226])
> >    -
> >
> >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
> >    - shard-iclb: SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> >       ([i915#2920]) -> SKIP
> >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> >       ([i915#658])
> >    -
> >
> >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> >    - shard-iclb: [SKIP][144] ([i915#
> >
> >

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


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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-29 16:07     ` Rodrigo Siqueira
@ 2021-06-29 16:55       ` Mark Yacoub
  2021-07-01 21:13         ` Arkadiusz Hiler
  0 siblings, 1 reply; 15+ messages in thread
From: Mark Yacoub @ 2021-06-29 16:55 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: Development mailing list for IGT GPU Tools, Petri Latvala

+Arkadiusz Hiler

On Tue, Jun 29, 2021 at 12:07 PM Rodrigo Siqueira
<Rodrigo.Siqueira@amd.com> wrote:
>
> On 06/28, Mark Yacoub wrote:
> > sounds like a false positive.it's an AMD only code.
>
> Hi Petri,
>
> I agree with Mark, I think this is a false positive. In this case, how
> can I proceed to apply this patch? When we have a false positive, can we
> just go ahead and apply the patch in the upstream? I'm just trying to
> understand the correct procedure.
>
> Thanks
> Siqueira
>
>
> > On Mon, Jun 28, 2021 at 5:26 AM Patchwork <patchwork@emeril.freedesktop.org>
> > wrote:
> >
> > > *Patch Details*
> > > *Series:* lib/igt_fb: Support Tile Size for AMD non linear modifiers.
> > > (rev4)
> > > *URL:* https://patchwork.freedesktop.org/series/89017/
> > > *State:* failure
> > > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html CI
> > > Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full Summary
> > >
> > > *FAILURE*
> > >
> > > Serious unknown changes coming with IGTPW_5952_full absolutely need to be
> > > verified manually.
> > >
> > > If you think the reported changes have nothing to do with the changes
> > > introduced in IGTPW_5952_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_5952/index.html
> > > Possible new issues
> > >
> > > Here are the unknown changes that may have been introduced in
> > > IGTPW_5952_full:
> > > IGT changes Possible regressions
> > >
> > >    -
> > >
> > >    igt@gem_shrink@reclaim:
> > >    - shard-tglb: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html>
> > >       -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html>
> > >    -
> > >
> > >    igt@i915_pm_dc@dc5-psr:
> > >    - shard-iclb: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > >       -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > >    -
> > >
> > >    igt@i915_pm_rps@waitboost:
> > >    - shard-glk: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html>
> > >
> > > Warnings
> > >
> > >    - igt@runner@aborted:
> > >       - shard-iclb: (FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html>,
> > >       FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html>)
> > >       ([i915#1814] / [i915#3002]) -> (FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html>,
> > >       FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html>,
> > >       FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html>,
> > >       FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html>)
> > >       ([i915#3002])
> > >
> > > Known issues
> > >
> > > Here are the changes found in IGTPW_5952_full that come from known issues:
> > > IGT changes Issues hit
> > >
> > >    -
> > >
> > >    igt@gem_create@create-clear:
> > >    - shard-glk: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html>
> > >       ([i915#1888] / [i915#3160])
> > >    -
> > >
> > >    igt@gem_create@create-massive:
> > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_create@create-massive.html>
> > >       ([i915#3002])
> > >    -
> > >
> > >    igt@gem_ctx_persistence@legacy-engines-mixed:
> > >    - shard-snb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html>
> > >       ([fdo#109271] / [i915#1099]) +7 similar issues
> > >    -
> > >
> > >    igt@gem_ctx_persistence@many-contexts:
> > >    - shard-tglb: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html>
> > >       ([i915#2410])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-deadline:
> > >    - shard-apl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_exec_fair@basic-deadline.html>
> > >       ([i915#2846])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > >    - shard-glk: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > >       ([i915#2842]) +1 similar issue
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-none-vip@rcs0:
> > >    - shard-kbl: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > >       ([i915#2842])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-none@vecs0:
> > >    - shard-glk: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html>
> > >       ([i915#2842] / [i915#3468])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-pace-share@rcs0:
> > >    - shard-tglb: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > >       -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > >       ([i915#2842])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-pace@bcs0:
> > >    - shard-tglb: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html>
> > >       ([i915#2842]) +3 similar issues
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-pace@rcs0:
> > >    - shard-kbl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html>
> > >       ([i915#2842])
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-pace@vcs1:
> > >    - shard-iclb: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
> > >       ([i915#2842]) +4 similar issues
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-pace@vecs0:
> > >    - shard-glk: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html>
> > >       ([i915#2842]) +2 similar issues
> > >    -
> > >
> > >    igt@gem_exec_params@secure-non-master:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html>
> > >       ([fdo#112283])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html>
> > >       ([fdo#112283])
> > >       -
> > >
> > >    igt@gem_huc_copy@huc-copy:
> > >    - shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html>
> > >       ([fdo#109271] / [i915#2190])
> > >    -
> > >
> > >    igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
> > >    - shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html>
> > >       ([fdo#109271]) +159 similar issues
> > >    -
> > >
> > >    igt@gem_render_copy@y-tiled-to-vebox-linear:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> > >       ([i915#768]) +1 similar issue
> > >    -
> > >
> > >    igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> > >    - shard-glk: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html>
> > >       ([fdo#109271]) +63 similar issues
> > >    -
> > >
> > >    igt@gem_userptr_blits@dmabuf-sync:
> > >    - shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
> > >       ([fdo#109271] / [i915#3323])
> > >    -
> > >
> > >    igt@gem_userptr_blits@dmabuf-unsync:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html>
> > >       ([i915#3297])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html>
> > >       ([i915#3297])
> > >       -
> > >
> > >    igt@gem_userptr_blits@input-checking:
> > >    - shard-apl: NOTRUN -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@gem_userptr_blits@input-checking.html>
> > >       ([i915#3002]) +1 similar issue
> > >    -
> > >
> > >    igt@gen3_render_tiledy_blits:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html>
> > >       ([fdo#109289]) +2 similar issues
> > >    -
> > >
> > >    igt@gen7_exec_parse@chained-batch:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gen7_exec_parse@chained-batch.html>
> > >       ([fdo#109289]) +1 similar issue
> > >    -
> > >
> > >    igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> > >    -
> > >
> > >       shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > >       ([fdo#109271] / [i915#1937])
> > >       -
> > >
> > >       shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > >       ([fdo#109271] / [i915#1937])
> > >       -
> > >
> > >    igt@i915_suspend@forcewake:
> > >    - shard-kbl: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html>
> > >       -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html>
> > >       ([i915#180]) +1 similar issue
> > >    -
> > >
> > >    igt@kms_big_fb@linear-64bpp-rotate-270:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> > >       ([fdo#111614])
> > >    -
> > >
> > >    igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
> > >    -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > >       ([fdo#110723])
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > >       ([fdo#111615])
> > >       -
> > >
> > >    igt@kms_chamelium@dp-crc-multiple:
> > >    - shard-glk: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html>
> > >       ([fdo#109271] / [fdo#111827]) +8 similar issues
> > >    -
> > >
> > >    igt@kms_chamelium@vga-hpd-with-enabled-mode:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> > >       ([fdo#109284] / [fdo#111827]) +4 similar issues
> > >    -
> > >
> > >    igt@kms_chamelium@vga-hpd-without-ddc:
> > >    - shard-snb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> > >       ([fdo#109271] / [fdo#111827]) +19 similar issues
> > >    -
> > >
> > >    igt@kms_color_chamelium@pipe-a-ctm-limited-range:
> > >    - shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html>
> > >       ([fdo#109271] / [fdo#111827]) +28 similar issues
> > >    -
> > >
> > >    igt@kms_color_chamelium@pipe-a-degamma:
> > >    - shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html>
> > >       ([fdo#109271] / [fdo#111827]) +18 similar issues
> > >    -
> > >
> > >    igt@kms_color_chamelium@pipe-d-ctm-limited-range:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > >       ([fdo#109284] / [fdo#111827]) +5 similar issues
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > >       ([fdo#109278] / [fdo#109284] / [fdo#111827])
> > >       -
> > >
> > >    igt@kms_content_protection@atomic:
> > >    - shard-apl: NOTRUN -> TIMEOUT
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_content_protection@atomic.html>
> > >       ([i915#1319])
> > >    -
> > >
> > >    igt@kms_content_protection@uevent:
> > >    -
> > >
> > >       shard-kbl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html>
> > >       ([i915#2105])
> > >       -
> > >
> > >       shard-apl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html>
> > >       ([i915#2105])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html>
> > >       ([fdo#109300] / [fdo#111066])
> > >       -
> > >
> > >    igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
> > >    -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > >       ([fdo#109278] / [fdo#109279]) +1 similar issue
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > >       ([fdo#109279] / [i915#3359]) +4 similar issues
> > >       -
> > >
> > >    igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html>
> > >       ([i915#3359])
> > >    -
> > >
> > >    igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > >       ([fdo#111825]) +14 similar issues
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > >       ([fdo#109274] / [fdo#109278]) +1 similar issue
> > >       -
> > >
> > >    igt@kms_cursor_legacy@pipe-d-single-move:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html>
> > >       ([fdo#109278]) +7 similar issues
> > >    -
> > >
> > >    igt@kms_dp_dsc@basic-dsc-enable-dp:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > >       ([fdo#109349])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > >       ([fdo#109349])
> > >       -
> > >
> > >    igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > >       ([i915#3528])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > >       ([i915#3528])
> > >       -
> > >
> > >    igt@kms_fbcon_fbt@fbc-suspend:
> > >    - shard-kbl: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > >       -> INCOMPLETE
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > >       ([i915#155] / [i915#636])
> > >    -
> > >
> > >    igt@kms_flip@2x-flip-vs-panning-interruptible:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
> > >       ([fdo#109274]) +1 similar issue
> > >    -
> > >
> > >    igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> > >    - shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html>
> > >       ([fdo#109271] / [i915#2672])
> > >    -
> > >
> > >    igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> > >       ([fdo#109280]) +12 similar issues
> > >    -
> > >
> > >    igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
> > >    - shard-snb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html>
> > >       ([fdo#109271]) +349 similar issues
> > >    -
> > >
> > >    igt@kms_hdr@bpc-switch-suspend:
> > >    - shard-apl: NOTRUN -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html>
> > >       ([i915#180])
> > >    -
> > >
> > >    igt@kms_hdr@static-toggle:
> > >    -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html>
> > >       ([i915#1187])
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html>
> > >       ([i915#1187])
> > >       -
> > >
> > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> > >       ([i915#180]) +1 similar issue
> > >    -
> > >
> > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
> > >    -
> > >
> > >       shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > >       ([fdo#109271] / [i915#533]) +1 similar issue
> > >       -
> > >
> > >       shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > >       ([fdo#109271] / [i915#533]) +2 similar issues
> > >       -
> > >
> > >       shard-glk: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > >       ([fdo#109271] / [i915#533])
> > >       -
> > >
> > >    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
> > >    - shard-kbl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html>
> > >       ([fdo#108145] / [i915#265])
> > >    -
> > >
> > >    igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> > >    - shard-apl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
> > >       ([i915#265]) +1 similar issue
> > >    -
> > >
> > >    igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> > >    - shard-apl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html>
> > >       ([fdo#108145] / [i915#265]) +3 similar issues
> > >    -
> > >
> > >    igt@kms_plane_lowres@pipe-a-tiling-x:
> > >    -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > >       ([i915#3536]) +1 similar issue
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > >       ([i915#3536])
> > >       -
> > >
> > >    igt@kms_plane_lowres@pipe-a-tiling-yf:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
> > >       ([fdo#112054])
> > >    -
> > >
> > >    igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> > >    - shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html>
> > >       ([fdo#109271] / [i915#658]) +10 similar issues
> > >    -
> > >
> > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > >    - shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> > >       ([fdo#109271] / [i915#658]) +4 similar issues
> > >    -
> > >
> > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> > >    -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > >       ([i915#2920]) +1 similar issue
> > >       -
> > >
> > >       shard-glk: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > >       ([fdo#109271] / [i915#658]) +1 similar issue
> > >       -
> > >
> > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
> > >       ([i915#658])
> > >    -
> > >
> > >    igt@kms_psr@psr2_sprite_render:
> > >    - shard-iclb: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html>
> > >       -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html>
> > >       ([fdo#109441])
> > >    -
> > >
> > >    igt@kms_setmode@basic:
> > >    - shard-snb: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html>
> > >       ([i915#31])
> > >    -
> > >
> > >    igt@kms_sysfs_edid_timing:
> > >    - shard-apl: NOTRUN -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html>
> > >       ([IGT#2])
> > >    -
> > >
> > >    igt@kms_vblank@pipe-a-ts-continuation-suspend:
> > >    - shard-kbl: PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > >       -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > >       ([i915#180] / [i915#295])
> > >    -
> > >
> > >    igt@kms_writeback@writeback-fb-id:
> > >    -
> > >
> > >       shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html>
> > >       ([fdo#109271] / [i915#2437])
> > >       -
> > >
> > >       shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html>
> > >       ([fdo#109271] / [i915#2437])
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html>
> > >       ([i915#2437])
> > >       -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html>
> > >       ([i915#2437])
> > >       -
> > >
> > >    igt@nouveau_crc@pipe-a-source-outp-complete:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-complete.html>
> > >       ([i915#2530])
> > >    -
> > >
> > >    igt@nouveau_crc@pipe-c-source-rg:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@nouveau_crc@pipe-c-source-rg.html>
> > >       ([i915#2530]) +1 similar issue
> > >    -
> > >
> > >    igt@prime_nv_api@i915_nv_double_export:
> > >    - shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@prime_nv_api@i915_nv_double_export.html>
> > >       ([fdo#109291]) +1 similar issue
> > >    -
> > >
> > >    igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
> > >    -
> > >
> > >       shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > >       ([fdo#109271]) +304 similar issues
> > >       -
> > >
> > >       shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > >       ([fdo#109291])
> > >       -
> > >
> > >    igt@sysfs_clients@fair-0:
> > >    - shard-tglb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html>
> > >       ([i915#2994]) +1 similar issue
> > >    -
> > >
> > >    igt@sysfs_clients@recycle-many:
> > >    -
> > >
> > >       shard-iclb: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html>
> > >       ([i915#2994]) +1 similar issue
> > >       -
> > >
> > >       shard-glk: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html>
> > >       ([fdo#109271] / [i915#2994]) +1 similar issue
> > >       -
> > >
> > >    igt@sysfs_clients@sema-10:
> > >    -
> > >
> > >       shard-kbl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@sysfs_clients@sema-10.html>
> > >       ([fdo#109271] / [i915#2994]) +2 similar issues
> > >       -
> > >
> > >       shard-apl: NOTRUN -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@sysfs_clients@sema-10.html>
> > >       ([fdo#109271] / [i915#2994]) +3 similar issues
> > >
> > > Possible fixes
> > >
> > >    -
> > >
> > >    igt@gem_eio@unwedge-stress:
> > >    - shard-iclb: TIMEOUT
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html>
> > >       ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html>
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-flow@rcs0:
> > >    - shard-tglb: FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
> > >       ([i915#2842]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html>
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-none@vcs0:
> > >    - shard-apl: FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
> > >       ([i915#2842]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
> > >    -
> > >
> > >    igt@gem_exec_gttfill@basic:
> > >    - shard-iclb: INCOMPLETE
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html>
> > >       ([i915#2405]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html>
> > >    -
> > >
> > >    igt@gem_mmap_gtt@big-copy-xy:
> > >    - shard-glk: FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html>
> > >       ([i915#307]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html>
> > >    -
> > >
> > >    igt@gen9_exec_parse@allowed-all:
> > >    - shard-glk: DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html>
> > >       ([i915#1436] / [i915#716]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html>
> > >    -
> > >
> > >    igt@i915_pm_dc@dc9-dpms:
> > >    - shard-apl: SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
> > >       ([fdo#109271]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html>
> > >    -
> > >
> > >    igt@kms_big_fb@linear-32bpp-rotate-0:
> > >    - shard-glk: DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > >       ([i915#118] / [i915#95]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > >       +1 similar issue
> > >    -
> > >
> > >    igt@kms_cursor_crc@pipe-c-cursor-suspend:
> > >    - shard-kbl: DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > >       ([i915#180]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > >       +2 similar issues
> > >    -
> > >
> > >    igt@kms_frontbuffer_tracking@fbc-suspend:
> > >    - shard-apl: DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > >       ([i915#180]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > >       +1 similar issue
> > >    -
> > >
> > >    igt@kms_psr@psr2_cursor_plane_onoff:
> > >    - shard-iclb: SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > >       ([fdo#109441]) -> PASS
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > >       +1 similar issue
> > >
> > > Warnings
> > >
> > >    -
> > >
> > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > >    - shard-iclb: FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > >       ([i915#2842]) -> FAIL
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > >       ([i915#2852])
> > >    -
> > >
> > >    igt@kms_dp_dsc@basic-dsc-enable-edp:
> > >    - shard-iclb: SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > >       ([fdo#109349]) -> DMESG-WARN
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > >       ([i915#1226])
> > >    -
> > >
> > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
> > >    - shard-iclb: SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > >       ([i915#2920]) -> SKIP
> > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > >       ([i915#658])
> > >    -
> > >
> > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > >    - shard-iclb: [SKIP][144] ([i915#
> > >
> > >
>
> > _______________________________________________
> > igt-dev mailing list
> > igt-dev@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/igt-dev
>
>
> --
> Rodrigo Siqueira
> https://siqueira.tech
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-29 16:55       ` Mark Yacoub
@ 2021-07-01 21:13         ` Arkadiusz Hiler
  2021-07-02  0:55           ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 15+ messages in thread
From: Arkadiusz Hiler @ 2021-07-01 21:13 UTC (permalink / raw)
  To: Mark Yacoub
  Cc: Development mailing list for IGT GPU Tools, Petri Latvala, Lakshmi

On Tue, Jun 29, 2021 at 12:55:59PM -0400, Mark Yacoub wrote:
> +Arkadiusz Hiler
> 
> On Tue, Jun 29, 2021 at 12:07 PM Rodrigo Siqueira
> <Rodrigo.Siqueira@amd.com> wrote:
> >
> > On 06/28, Mark Yacoub wrote:
> > > sounds like a false positive.it's an AMD only code.
> >
> > Hi Petri,
> >
> > I agree with Mark, I think this is a false positive. In this case, how
> > can I proceed to apply this patch? When we have a false positive, can we
> > just go ahead and apply the patch in the upstream? I'm just trying to
> > understand the correct procedure.
> >
> > Thanks
> > Siqueira

Indeed looks unrelated to your changes.

CCed Lakshmi so he can file bugs for those. We can merge the change
after the bugs are filed and we get a clean report here.

> > > On Mon, Jun 28, 2021 at 5:26 AM Patchwork <patchwork@emeril.freedesktop.org>
> > > wrote:
> > >
> > > > *Patch Details*
> > > > *Series:* lib/igt_fb: Support Tile Size for AMD non linear modifiers.
> > > > (rev4)
> > > > *URL:* https://patchwork.freedesktop.org/series/89017/
> > > > *State:* failure
> > > > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html CI
> > > > Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full Summary
> > > >
> > > > *FAILURE*
> > > >
> > > > Serious unknown changes coming with IGTPW_5952_full absolutely need to be
> > > > verified manually.
> > > >
> > > > If you think the reported changes have nothing to do with the changes
> > > > introduced in IGTPW_5952_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_5952/index.html
> > > > Possible new issues
> > > >
> > > > Here are the unknown changes that may have been introduced in
> > > > IGTPW_5952_full:
> > > > IGT changes Possible regressions
> > > >
> > > >    -
> > > >
> > > >    igt@gem_shrink@reclaim:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_dc@dc5-psr:
> > > >    - shard-iclb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_rps@waitboost:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html>
> > > >
> > > > Warnings
> > > >
> > > >    - igt@runner@aborted:
> > > >       - shard-iclb: (FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html>)
> > > >       ([i915#1814] / [i915#3002]) -> (FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html>)
> > > >       ([i915#3002])
> > > >
> > > > Known issues
> > > >
> > > > Here are the changes found in IGTPW_5952_full that come from known issues:
> > > > IGT changes Issues hit
> > > >
> > > >    -
> > > >
> > > >    igt@gem_create@create-clear:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html>
> > > >       ([i915#1888] / [i915#3160])
> > > >    -
> > > >
> > > >    igt@gem_create@create-massive:
> > > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_create@create-massive.html>
> > > >       ([i915#3002])
> > > >    -
> > > >
> > > >    igt@gem_ctx_persistence@legacy-engines-mixed:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html>
> > > >       ([fdo#109271] / [i915#1099]) +7 similar issues
> > > >    -
> > > >
> > > >    igt@gem_ctx_persistence@many-contexts:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html>
> > > >       ([i915#2410])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-deadline:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_exec_fair@basic-deadline.html>
> > > >       ([i915#2846])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2842]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-vip@rcs0:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none@vecs0:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html>
> > > >       ([i915#2842] / [i915#3468])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace-share@rcs0:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@bcs0:
> > > >    - shard-tglb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html>
> > > >       ([i915#2842]) +3 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@rcs0:
> > > >    - shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@vcs1:
> > > >    - shard-iclb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
> > > >       ([i915#2842]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@vecs0:
> > > >    - shard-glk: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html>
> > > >       ([i915#2842]) +2 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_params@secure-non-master:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html>
> > > >       ([fdo#112283])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html>
> > > >       ([fdo#112283])
> > > >       -
> > > >
> > > >    igt@gem_huc_copy@huc-copy:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html>
> > > >       ([fdo#109271] / [i915#2190])
> > > >    -
> > > >
> > > >    igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html>
> > > >       ([fdo#109271]) +159 similar issues
> > > >    -
> > > >
> > > >    igt@gem_render_copy@y-tiled-to-vebox-linear:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> > > >       ([i915#768]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> > > >    - shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html>
> > > >       ([fdo#109271]) +63 similar issues
> > > >    -
> > > >
> > > >    igt@gem_userptr_blits@dmabuf-sync:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
> > > >       ([fdo#109271] / [i915#3323])
> > > >    -
> > > >
> > > >    igt@gem_userptr_blits@dmabuf-unsync:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html>
> > > >       ([i915#3297])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html>
> > > >       ([i915#3297])
> > > >       -
> > > >
> > > >    igt@gem_userptr_blits@input-checking:
> > > >    - shard-apl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@gem_userptr_blits@input-checking.html>
> > > >       ([i915#3002]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gen3_render_tiledy_blits:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html>
> > > >       ([fdo#109289]) +2 similar issues
> > > >    -
> > > >
> > > >    igt@gen7_exec_parse@chained-batch:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gen7_exec_parse@chained-batch.html>
> > > >       ([fdo#109289]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > > >       ([fdo#109271] / [i915#1937])
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > > >       ([fdo#109271] / [i915#1937])
> > > >       -
> > > >
> > > >    igt@i915_suspend@forcewake:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html>
> > > >       ([i915#180]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_big_fb@linear-64bpp-rotate-270:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> > > >       ([fdo#111614])
> > > >    -
> > > >
> > > >    igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > > >       ([fdo#110723])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > > >       ([fdo#111615])
> > > >       -
> > > >
> > > >    igt@kms_chamelium@dp-crc-multiple:
> > > >    - shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html>
> > > >       ([fdo#109271] / [fdo#111827]) +8 similar issues
> > > >    -
> > > >
> > > >    igt@kms_chamelium@vga-hpd-with-enabled-mode:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> > > >       ([fdo#109284] / [fdo#111827]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@kms_chamelium@vga-hpd-without-ddc:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> > > >       ([fdo#109271] / [fdo#111827]) +19 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-a-ctm-limited-range:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html>
> > > >       ([fdo#109271] / [fdo#111827]) +28 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-a-degamma:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html>
> > > >       ([fdo#109271] / [fdo#111827]) +18 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-d-ctm-limited-range:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > > >       ([fdo#109284] / [fdo#111827]) +5 similar issues
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > > >       ([fdo#109278] / [fdo#109284] / [fdo#111827])
> > > >       -
> > > >
> > > >    igt@kms_content_protection@atomic:
> > > >    - shard-apl: NOTRUN -> TIMEOUT
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_content_protection@atomic.html>
> > > >       ([i915#1319])
> > > >    -
> > > >
> > > >    igt@kms_content_protection@uevent:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html>
> > > >       ([i915#2105])
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html>
> > > >       ([i915#2105])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html>
> > > >       ([fdo#109300] / [fdo#111066])
> > > >       -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > > >       ([fdo#109278] / [fdo#109279]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > > >       ([fdo#109279] / [i915#3359]) +4 similar issues
> > > >       -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html>
> > > >       ([i915#3359])
> > > >    -
> > > >
> > > >    igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > > >       ([fdo#111825]) +14 similar issues
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > > >       ([fdo#109274] / [fdo#109278]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@kms_cursor_legacy@pipe-d-single-move:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html>
> > > >       ([fdo#109278]) +7 similar issues
> > > >    -
> > > >
> > > >    igt@kms_dp_dsc@basic-dsc-enable-dp:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > > >       ([fdo#109349])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > > >       ([fdo#109349])
> > > >       -
> > > >
> > > >    igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > > >       ([i915#3528])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > > >       ([i915#3528])
> > > >       -
> > > >
> > > >    igt@kms_fbcon_fbt@fbc-suspend:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > > >       -> INCOMPLETE
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > > >       ([i915#155] / [i915#636])
> > > >    -
> > > >
> > > >    igt@kms_flip@2x-flip-vs-panning-interruptible:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
> > > >       ([fdo#109274]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html>
> > > >       ([fdo#109271] / [i915#2672])
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> > > >       ([fdo#109280]) +12 similar issues
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html>
> > > >       ([fdo#109271]) +349 similar issues
> > > >    -
> > > >
> > > >    igt@kms_hdr@bpc-switch-suspend:
> > > >    - shard-apl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html>
> > > >       ([i915#180])
> > > >    -
> > > >
> > > >    igt@kms_hdr@static-toggle:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html>
> > > >       ([i915#1187])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html>
> > > >       ([i915#1187])
> > > >       -
> > > >
> > > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> > > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> > > >       ([i915#180]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533]) +2 similar issues
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533])
> > > >       -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
> > > >    - shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html>
> > > >       ([fdo#108145] / [i915#265])
> > > >    -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
> > > >       ([i915#265]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html>
> > > >       ([fdo#108145] / [i915#265]) +3 similar issues
> > > >    -
> > > >
> > > >    igt@kms_plane_lowres@pipe-a-tiling-x:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > > >       ([i915#3536]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > > >       ([i915#3536])
> > > >       -
> > > >
> > > >    igt@kms_plane_lowres@pipe-a-tiling-yf:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
> > > >       ([fdo#112054])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html>
> > > >       ([fdo#109271] / [i915#658]) +10 similar issues
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> > > >       ([fdo#109271] / [i915#658]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > > >       ([i915#2920]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > > >       ([fdo#109271] / [i915#658]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
> > > >       ([i915#658])
> > > >    -
> > > >
> > > >    igt@kms_psr@psr2_sprite_render:
> > > >    - shard-iclb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html>
> > > >       -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html>
> > > >       ([fdo#109441])
> > > >    -
> > > >
> > > >    igt@kms_setmode@basic:
> > > >    - shard-snb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html>
> > > >       ([i915#31])
> > > >    -
> > > >
> > > >    igt@kms_sysfs_edid_timing:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html>
> > > >       ([IGT#2])
> > > >    -
> > > >
> > > >    igt@kms_vblank@pipe-a-ts-continuation-suspend:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > > >       ([i915#180] / [i915#295])
> > > >    -
> > > >
> > > >    igt@kms_writeback@writeback-fb-id:
> > > >    -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([fdo#109271] / [i915#2437])
> > > >       -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([fdo#109271] / [i915#2437])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([i915#2437])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([i915#2437])
> > > >       -
> > > >
> > > >    igt@nouveau_crc@pipe-a-source-outp-complete:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-complete.html>
> > > >       ([i915#2530])
> > > >    -
> > > >
> > > >    igt@nouveau_crc@pipe-c-source-rg:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@nouveau_crc@pipe-c-source-rg.html>
> > > >       ([i915#2530]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@prime_nv_api@i915_nv_double_export:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@prime_nv_api@i915_nv_double_export.html>
> > > >       ([fdo#109291]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
> > > >    -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > > >       ([fdo#109271]) +304 similar issues
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > > >       ([fdo#109291])
> > > >       -
> > > >
> > > >    igt@sysfs_clients@fair-0:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html>
> > > >       ([i915#2994]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@sysfs_clients@recycle-many:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html>
> > > >       ([i915#2994]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html>
> > > >       ([fdo#109271] / [i915#2994]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@sysfs_clients@sema-10:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@sysfs_clients@sema-10.html>
> > > >       ([fdo#109271] / [i915#2994]) +2 similar issues
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@sysfs_clients@sema-10.html>
> > > >       ([fdo#109271] / [i915#2994]) +3 similar issues
> > > >
> > > > Possible fixes
> > > >
> > > >    -
> > > >
> > > >    igt@gem_eio@unwedge-stress:
> > > >    - shard-iclb: TIMEOUT
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html>
> > > >       ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-flow@rcs0:
> > > >    - shard-tglb: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
> > > >       ([i915#2842]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none@vcs0:
> > > >    - shard-apl: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
> > > >       ([i915#2842]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_gttfill@basic:
> > > >    - shard-iclb: INCOMPLETE
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html>
> > > >       ([i915#2405]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html>
> > > >    -
> > > >
> > > >    igt@gem_mmap_gtt@big-copy-xy:
> > > >    - shard-glk: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html>
> > > >       ([i915#307]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html>
> > > >    -
> > > >
> > > >    igt@gen9_exec_parse@allowed-all:
> > > >    - shard-glk: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html>
> > > >       ([i915#1436] / [i915#716]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_dc@dc9-dpms:
> > > >    - shard-apl: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
> > > >       ([fdo#109271]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html>
> > > >    -
> > > >
> > > >    igt@kms_big_fb@linear-32bpp-rotate-0:
> > > >    - shard-glk: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > > >       ([i915#118] / [i915#95]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > > >       +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-suspend:
> > > >    - shard-kbl: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > > >       ([i915#180]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > > >       +2 similar issues
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@fbc-suspend:
> > > >    - shard-apl: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > > >       ([i915#180]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > > >       +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_psr@psr2_cursor_plane_onoff:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > > >       ([fdo#109441]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > > >       +1 similar issue
> > > >
> > > > Warnings
> > > >
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > > >    - shard-iclb: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2842]) -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2852])
> > > >    -
> > > >
> > > >    igt@kms_dp_dsc@basic-dsc-enable-edp:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > > >       ([fdo#109349]) -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > > >       ([i915#1226])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > > >       ([i915#2920]) -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > > >       ([i915#658])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > > >    - shard-iclb: [SKIP][144] ([i915#
> > > >
> > > >
> >
> > > _______________________________________________
> > > igt-dev mailing list
> > > igt-dev@lists.freedesktop.org
> > > https://lists.freedesktop.org/mailman/listinfo/igt-dev
> >
> >
> > --
> > Rodrigo Siqueira
> > https://siqueira.tech
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
                   ` (4 preceding siblings ...)
  2021-06-28  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-07-01 22:34 ` Patchwork
  5 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2021-07-01 22:34 UTC (permalink / raw)
  To: Mark Yacoub; +Cc: igt-dev


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

== Series Details ==

Series: lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
URL   : https://patchwork.freedesktop.org/series/89017/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with IGTPW_5952_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_5952_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_5952/index.html

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

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

### IGT changes ###

#### Warnings ####

  * igt@runner@aborted:
    - shard-iclb:         ([FAIL][1], [FAIL][2]) ([i915#1814] / [i915#3002]) -> ([FAIL][3], [FAIL][4], [FAIL][5], [FAIL][6]) ([i915#3002] / [i915#3702])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-clear:
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#1888] / [i915#3160])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html

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

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

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2410])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html

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

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842] / [i915#3468])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         [PASS][20] -> [FAIL][21] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         NOTRUN -> [FAIL][22] ([i915#2842]) +3 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-kbl:          NOTRUN -> [FAIL][23] ([i915#2842])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html

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

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-glk:          NOTRUN -> [FAIL][25] ([i915#2842]) +2 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#112283])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html
    - shard-iclb:         NOTRUN -> [SKIP][27] ([fdo#112283])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#2190])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html

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

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

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271]) +76 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_shrink@reclaim:
    - shard-tglb:         [PASS][32] -> [DMESG-WARN][33] ([i915#3720])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html

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

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([i915#3297])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#3297])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html

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

  * igt@gen3_render_tiledy_blits:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#109289]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html

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

  * igt@i915_pm_dc@dc5-psr:
    - shard-iclb:         [PASS][40] -> [DMESG-WARN][41] ([i915#3698])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html

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

  * igt@i915_pm_rps@waitboost:
    - shard-glk:          [PASS][44] -> [FAIL][45] ([i915#3719])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/igt@i915_pm_rps@waitboost.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][46] -> [DMESG-WARN][47] ([i915#180]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#111614])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html

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

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3689]) +7 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs:
    - shard-snb:          NOTRUN -> [SKIP][52] ([fdo#109271]) +387 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_chamelium@dp-crc-multiple:
    - shard-glk:          NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html

  * igt@kms_chamelium@vga-hpd-with-enabled-mode:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html

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

  * igt@kms_color_chamelium@pipe-a-ctm-limited-range:
    - shard-apl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +28 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html

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

  * igt@kms_color_chamelium@pipe-d-ctm-limited-range:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#109284] / [fdo#111827]) +5 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html

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

  * igt@kms_content_protection@uevent:
    - shard-kbl:          NOTRUN -> [FAIL][61] ([i915#2105])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html
    - shard-apl:          NOTRUN -> [FAIL][62] ([i915#2105])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#109300] / [fdo#111066])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html
    - shard-tglb:         NOTRUN -> [SKIP][65] ([fdo#109279] / [i915#3359]) +4 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#111825]) +14 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109274] / [fdo#109278]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@pipe-d-single-move:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278]) +14 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html

  * igt@kms_dp_dsc@basic-dsc-enable-dp:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([fdo#109349])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109349])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html

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

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-kbl:          [PASS][74] -> [INCOMPLETE][75] ([i915#155] / [i915#636])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html

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

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

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

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][79] ([i915#180])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-toggle:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([i915#1187])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html
    - shard-tglb:         NOTRUN -> [SKIP][81] ([i915#1187])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][82] ([i915#180]) +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
    - shard-kbl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#533]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-apl:          NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#533]) +2 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
    - shard-glk:          NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - shard-kbl:          NOTRUN -> [FAIL][86] ([fdo#108145] / [i915#265])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html

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

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

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([i915#3536]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#3536])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-a-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][91] ([fdo#112054])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html

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

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

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([i915#2920]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
    - shard-glk:          NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#658]) +1 similar issue
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
    - shard-iclb:         NOTRUN -> [SKIP][96] ([i915#658])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html

  * igt@kms_psr@psr2_sprite_render:
    - shard-iclb:         [PASS][97] -> [SKIP][98] ([fdo#109441])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html

  * igt@kms_setmode@basic:
    - shard-snb:          NOTRUN -> [FAIL][99] ([i915#31])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][100] ([IGT#2])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html

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

  * igt@kms_writeback@writeback-fb-id:
    - shard-apl:          NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#2437])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html
    - shard-kbl:          NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2437])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html
    - shard-tglb:         NOTRUN -> [SKIP][105] ([i915#2437])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html
    - shard-iclb:         NOTRUN -> [SKIP][106] ([i915#2437])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html

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

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

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

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][110] ([fdo#109271]) +353 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][111] ([fdo#109291])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([i915#2994]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@recycle-many:
    - shard-iclb:         NOTRUN -> [SKIP][113] ([i915#2994]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html
    - shard-glk:          NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2994]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html

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

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][117] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][119] ([i915#2842]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [FAIL][121] ([i915#2842]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_gttfill@basic:
    - shard-iclb:         [INCOMPLETE][123] ([i915#2405]) -> [PASS][124]
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html

  * igt@gem_mmap_gtt@big-copy-xy:
    - shard-glk:          [FAIL][125] ([i915#307]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [DMESG-WARN][127] ([i915#1436] / [i915#716]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][129] ([fdo#109271]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          [DMESG-WARN][131] ([i915#118] / [i915#95]) -> [PASS][132] +1 similar issue
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_cursor_crc@pipe-c-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][133] ([i915#180]) -> [PASS][134] +2 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          [DMESG-WARN][135] ([i915#180]) -> [PASS][136] +1 similar issue
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [SKIP][137] ([fdo#109441]) -> [PASS][138] +1 similar issue
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Warnings ####

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][139] ([i915#2842]) -> [FAIL][140] ([i915#2852])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][141] ([fdo#109349]) -> [DMESG-WARN][142] ([i915#1226])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
    - shard-iclb:         [SKIP][143] ([i915#2920]) -> [SKIP][144] ([i915#658])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-ar

== Logs ==

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

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

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)
  2021-07-01 21:13         ` Arkadiusz Hiler
@ 2021-07-02  0:55           ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 15+ messages in thread
From: Vudum, Lakshminarayana @ 2021-07-02  0:55 UTC (permalink / raw)
  To: Arkadiusz Hiler, Mark Yacoub
  Cc: Development mailing list for IGT GPU Tools, Latvala, Petri

Re-reported the results.

-----Original Message-----
From: Arkadiusz Hiler <arek@hiler.eu> 
Sent: Thursday, July 1, 2021 2:14 PM
To: Mark Yacoub <markyacoub@chromium.org>
Cc: Latvala, Petri <petri.latvala@intel.com>; Development mailing list for IGT GPU Tools <igt-dev@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4)

On Tue, Jun 29, 2021 at 12:55:59PM -0400, Mark Yacoub wrote:
> +Arkadiusz Hiler
> 
> On Tue, Jun 29, 2021 at 12:07 PM Rodrigo Siqueira 
> <Rodrigo.Siqueira@amd.com> wrote:
> >
> > On 06/28, Mark Yacoub wrote:
> > > sounds like a false positive.it's an AMD only code.
> >
> > Hi Petri,
> >
> > I agree with Mark, I think this is a false positive. In this case, 
> > how can I proceed to apply this patch? When we have a false 
> > positive, can we just go ahead and apply the patch in the upstream? 
> > I'm just trying to understand the correct procedure.
> >
> > Thanks
> > Siqueira

Indeed looks unrelated to your changes.

CCed Lakshmi so he can file bugs for those. We can merge the change after the bugs are filed and we get a clean report here.

> > > On Mon, Jun 28, 2021 at 5:26 AM Patchwork 
> > > <patchwork@emeril.freedesktop.org>
> > > wrote:
> > >
> > > > *Patch Details*
> > > > *Series:* lib/igt_fb: Support Tile Size for AMD non linear modifiers.
> > > > (rev4)
> > > > *URL:* https://patchwork.freedesktop.org/series/89017/
> > > > *State:* failure
> > > > *Details:* 
> > > > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/index.html 
> > > > CI Bug Log - changes from CI_DRM_10282_full -> IGTPW_5952_full 
> > > > Summary
> > > >
> > > > *FAILURE*
> > > >
> > > > Serious unknown changes coming with IGTPW_5952_full absolutely 
> > > > need to be verified manually.
> > > >
> > > > If you think the reported changes have nothing to do with the 
> > > > changes introduced in IGTPW_5952_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_5952/index.html
> > > > Possible new issues
> > > >
> > > > Here are the unknown changes that may have been introduced in
> > > > IGTPW_5952_full:
> > > > IGT changes Possible regressions
> > > >
> > > >    -
> > > >
> > > >    igt@gem_shrink@reclaim:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_shrink@reclaim.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_shrink@reclaim.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_dc@dc5-psr:
> > > >    - shard-iclb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@i915_pm_dc@dc5-psr.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_rps@waitboost:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@i915_pm_rps@waitboost.html>
> > > >       -> FAIL
> > > >       
> > > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk2/
> > > > igt@i915_pm_rps@waitboost.html>
> > > >
> > > > Warnings
> > > >
> > > >    - igt@runner@aborted:
> > > >       - shard-iclb: (FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb5/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@runner@aborted.html>)
> > > >       ([i915#1814] / [i915#3002]) -> (FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@runner@aborted.html>,
> > > >       FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@runner@aborted.html>)
> > > >       ([i915#3002])
> > > >
> > > > Known issues
> > > >
> > > > Here are the changes found in IGTPW_5952_full that come from known issues:
> > > > IGT changes Issues hit
> > > >
> > > >    -
> > > >
> > > >    igt@gem_create@create-clear:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@gem_create@create-clear.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gem_create@create-clear.html>
> > > >       ([i915#1888] / [i915#3160])
> > > >    -
> > > >
> > > >    igt@gem_create@create-massive:
> > > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_create@create-massive.html>
> > > >       ([i915#3002])
> > > >    -
> > > >
> > > >    igt@gem_ctx_persistence@legacy-engines-mixed:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html>
> > > >       ([fdo#109271] / [i915#1099]) +7 similar issues
> > > >    -
> > > >
> > > >    igt@gem_ctx_persistence@many-contexts:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gem_ctx_persistence@many-contexts.html>
> > > >       ([i915#2410])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-deadline:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_exec_fair@basic-deadline.html>
> > > >       ([i915#2846])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2842]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-vip@rcs0:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none@vecs0:
> > > >    - shard-glk: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html>
> > > >       ([i915#2842] / [i915#3468])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace-share@rcs0:
> > > >    - shard-tglb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > > >       -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@bcs0:
> > > >    - shard-tglb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-pace@bcs0.html>
> > > >       ([i915#2842]) +3 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@rcs0:
> > > >    - shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html>
> > > >       ([i915#2842])
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@vcs1:
> > > >    - shard-iclb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html>
> > > >       ([i915#2842]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-pace@vecs0:
> > > >    - shard-glk: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html>
> > > >       ([i915#2842]) +2 similar issues
> > > >    -
> > > >
> > > >    igt@gem_exec_params@secure-non-master:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@gem_exec_params@secure-non-master.html>
> > > >       ([fdo#112283])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_exec_params@secure-non-master.html>
> > > >       ([fdo#112283])
> > > >       -
> > > >
> > > >    igt@gem_huc_copy@huc-copy:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@gem_huc_copy@huc-copy.html>
> > > >       ([fdo#109271] / [i915#2190])
> > > >    -
> > > >
> > > >    igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html>
> > > >       ([fdo#109271]) +159 similar issues
> > > >    -
> > > >
> > > >    igt@gem_render_copy@y-tiled-to-vebox-linear:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> > > >       ([i915#768]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> > > >    - shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html>
> > > >       ([fdo#109271]) +63 similar issues
> > > >    -
> > > >
> > > >    igt@gem_userptr_blits@dmabuf-sync:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html>
> > > >       ([fdo#109271] / [i915#3323])
> > > >    -
> > > >
> > > >    igt@gem_userptr_blits@dmabuf-unsync:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_userptr_blits@dmabuf-unsync.html>
> > > >       ([i915#3297])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html>
> > > >       ([i915#3297])
> > > >       -
> > > >
> > > >    igt@gem_userptr_blits@input-checking:
> > > >    - shard-apl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@gem_userptr_blits@input-checking.html>
> > > >       ([i915#3002]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@gen3_render_tiledy_blits:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@gen3_render_tiledy_blits.html>
> > > >       ([fdo#109289]) +2 similar issues
> > > >    -
> > > >
> > > >    igt@gen7_exec_parse@chained-batch:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@gen7_exec_parse@chained-batch.html>
> > > >       ([fdo#109289]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > > >       ([fdo#109271] / [i915#1937])
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
> > > >       ([fdo#109271] / [i915#1937])
> > > >       -
> > > >
> > > >    igt@i915_suspend@forcewake:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl6/igt@i915_suspend@forcewake.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@i915_suspend@forcewake.html>
> > > >       ([i915#180]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_big_fb@linear-64bpp-rotate-270:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_big_fb@linear-64bpp-rotate-270.html>
> > > >       ([fdo#111614])
> > > >    -
> > > >
> > > >    igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > > >       ([fdo#110723])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html>
> > > >       ([fdo#111615])
> > > >       -
> > > >
> > > >    igt@kms_chamelium@dp-crc-multiple:
> > > >    - shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@kms_chamelium@dp-crc-multiple.html>
> > > >       ([fdo#109271] / [fdo#111827]) +8 similar issues
> > > >    -
> > > >
> > > >    igt@kms_chamelium@vga-hpd-with-enabled-mode:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html>
> > > >       ([fdo#109284] / [fdo#111827]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@kms_chamelium@vga-hpd-without-ddc:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> > > >       ([fdo#109271] / [fdo#111827]) +19 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-a-ctm-limited-range:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html>
> > > >       ([fdo#109271] / [fdo#111827]) +28 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-a-degamma:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html>
> > > >       ([fdo#109271] / [fdo#111827]) +18 similar issues
> > > >    -
> > > >
> > > >    igt@kms_color_chamelium@pipe-d-ctm-limited-range:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb6/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > > >       ([fdo#109284] / [fdo#111827]) +5 similar issues
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html>
> > > >       ([fdo#109278] / [fdo#109284] / [fdo#111827])
> > > >       -
> > > >
> > > >    igt@kms_content_protection@atomic:
> > > >    - shard-apl: NOTRUN -> TIMEOUT
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl7/igt@kms_content_protection@atomic.html>
> > > >       ([i915#1319])
> > > >    -
> > > >
> > > >    igt@kms_content_protection@uevent:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl3/igt@kms_content_protection@uevent.html>
> > > >       ([i915#2105])
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_content_protection@uevent.html>
> > > >       ([i915#2105])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_content_protection@uevent.html>
> > > >       ([fdo#109300] / [fdo#111066])
> > > >       -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > > >       ([fdo#109278] / [fdo#109279]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html>
> > > >       ([fdo#109279] / [i915#3359]) +4 similar issues
> > > >       -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@kms_cursor_crc@pipe-c-cursor-max-size-sliding.html>
> > > >       ([i915#3359])
> > > >    -
> > > >
> > > >    igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > > >       ([fdo#111825]) +14 similar issues
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html>
> > > >       ([fdo#109274] / [fdo#109278]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@kms_cursor_legacy@pipe-d-single-move:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_cursor_legacy@pipe-d-single-move.html>
> > > >       ([fdo#109278]) +7 similar issues
> > > >    -
> > > >
> > > >    igt@kms_dp_dsc@basic-dsc-enable-dp:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > > >       ([fdo#109349])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-dp.html>
> > > >       ([fdo#109349])
> > > >       -
> > > >
> > > >    igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > > >       ([i915#3528])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html>
> > > >       ([i915#3528])
> > > >       -
> > > >
> > > >    igt@kms_fbcon_fbt@fbc-suspend:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > > >       -> INCOMPLETE
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_fbcon_fbt@fbc-suspend.html>
> > > >       ([i915#155] / [i915#636])
> > > >    -
> > > >
> > > >    igt@kms_flip@2x-flip-vs-panning-interruptible:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
> > > >       ([fdo#109274]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html>
> > > >       ([fdo#109271] / [i915#2672])
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> > > >       ([fdo#109280]) +12 similar issues
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
> > > >    - shard-snb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html>
> > > >       ([fdo#109271]) +349 similar issues
> > > >    -
> > > >
> > > >    igt@kms_hdr@bpc-switch-suspend:
> > > >    - shard-apl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html>
> > > >       ([i915#180])
> > > >    -
> > > >
> > > >    igt@kms_hdr@static-toggle:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb3/igt@kms_hdr@static-toggle.html>
> > > >       ([i915#1187])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb7/igt@kms_hdr@static-toggle.html>
> > > >       ([i915#1187])
> > > >       -
> > > >
> > > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
> > > >    - shard-kbl: NOTRUN -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html>
> > > >       ([i915#180]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533]) +2 similar issues
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html>
> > > >       ([fdo#109271] / [i915#533])
> > > >       -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
> > > >    - shard-kbl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html>
> > > >       ([fdo#108145] / [i915#265])
> > > >    -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
> > > >       ([i915#265]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html>
> > > >       ([fdo#108145] / [i915#265]) +3 similar issues
> > > >    -
> > > >
> > > >    igt@kms_plane_lowres@pipe-a-tiling-x:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > > >       ([i915#3536]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-x.html>
> > > >       ([i915#3536])
> > > >       -
> > > >
> > > >    igt@kms_plane_lowres@pipe-a-tiling-yf:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb1/igt@kms_plane_lowres@pipe-a-tiling-yf.html>
> > > >       ([fdo#112054])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
> > > >    - shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html>
> > > >       ([fdo#109271] / [i915#658]) +10 similar issues
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > > >    - shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3.html>
> > > >       ([fdo#109271] / [i915#658]) +4 similar issues
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
> > > >    -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > > >       ([i915#2920]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html>
> > > >       ([fdo#109271] / [i915#658]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@kms_psr2_sf@plane-move-sf-dmg-area-1:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html>
> > > >       ([i915#658])
> > > >    -
> > > >
> > > >    igt@kms_psr@psr2_sprite_render:
> > > >    - shard-iclb: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr@psr2_sprite_render.html>
> > > >       -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@kms_psr@psr2_sprite_render.html>
> > > >       ([fdo#109441])
> > > >    -
> > > >
> > > >    igt@kms_setmode@basic:
> > > >    - shard-snb: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-snb5/igt@kms_setmode@basic.html>
> > > >       ([i915#31])
> > > >    -
> > > >
> > > >    igt@kms_sysfs_edid_timing:
> > > >    - shard-apl: NOTRUN -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl3/igt@kms_sysfs_edid_timing.html>
> > > >       ([IGT#2])
> > > >    -
> > > >
> > > >    igt@kms_vblank@pipe-a-ts-continuation-suspend:
> > > >    - shard-kbl: PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > > >       -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
> > > >       ([i915#180] / [i915#295])
> > > >    -
> > > >
> > > >    igt@kms_writeback@writeback-fb-id:
> > > >    -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl1/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([fdo#109271] / [i915#2437])
> > > >       -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl1/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([fdo#109271] / [i915#2437])
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([i915#2437])
> > > >       -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@kms_writeback@writeback-fb-id.html>
> > > >       ([i915#2437])
> > > >       -
> > > >
> > > >    igt@nouveau_crc@pipe-a-source-outp-complete:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@nouveau_crc@pipe-a-source-outp-complete.html>
> > > >       ([i915#2530])
> > > >    -
> > > >
> > > >    igt@nouveau_crc@pipe-c-source-rg:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@nouveau_crc@pipe-c-source-rg.html>
> > > >       ([i915#2530]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@prime_nv_api@i915_nv_double_export:
> > > >    - shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb5/igt@prime_nv_api@i915_nv_double_export.html>
> > > >       ([fdo#109291]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
> > > >    -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > > >       ([fdo#109271]) +304 similar issues
> > > >       -
> > > >
> > > >       shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb3/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html>
> > > >       ([fdo#109291])
> > > >       -
> > > >
> > > >    igt@sysfs_clients@fair-0:
> > > >    - shard-tglb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb5/igt@sysfs_clients@fair-0.html>
> > > >       ([i915#2994]) +1 similar issue
> > > >    -
> > > >
> > > >    igt@sysfs_clients@recycle-many:
> > > >    -
> > > >
> > > >       shard-iclb: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb8/igt@sysfs_clients@recycle-many.html>
> > > >       ([i915#2994]) +1 similar issue
> > > >       -
> > > >
> > > >       shard-glk: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@sysfs_clients@recycle-many.html>
> > > >       ([fdo#109271] / [i915#2994]) +1 similar issue
> > > >       -
> > > >
> > > >    igt@sysfs_clients@sema-10:
> > > >    -
> > > >
> > > >       shard-kbl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl6/igt@sysfs_clients@sema-10.html>
> > > >       ([fdo#109271] / [i915#2994]) +2 similar issues
> > > >       -
> > > >
> > > >       shard-apl: NOTRUN -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@sysfs_clients@sema-10.html>
> > > >       ([fdo#109271] / [i915#2994]) +3 similar issues
> > > >
> > > > Possible fixes
> > > >
> > > >    -
> > > >
> > > >    igt@gem_eio@unwedge-stress:
> > > >    - shard-iclb: TIMEOUT
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb7/igt@gem_eio@unwedge-stress.html>
> > > >       ([i915#2369] / [i915#2481] / [i915#3070]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb6/igt@gem_eio@unwedge-stress.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-flow@rcs0:
> > > >    - shard-tglb: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html>
> > > >       ([i915#2842]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none@vcs0:
> > > >    - shard-apl: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
> > > >       ([i915#2842]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html>
> > > >    -
> > > >
> > > >    igt@gem_exec_gttfill@basic:
> > > >    - shard-iclb: INCOMPLETE
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb4/igt@gem_exec_gttfill@basic.html>
> > > >       ([i915#2405]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_gttfill@basic.html>
> > > >    -
> > > >
> > > >    igt@gem_mmap_gtt@big-copy-xy:
> > > >    - shard-glk: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk3/igt@gem_mmap_gtt@big-copy-xy.html>
> > > >       ([i915#307]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk1/igt@gem_mmap_gtt@big-copy-xy.html>
> > > >    -
> > > >
> > > >    igt@gen9_exec_parse@allowed-all:
> > > >    - shard-glk: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk1/igt@gen9_exec_parse@allowed-all.html>
> > > >       ([i915#1436] / [i915#716]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk8/igt@gen9_exec_parse@allowed-all.html>
> > > >    -
> > > >
> > > >    igt@i915_pm_dc@dc9-dpms:
> > > >    - shard-apl: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl1/igt@i915_pm_dc@dc9-dpms.html>
> > > >       ([fdo#109271]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl6/igt@i915_pm_dc@dc9-dpms.html>
> > > >    -
> > > >
> > > >    igt@kms_big_fb@linear-32bpp-rotate-0:
> > > >    - shard-glk: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > > >       ([i915#118] / [i915#95]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-glk6/igt@kms_big_fb@linear-32bpp-rotate-0.html>
> > > >       +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_cursor_crc@pipe-c-cursor-suspend:
> > > >    - shard-kbl: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > > >       ([i915#180]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html>
> > > >       +2 similar issues
> > > >    -
> > > >
> > > >    igt@kms_frontbuffer_tracking@fbc-suspend:
> > > >    - shard-apl: DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > > >       ([i915#180]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html>
> > > >       +1 similar issue
> > > >    -
> > > >
> > > >    igt@kms_psr@psr2_cursor_plane_onoff:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > > >       ([fdo#109441]) -> PASS
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html>
> > > >       +1 similar issue
> > > >
> > > > Warnings
> > > >
> > > >    -
> > > >
> > > >    igt@gem_exec_fair@basic-none-rrul@rcs0:
> > > >    - shard-iclb: FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb1/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2842]) -> FAIL
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> > > >       ([i915#2852])
> > > >    -
> > > >
> > > >    igt@kms_dp_dsc@basic-dsc-enable-edp:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > > >       ([fdo#109349]) -> DMESG-WARN
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html>
> > > >       ([i915#1226])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1:
> > > >    - shard-iclb: SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10282/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > > >       ([i915#2920]) -> SKIP
> > > >       <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5952/shard-iclb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html>
> > > >       ([i915#658])
> > > >    -
> > > >
> > > >    igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3:
> > > >    - shard-iclb: [SKIP][144] ([i915#
> > > >
> > > >
> >
> > > _______________________________________________
> > > igt-dev mailing list
> > > igt-dev@lists.freedesktop.org
> > > https://lists.freedesktop.org/mailman/listinfo/igt-dev
> >
> >
> > --
> > Rodrigo Siqueira
> > https://siqueira.tech
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers.
  2021-06-23  6:15   ` Petri Latvala
@ 2021-07-06 12:35     ` Rodrigo Siqueira
  0 siblings, 0 replies; 15+ messages in thread
From: Rodrigo Siqueira @ 2021-07-06 12:35 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, Mark Yacoub, seanpaul, bas


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

On 06/23, Petri Latvala wrote:
> On Tue, Jun 22, 2021 at 02:11:52PM -0400, Rodrigo Siqueira wrote:
> > On 06/21, Mark Yacoub wrote:
> > > From: Mark Yacoub <markyacoub@google.com>
> > > 
> > > Calculate the width and height of the tile on amdgpu when the modifier
> > > is not linear.
> > > 
> > > v1:
> > > Change width_ret to bytes not pixels.
> > > 
> > > Cc: bas@basnieuwenhuizen.nl
> > > Cc: daniel.vetter@ffwll.ch
> > > Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
> > > Change-Id: I30849ee1368fc626d1ce2826fb726cd76565a449
> > > ---
> > >  lib/igt_fb.c | 13 +++++++++++++
> > >  1 file changed, 13 insertions(+)
> > > 
> > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> > > index 71b89855..a3926dc9 100644
> > > --- a/lib/igt_fb.c
> > > +++ b/lib/igt_fb.c
> > > @@ -396,6 +396,19 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
> > >  		vc4_modifier_param = fourcc_mod_broadcom_param(modifier);
> > >  		modifier = fourcc_mod_broadcom_mod(modifier);
> > >  	}
> > > +	// For all non-linear modifiers, AMD uses 64 KiB tiles
> > > +	else if (IS_AMD_FMT_MOD(modifier)) {
> > > +		igt_require_amdgpu(fd);
> > > +		const int bytes_per_pixel = fb_bpp / 8;
> > > +		const int format_log2 = log2(bytes_per_pixel);
> > > +		const int pixel_log2 = log2(64 * 1024) - format_log2;
> > > +		const int width_log2 = (pixel_log2 + 1) / 2;
> > > +		const int height_log2 = pixel_log2 - width_log2;
> > > +
> > > +		*width_ret = bytes_per_pixel << width_log2;
> > > +		*height_ret = 1 << height_log2;
> > > +		return;
> > > +	}
> > 
> > Hi Mark,
> > 
> > This patch lgtm,
> > 
> > Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
> > 
> > However, let's check if Bas has any comment about it.
> > 
> > Btw, is the CI failure a false positive?
> 
> Looks like those results are caused by the regression in the kernel we
> had for a bit. I queued this patch for a re-test.

Hi Petri,

Thanks a lot for queued the path for re-test. I can see that everything
is looks good now:

https://patchwork.freedesktop.org/series/89017/

I'm going to apply it.

Thanks
Siqueira
 
> 
> -- 
> Petri Latvala

-- 
Rodrigo Siqueira
https://siqueira.tech

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

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

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

* [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers.
@ 2021-06-21 15:41 Mark Yacoub
  0 siblings, 0 replies; 15+ messages in thread
From: Mark Yacoub @ 2021-06-21 15:41 UTC (permalink / raw)
  To: igt-dev; +Cc: seanpaul, petri.latvala, bas

Calculate the width and height of the tile on amdgpu when the modifier
is not linear.

v1:
Change width_ret to bytes not pixels.

Cc: bas@basnieuwenhuizen.nl
Cc: daniel.vetter@ffwll.ch
Signed-off-by: Mark Yacoub <markyacoub@chromium.org>
---
 lib/igt_fb.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 71b89855..6b926e2e 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -396,6 +396,19 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
 		vc4_modifier_param = fourcc_mod_broadcom_param(modifier);
 		modifier = fourcc_mod_broadcom_mod(modifier);
 	}
+	// For all non-linear modifiers, AMD uses 64 KiB tiles
+	else if (IS_AMD_FMT_MOD(modifier)) {
+		igt_require_amdgpu(fd);
+		const int bytes_per_pixel = fb_bpp / 8;
+		const int format_log2 = log2(bytes_per_pixel);
+		const int pixel_log2 = log2(64 * 1024) - format_log2;
+		const int width_log2 = (pixel_log2  1) / 2;
+		const int height_log2 = pixel_log2 - width_log2;
+
+		*width_ret = bytes_per_pixel << width_log2;
+		*height_ret = 1 << height_log2;
+		return;
+	}
 
 	switch (modifier) {
 	case LOCAL_DRM_FORMAT_MOD_NONE:
-- 
2.32.0.288.g62a8d224e6-goog
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2021-07-06 12:35 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-21 17:21 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub
2021-06-21 18:02 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev3) Patchwork
2021-06-21 20:38 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-06-22 18:11 ` [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Rodrigo Siqueira
2021-06-23  6:15   ` Petri Latvala
2021-07-06 12:35     ` Rodrigo Siqueira
2021-06-28  8:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Support Tile Size for AMD non linear modifiers. (rev4) Patchwork
2021-06-28  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-06-28 17:08   ` Mark Yacoub
2021-06-29 16:07     ` Rodrigo Siqueira
2021-06-29 16:55       ` Mark Yacoub
2021-07-01 21:13         ` Arkadiusz Hiler
2021-07-02  0:55           ` Vudum, Lakshminarayana
2021-07-01 22:34 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2021-06-21 15:41 [igt-dev] [PATCH v2] lib/igt_fb: Support Tile Size for AMD non linear modifiers Mark Yacoub

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.