Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
@ 2024-12-05 10:41 Dominik Grzegorzek
  2024-12-06  1:31 ` ✗ Xe.CI.BAT: failure for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Dominik Grzegorzek @ 2024-12-05 10:41 UTC (permalink / raw)
  To: igt-dev; +Cc: Dominik Grzegorzek, Zbigniew Kempczyński

Some tests (i.e. xe_eudebug_online, xe_exec_sip) are mapping intel_buf.
If the backing storage is nvram, any access to mmaped buffer may
cause segmentation fault. Set DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM
by default as intel_bufs might be mapped and this is not harmful.

Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

 lib/intel_bufops.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index 619222019..49b91a171 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -1021,7 +1021,8 @@ static void __intel_buf_init(struct buf_ops *bops,
 				cpu_caching = DRM_XE_GEM_CPU_CACHING_WC;
 
 			bo_size = ALIGN(bo_size, xe_get_default_alignment(bops->fd));
-			buf->handle = xe_bo_create_caching(bops->fd, 0, bo_size, region, 0,
+			buf->handle = xe_bo_create_caching(bops->fd, 0, bo_size, region,
+							   DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
 							   cpu_caching);
 		}
 	}
-- 
2.34.1


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

* ✗ Xe.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
@ 2024-12-06  1:31 ` Patchwork
  2024-12-06  1:44 ` ✓ i915.CI.BAT: success " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06  1:31 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
URL   : https://patchwork.freedesktop.org/series/142167/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8139_BAT -> XEIGTPW_12256_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_12256_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_12256_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@basic-flip-vs-dpms@a-edp1:
    - bat-lnl-1:          [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html

  


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

  * IGT: IGT_8139 -> IGTPW_12256
  * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2329-777ecc16b887cadb4012cc323be01c46a23fea9f

  IGTPW_12256: 12256
  IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
  xe-2329-777ecc16b887cadb4012cc323be01c46a23fea9f: 777ecc16b887cadb4012cc323be01c46a23fea9f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/index.html

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

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

* ✓ i915.CI.BAT: success for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
  2024-12-06  1:31 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2024-12-06  1:44 ` Patchwork
  2024-12-06  3:06 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06  1:44 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
URL   : https://patchwork.freedesktop.org/series/142167/
State : success

== Summary ==

CI Bug Log - changes from IGT_8139 -> IGTPW_12256
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - bat-dg2-11:         [PASS][1] -> [FAIL][2] ([i915#12903])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-8109u:       [PASS][3] -> [DMESG-WARN][4] ([i915#12914])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-mtlp-8/igt@i915_selftest@live.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/bat-mtlp-8/igt@i915_selftest@live.html
    - bat-arls-5:         NOTRUN -> [ABORT][7] ([i915#12061])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/bat-arls-5/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [PASS][8] -> [ABORT][9] ([i915#12061])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/bat-arls-5/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - bat-rpls-4:         [FAIL][10] ([i915#12903]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8139/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/bat-rpls-4/igt@i915_pm_rpm@module-reload.html

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

  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8139 -> IGTPW_12256
  * Linux: CI_DRM_15796 -> CI_DRM_15797

  CI-20190529: 20190529
  CI_DRM_15796: 1b7746f770882ce40dacae683e8e65657c40c2b7 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_15797: 777ecc16b887cadb4012cc323be01c46a23fea9f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12256: 12256
  IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

* ✗ i915.CI.Full: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
  2024-12-06  1:31 ` ✗ Xe.CI.BAT: failure for " Patchwork
  2024-12-06  1:44 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-12-06  3:06 ` Patchwork
  2024-12-06  4:06 ` ✗ Xe.CI.Full: " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06  3:06 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
URL   : https://patchwork.freedesktop.org/series/142167/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15797_full -> IGTPW_12256_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_12256_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_12256_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_12256/index.html

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          NOTRUN -> [ABORT][1] +2 other tests abort
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb5/igt@gem_ctx_isolation@preservation-s3@rcs0.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk3/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc (NEW):
    - shard-dg1:          NOTRUN -> [SKIP][3] +7 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs (NEW):
    - shard-rkl:          NOTRUN -> [SKIP][4] +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][5] +11 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs (NEW):
    - shard-mtlp:         NOTRUN -> [SKIP][6] +12 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs (NEW):
    - shard-tglu:         NOTRUN -> [SKIP][7] +7 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs.html

  
New tests
---------

  New tests have been introduced between CI_DRM_15797_full and IGTPW_12256_full:

### New IGT tests (88) ###

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.81] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-edp-1-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.65] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.12] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.57] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-yf-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.70] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-linear:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.15, 2.08] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-x:
    - Statuses : 2 pass(s)
    - Exec time: [2.10, 2.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y:
    - Statuses : 2 pass(s)
    - Exec time: [2.16, 2.58] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.65] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.57] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-2-yf-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.66] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.23] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-linear:
    - Statuses : 1 pass(s)
    - Exec time: [2.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.21] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.29] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.80] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-edp-1-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.60] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.10] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.55] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-1-yf-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.69] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-linear:
    - Statuses : 1 pass(s) 1 skip(s)
    - Exec time: [0.15, 2.05] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-x:
    - Statuses : 2 pass(s)
    - Exec time: [2.06, 2.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y:
    - Statuses : 2 pass(s)
    - Exec time: [2.10, 2.52] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.63] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.11] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.55] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-yf-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.68] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.12] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-4-linear:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-4-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.20] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-4-y:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-4-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.22] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-4-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.73] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-edp-1-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.10] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.65] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-linear:
    - Statuses : 1 skip(s)
    - Exec time: [0.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.13] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y:
    - Statuses : 1 pass(s)
    - Exec time: [2.55] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-yf:
    - Statuses : 1 pass(s)
    - Exec time: [2.63] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-3-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-3-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.11] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-4-linear:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-4-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.20] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-4-y:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-4-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.26] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-4-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.76] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.15] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-linear:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-edp-1-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.15] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.10] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-3-4-mc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-3-4-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.12] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-linear:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-x:
    - Statuses : 1 pass(s)
    - Exec time: [2.18] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-y:
    - Statuses : 1 pass(s)
    - Exec time: [2.16] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-y-rc-ccs:
    - Statuses : 1 skip(s)
    - Exec time: [0.25] s

  * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-4-y-rc-ccs-cc:
    - Statuses : 1 skip(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2:
    - Statuses : 3 pass(s)
    - Exec time: [2.16, 2.35] s

  * igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-2:
    - Statuses : 3 pass(s)
    - Exec time: [2.15, 2.28] s

  * igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-2:
    - Statuses : 2 pass(s)
    - Exec time: [2.17, 2.30] s

  * igt@kms_async_flips@crc-atomic@pipe-d-edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [2.85] s

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.17] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-a-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.28] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.23] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-b-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.14] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.21] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-c-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.12] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.23] s

  * igt@kms_async_flips@test-cursor-atomic@pipe-d-dp-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.14] s

  * igt@kms_psr@psr-sprite-mmap-cpu@edp-1:
    - Statuses : 1 pass(s)
    - Exec time: [1.69] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-dg1:          NOTRUN -> [SKIP][8] ([i915#8411])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-mtlp:         NOTRUN -> [SKIP][9] ([i915#8411])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-dg2:          NOTRUN -> [SKIP][10] ([i915#8411])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
    - shard-rkl:          NOTRUN -> [SKIP][11] ([i915#8411])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@debugfs_test@basic-hwmon:
    - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#9318])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@debugfs_test@basic-hwmon.html

  * igt@device_reset@cold-reset-bound:
    - shard-tglu-1:       NOTRUN -> [SKIP][13] ([i915#11078])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@device_reset@cold-reset-bound.html
    - shard-dg1:          NOTRUN -> [SKIP][14] ([i915#11078])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@device_reset@cold-reset-bound.html
    - shard-mtlp:         NOTRUN -> [SKIP][15] ([i915#11078])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#11078])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@device_reset@cold-reset-bound.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#11078]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_fdinfo@isolation:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#8414]) +7 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@drm_fdinfo@isolation.html

  * igt@drm_fdinfo@isolation@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][19] ([i915#8414]) +6 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@drm_fdinfo@isolation@rcs0.html

  * igt@drm_fdinfo@isolation@vecs0:
    - shard-dg1:          NOTRUN -> [SKIP][20] ([i915#8414]) +5 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html

  * igt@drm_fdinfo@memory-info-active:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][21] ([i915#12964]) +3 other tests dmesg-warn
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@drm_fdinfo@memory-info-active.html

  * igt@gem_basic@multigpu-create-close:
    - shard-rkl:          NOTRUN -> [SKIP][22] ([i915#7697])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
    - shard-dg1:          NOTRUN -> [SKIP][23] ([i915#7697])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
    - shard-tglu:         NOTRUN -> [SKIP][24] ([i915#7697])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@gem_basic@multigpu-create-close.html
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#7697])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@gem_basic@multigpu-create-close.html
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#7697])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@gem_basic@multigpu-create-close.html

  * igt@gem_caching@reads:
    - shard-mtlp:         NOTRUN -> [SKIP][27] ([i915#4873])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@gem_caching@reads.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-tglu-1:       NOTRUN -> [SKIP][28] ([i915#9323])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ctx_persistence@processes:
    - shard-snb:          NOTRUN -> [SKIP][29] ([i915#1099]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb1/igt@gem_ctx_persistence@processes.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#280])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@gem_ctx_sseu@invalid-args.html
    - shard-rkl:          NOTRUN -> [SKIP][31] ([i915#280])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
    - shard-dg1:          NOTRUN -> [SKIP][32] ([i915#280])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_eio@kms:
    - shard-dg1:          NOTRUN -> [FAIL][33] ([i915#5784])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@bonded-chain:
    - shard-rkl:          NOTRUN -> [ABORT][34] ([i915#13218]) +26 other tests abort
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@gem_exec_balancer@bonded-chain.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
    - shard-tglu-1:       NOTRUN -> [SKIP][36] ([i915#4525])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [SKIP][37] ([i915#4525])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu:         NOTRUN -> [ABORT][38] ([i915#11713])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-2/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#6344])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
    - shard-tglu:         NOTRUN -> [SKIP][40] ([i915#6344])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-2/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_params@secure-non-root:
    - shard-dg2:          NOTRUN -> [SKIP][43] +7 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_reloc@basic-gtt-active:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-active.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([i915#3281]) +9 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_reloc@basic-write-wc-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][47] ([i915#3281]) +5 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
    - shard-dg1:          NOTRUN -> [SKIP][50] ([i915#4812])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts-chain.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-dg2:          NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
    - shard-tglu:         NOTRUN -> [SKIP][53] ([i915#4613])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@gem_lmem_swapping@parallel-random.html
    - shard-glk:          NOTRUN -> [SKIP][54] ([i915#4613])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk1/igt@gem_lmem_swapping@parallel-random.html
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#4613])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#12193])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#4565])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html

  * igt@gem_media_vme:
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#284])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@gem_media_vme.html
    - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#284])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@gem_media_vme.html
    - shard-rkl:          NOTRUN -> [SKIP][60] ([i915#284])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@gem_media_vme.html
    - shard-tglu:         NOTRUN -> [SKIP][61] ([i915#284])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-3/igt@gem_media_vme.html

  * igt@gem_mmap@basic-small-bo:
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#4083]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@gem_mmap@basic-small-bo.html

  * igt@gem_mmap_gtt@basic-small-bo:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html

  * igt@gem_mmap_gtt@basic-small-copy-xy:
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#4077]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy-xy.html

  * igt@gem_mmap_gtt@fault-concurrent-y:
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#4077]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html

  * igt@gem_mmap_wc@read:
    - shard-dg1:          NOTRUN -> [SKIP][66] ([i915#4083]) +5 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@gem_mmap_wc@read.html

  * igt@gem_mmap_wc@write-prefaulted:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#4083]) +6 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@gem_mmap_wc@write-prefaulted.html

  * igt@gem_pread@bench:
    - shard-rkl:          NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@gem_pread@bench.html
    - shard-dg1:          NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@gem_pread@bench.html
    - shard-mtlp:         NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@gem_pread@bench.html

  * igt@gem_pread@snoop:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@gem_pread@snoop.html

  * igt@gem_pxp@display-protected-crc:
    - shard-tglu:         [PASS][72] -> [SKIP][73] ([i915#4270])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15797/shard-tglu-3/igt@gem_pxp@display-protected-crc.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@gem_pxp@display-protected-crc.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#4270])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-1.html
    - shard-rkl:          NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-1.html
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#4270])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][77] ([i915#8428]) +7 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +6 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html

  * igt@gem_softpin@evict-snoop:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#4885])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gem_softpin@evict-snoop.html
    - shard-mtlp:         NOTRUN -> [SKIP][80] ([i915#4885])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@gem_softpin@evict-snoop.html
    - shard-dg2:          NOTRUN -> [SKIP][81] ([i915#4885])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-mtlp:         NOTRUN -> [SKIP][82] ([i915#3297])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#3297])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#3297])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-tglu-1:       NOTRUN -> [SKIP][85] ([i915#3297])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
    - shard-dg1:          NOTRUN -> [SKIP][86] ([i915#3297])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_vm_create@invalid-create:
    - shard-snb:          NOTRUN -> [SKIP][87] +406 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb4/igt@gem_vm_create@invalid-create.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#2527]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglu-1:       NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html
    - shard-dg1:          NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][92] ([i915#6412])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@i915_module_load@resize-bar.html
    - shard-tglu-1:       NOTRUN -> [SKIP][93] ([i915#6412])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@i915_module_load@resize-bar.html
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#7178])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@i915_module_load@resize-bar.html
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#6412])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-8/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-tglu:         NOTRUN -> [SKIP][96] ([i915#8399]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_api@freq-reset-multiple:
    - shard-rkl:          NOTRUN -> [SKIP][97] ([i915#8399]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_pm_rps@reset:
    - shard-snb:          NOTRUN -> [INCOMPLETE][99] ([i915#7790])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb4/igt@i915_pm_rps@reset.html

  * igt@i915_pm_rps@thresholds-idle:
    - shard-mtlp:         NOTRUN -> [SKIP][100] ([i915#11681])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#11681])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@i915_pm_rps@thresholds-idle.html
    - shard-dg1:          NOTRUN -> [SKIP][102] ([i915#11681])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk:          NOTRUN -> [INCOMPLETE][103] ([i915#4817]) +1 other test incomplete
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk8/igt@i915_suspend@sysfs-reader.html

  * igt@intel_hwmon@hwmon-write:
    - shard-rkl:          NOTRUN -> [SKIP][104] ([i915#7707])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg1:          NOTRUN -> [SKIP][105] ([i915#4215])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#4212])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#4215] / [i915#5190])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-2/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-rkl:          NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#6228])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html
    - shard-mtlp:         NOTRUN -> [SKIP][110] ([i915#6228])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-tglu-1:       NOTRUN -> [SKIP][113] ([i915#5286])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-tglu:         NOTRUN -> [SKIP][115] ([i915#5286])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#3638]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#3638]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-mtlp:         NOTRUN -> [SKIP][118] +15 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +12 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#4538]) +6 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#6095]) +61 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#6095]) +35 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +60 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][125] ([i915#12313])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][126] ([i915#12313])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#12313])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][129] ([i915#12805])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][130] ([i915#12805])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][131] ([i915#6095]) +44 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#6095]) +4 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][133] ([i915#6095]) +34 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][134] ([i915#6095]) +9 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][136] +204 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_chamelium_audio@hdmi-audio:
    - shard-dg2:          NOTRUN -> [SKIP][137] ([i915#7828]) +10 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_chamelium_audio@hdmi-audio.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#7828]) +8 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-tglu-1:       NOTRUN -> [SKIP][139] ([i915#7828])
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-tglu:         NOTRUN -> [SKIP][140] ([i915#7828]) +4 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-fast.html
    - shard-mtlp:         NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          NOTRUN -> [SKIP][142] ([i915#7828]) +8 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#3299])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-rkl:          NOTRUN -> [SKIP][144] ([i915#3116])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#3116] / [i915#3299])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#3299])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html
    - shard-mtlp:         NOTRUN -> [SKIP][147] ([i915#3299])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#9424])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@kms_content_protection@lic-type-1.html
    - shard-rkl:          NOTRUN -> [SKIP][149] ([i915#9424])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
    - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#9424])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_content_protection@lic-type-1.html
    - shard-tglu:         NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-4/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#7118])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_content_protection@srm.html
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#7118])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_content_protection@srm.html
    - shard-dg1:          NOTRUN -> [SKIP][154] ([i915#7116])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_content_protection@srm.html
    - shard-tglu:         NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_content_protection@srm.html
    - shard-mtlp:         NOTRUN -> [SKIP][156] ([i915#6944])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#13049]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#13049]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#13049]) +2 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-tglu:         NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-2/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#3555]) +5 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
    - shard-tglu-1:       NOTRUN -> [SKIP][163] ([i915#3555])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#8814]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-snb:          NOTRUN -> [ABORT][165] ([i915#13242]) +5 other tests abort
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb4/igt@kms_cursor_crc@cursor-suspend.html
    - shard-tglu:         NOTRUN -> [ABORT][166] ([i915#10159] / [i915#13218])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-3/igt@kms_cursor_crc@cursor-suspend.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][167] ([i915#12358] / [i915#7882])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk1/igt@kms_cursor_crc@cursor-suspend.html
    - shard-mtlp:         NOTRUN -> [ABORT][168] ([i915#10159] / [i915#13218])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][169] ([i915#12358])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-dg1:          NOTRUN -> [SKIP][172] +35 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#9809]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#8588])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#8812])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
    - shard-dg2:          NOTRUN -> [SKIP][176] ([i915#8812])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg2:          NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html
    - shard-rkl:          NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][180] ([i915#9878])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-rkl:          NOTRUN -> [SKIP][181] ([i915#1839])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
    - shard-dg1:          NOTRUN -> [SKIP][182] ([i915#1839])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
    - shard-tglu:         NOTRUN -> [SKIP][183] ([i915#1839])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-7/igt@kms_feature_discovery@display-4x.html
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#1839])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_feature_discovery@display-4x.html
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#1839])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_feature_discovery@display-4x.html

  * igt@kms_fence_pin_leak:
    - shard-dg1:          NOTRUN -> [SKIP][186] ([i915#4881])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_fence_pin_leak.html
    - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#4881])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@kms_fence_pin_leak.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#9934]) +6 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#9934]) +9 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#3637]) +5 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-tglu:         NOTRUN -> [SKIP][191] ([i915#3637]) +4 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][192] ([i915#3637]) +1 other test skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][193] ([i915#9934]) +6 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672] / [i915#3555])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672] / [i915#3555])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][196] ([i915#2672] / [i915#8813])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#2672]) +1 other test skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
    - shard-rkl:          NOTRUN -> [SKIP][198] ([i915#2672]) +1 other test skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
    - shard-tglu:         NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555]) +1 other test skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
    - shard-tglu-1:       NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) +1 other test skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8810]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
    - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#5274])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#5274])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-tglu-1:       NOTRUN -> [SKIP][211] +16 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][212] ([i915#3458]) +13 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#8708]) +7 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][214] ([i915#5354]) +31 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#10055])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-mtlp:         NOTRUN -> [SKIP][216] ([i915#10055])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-tglu:         NOTRUN -> [SKIP][217] +40 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][218] ([i915#3023]) +19 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][219] ([i915#3458]) +12 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][220] ([i915#1825]) +17 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][221] ([i915#8708]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#1825]) +32 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#8708]) +4 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][224] ([i915#6118])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2:          NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@kms_hdr@invalid-hdr.html
    - shard-tglu-1:       NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-dg1:          NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_hdr@static-swap.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][228] ([i915#12169])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][229] ([i915#10647]) +1 other test fail
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#12247] / [i915#9423])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#12247]) +11 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
    - shard-dg1:          NOTRUN -> [SKIP][232] ([i915#12247]) +8 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#6953])
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
    - shard-dg2:          NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953] / [i915#9423])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
    - shard-dg1:          NOTRUN -> [SKIP][235] ([i915#12247] / [i915#6953])
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-dg2:          NOTRUN -> [SKIP][236] ([i915#12247] / [i915#3555] / [i915#9423])
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-mtlp:         NOTRUN -> [SKIP][237] ([i915#12247] / [i915#6953])
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][238] ([i915#12247]) +7 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][239] ([i915#5354])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_pm_backlight@basic-brightness.html
    - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#5354])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-rkl:          NOTRUN -> [SKIP][241] ([i915#8430])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#8430])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
    - shard-tglu:         NOTRUN -> [SKIP][243] ([i915#8430])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
    - shard-mtlp:         NOTRUN -> [SKIP][244] ([i915#8430])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html
    - shard-dg2:          NOTRUN -> [SKIP][245] ([i915#8430])
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#9519])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#9519]) +2 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#9519]) +2 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          NOTRUN -> [SKIP][249] ([i915#6524])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#9808]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#12316]) +5 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-dg1:          NOTRUN -> [SKIP][252] ([i915#11520]) +9 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#11520]) +2 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-tglu:         NOTRUN -> [SKIP][254] ([i915#11520]) +3 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
    - shard-glk:          NOTRUN -> [SKIP][255] ([i915#11520]) +5 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-dg2:          NOTRUN -> [SKIP][256] ([i915#11520]) +6 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#11520]) +6 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-snb:          NOTRUN -> [SKIP][258] ([i915#11520]) +9 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-rkl:          NOTRUN -> [SKIP][259] ([i915#9683])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][260] ([i915#9688]) +10 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-rkl:          NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +19 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
    - shard-tglu-1:       NOTRUN -> [SKIP][262] ([i915#9732]) +3 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@psr-cursor-render:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +17 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-6/igt@kms_psr@psr-cursor-render.html

  * igt@kms_psr@psr-sprite-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#1072] / [i915#9732]) +14 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html

  * igt@kms_psr@psr2-primary-render:
    - shard-tglu:         NOTRUN -> [SKIP][265] ([i915#9732]) +10 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-10/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-mtlp:         NOTRUN -> [SKIP][266] ([i915#12755]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][267] ([i915#12755]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#12755] / [i915#5190]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#3555]) +2 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][270] ([i915#3555]) +5 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#3555]) +4 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu-1:       NOTRUN -> [SKIP][272] ([i915#8623])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
    - shard-glk:          NOTRUN -> [FAIL][273] ([i915#10959])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#8623])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][275] ([i915#12276]) +1 other test incomplete
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [DMESG-FAIL][276] ([i915#12964]) +2 other tests dmesg-fail
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_vrr@flipline:
    - shard-mtlp:         NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8808]) +2 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-4/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#2437] / [i915#9412])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
    - shard-tglu:         NOTRUN -> [SKIP][279] ([i915#2437] / [i915#9412])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
    - shard-glk:          NOTRUN -> [SKIP][280] ([i915#2437])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
    - shard-mtlp:         NOTRUN -> [SKIP][281] ([i915#2437] / [i915#9412])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2:          NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
    - shard-dg1:          NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-tglu-1:       NOTRUN -> [SKIP][284] ([i915#2437])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@perf_pmu@busy-double-start:
    - shard-tglu:         NOTRUN -> [ABORT][285] ([i915#13218]) +27 other tests abort
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-4/igt@perf_pmu@busy-double-start.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-mtlp:         NOTRUN -> [FAIL][286] ([i915#4349])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          NOTRUN -> [FAIL][287] ([i915#4349]) +3 other tests fail
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html

  * igt@perf_pmu@busy-idle-no-semaphores:
    - shard-mtlp:         NOTRUN -> [ABORT][288] ([i915#13218]) +28 other tests abort
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@perf_pmu@busy-idle-no-semaphores.html

  * igt@perf_pmu@busy-idle-no-semaphores@rcs0:
    - shard-glk:          NOTRUN -> [ABORT][289] ([i915#13218]) +21 other tests abort
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-glk3/igt@perf_pmu@busy-idle-no-semaphores@rcs0.html

  * igt@perf_pmu@module-unload:
    - shard-dg1:          NOTRUN -> [ABORT][290] ([i915#13218]) +24 other tests abort
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-13/igt@perf_pmu@module-unload.html
    - shard-dg2:          NOTRUN -> [FAIL][291] ([i915#11823])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-7/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@multi-client@rcs0:
    - shard-snb:          NOTRUN -> [ABORT][292] ([i915#13218]) +12 other tests abort
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-snb2/igt@perf_pmu@multi-client@rcs0.html

  * igt@perf_pmu@semaphore-wait-idle@rcs0:
    - shard-dg2:          NOTRUN -> [ABORT][293] ([i915#13218]) +23 other tests abort
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-11/igt@perf_pmu@semaphore-wait-idle@rcs0.html
    - shard-tglu-1:       NOTRUN -> [ABORT][294] ([i915#13218]) +2 other tests abort
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-1/igt@perf_pmu@semaphore-wait-idle@rcs0.html

  * igt@prime_mmap@test_aperture_limit:
    - shard-dg2:          NOTRUN -> [WARN][295] ([i915#9351])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html

  * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
    - shard-dg2:          NOTRUN -> [CRASH][296] ([i915#9351])
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][297] ([i915#3291] / [i915#3708])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-10/igt@prime_vgem@basic-fence-read.html
    - shard-rkl:          NOTRUN -> [SKIP][298] ([i915#3291] / [i915#3708])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
    - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#3708])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          NOTRUN -> [SKIP][300] ([i915#9917]) +1 other test skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html

  * igt@sriov_basic@bind-unbind-vf@vf-4:
    - shard-tglu:         NOTRUN -> [FAIL][301] ([i915#12910]) +9 other tests fail
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html

  * igt@sriov_basic@bind-unbind-vf@vf-5:
    - shard-mtlp:         NOTRUN -> [FAIL][302] ([i915#12910]) +9 other tests fail
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf@vf-5.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-dg1:          NOTRUN -> [SKIP][303] ([i915#9917]) +1 other test skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each.html
    - shard-dg2:          NOTRUN -> [SKIP][304] ([i915#9917])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-rkl:          NOTRUN -> [SKIP][305] +24 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@kms_sequence@get-forked-busy:
    - shard-rkl:          [DMESG-WARN][306] ([i915#12964]) -> [PASS][307] +3 other tests pass
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15797/shard-rkl-2/igt@kms_sequence@get-forked-busy.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-5/igt@kms_sequence@get-forked-busy.html

  
#### Warnings ####

  * igt@gem_pxp@display-protected-crc:
    - shard-rkl:          [TIMEOUT][308] ([i915#12917] / [i915#12964]) -> [SKIP][309] ([i915#4270])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15797/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12256/shard-rkl-3/igt@gem_pxp@display-protected-crc.html

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

  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
  [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
  [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#13045]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13045
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
  [i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
  [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
  [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
  [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8139 -> IGTPW_12256
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_15797: 777ecc16b887cadb4012cc323be01c46a23fea9f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12256: 12256
  IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ 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_12256/index.html

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

* ✗ Xe.CI.Full: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
                   ` (2 preceding siblings ...)
  2024-12-06  3:06 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06  4:06 ` Patchwork
  2024-12-06 12:15 ` [PATCH i-g-t] " Matthew Auld
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-06  4:06 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
URL   : https://patchwork.freedesktop.org/series/142167/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8139_full -> XEIGTPW_12256_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_12256_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_12256_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][1] +6 other tests dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-dp-2.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][2] +5 other tests abort
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html

  * igt@xe_ccs@block-copy-compressed-inc-dimension@tile64-compressed-compfmt0-vram01-vram01-391x391:
    - shard-bmg:          [PASS][3] -> [DMESG-WARN][4] +27 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_ccs@block-copy-compressed-inc-dimension@tile64-compressed-compfmt0-vram01-vram01-391x391.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_ccs@block-copy-compressed-inc-dimension@tile64-compressed-compfmt0-vram01-vram01-391x391.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          NOTRUN -> [ABORT][5]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getclient:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][6] ([Intel XE#1727])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@core_getclient.html

  * igt@core_hotunplug@hotunbind-rebind:
    - shard-bmg:          [PASS][7] -> [DMESG-WARN][8] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1125])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#3157])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#873])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_async_flips@invalid-async-flip.html
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#873])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#664])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#3279])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2370])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][16] ([Intel XE#1727] / [Intel XE#3225])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#1407]) +9 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#3658])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2327]) +7 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [PASS][20] -> [DMESG-FAIL][21] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#1467])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#1124]) +17 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#1124]) +21 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#610])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#2191])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#1512])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#367]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#2669]) +7 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#3432]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#3432]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#2887]) +22 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2887]) +23 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#1152]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_cdclk@plane-scaling.html
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2724])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#373]) +20 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2252]) +14 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#307])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2320]) +7 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2321])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#1424]) +8 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#2321]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-bmg:          [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#309]) +8 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][52] ([Intel XE#1727] / [Intel XE#3226] / [Intel XE#3468])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][53] ([Intel XE#877])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2291]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#323])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2286])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [FAIL][59] ([Intel XE#1695])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#776])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-2x:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#702])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2373]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2374])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#1421]) +11 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2316]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][68] -> [FAIL][69] ([Intel XE#2882])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][70] -> [FAIL][71] ([Intel XE#3640])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html

  * igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3:
    - shard-bmg:          [PASS][72] -> [DMESG-WARN][73] ([Intel XE#3468]) +71 other tests dmesg-warn
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-bmg:          NOTRUN -> [FAIL][74] ([Intel XE#2882]) +1 other test fail
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][75] ([Intel XE#3468]) +59 other tests dmesg-warn
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1401]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#1397]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          [PASS][81] -> [INCOMPLETE][82] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2293]) +6 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#352]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2311]) +29 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#2312]) +17 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [FAIL][89] ([Intel XE#2333]) +12 other tests fail
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][90] ([Intel XE#3468]) +11 other tests dmesg-fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#651]) +15 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2350])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2313]) +35 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#656]) +70 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#605])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_getfb@getfb-reject-ccs.html
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2502])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_getfb@getfb2-accept-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#2340])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#2340])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_getfb@getfb2-accept-ccs.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#3374] / [Intel XE#3544])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#3544])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#1503]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#346])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#346])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#2934])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#2934])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#2927])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#2486])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][108] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][110] ([Intel XE#1727] / [Intel XE#3468])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html

  * igt@kms_plane_alpha_blend@constant-alpha-min:
    - shard-bmg:          [PASS][111] -> [DMESG-FAIL][112] ([Intel XE#3468]) +19 other tests dmesg-fail
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-min.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-min.html

  * igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][113] ([Intel XE#2705] / [Intel XE#3468])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#599])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#2493]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#2493]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#2763]) +29 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#2763]) +27 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#870])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#1131])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2392])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-bmg:          NOTRUN -> [FAIL][122] ([Intel XE#1430])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          [PASS][125] -> [INCOMPLETE][126] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_prop_blob@blob-prop-lifetime:
    - shard-bmg:          [PASS][127] -> [DMESG-WARN][128] ([Intel XE#2705]) +1 other test dmesg-warn
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_prop_blob@blob-prop-lifetime.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_prop_blob@blob-prop-lifetime.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#2893]) +5 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#1489]) +14 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#1128])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr2-suspend:
    - shard-lnl:          NOTRUN -> [ABORT][132] ([Intel XE#3673]) +7 other tests abort
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_psr@fbc-psr2-suspend.html

  * igt@kms_psr@pr-no-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][133] ([Intel XE#1406]) +11 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_psr@pr-no-drrs.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][134] ([Intel XE#2234] / [Intel XE#2850]) +21 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2234])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#1127]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#2330])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#3414]) +3 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][140] -> [SKIP][141] ([Intel XE#1435])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#1435]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#362])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][144] ([Intel XE#1499]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@lobf:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#1499])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@kms_vrr@lobf.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#756]) +1 other test skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-lnl:          NOTRUN -> [SKIP][147] ([Intel XE#756]) +1 other test skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@kms_writeback@writeback-pixel-formats.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-lnl:          NOTRUN -> [SKIP][148] ([Intel XE#1091] / [Intel XE#2849])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
    - shard-bmg:          NOTRUN -> [SKIP][149] ([Intel XE#1091] / [Intel XE#2849])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][150] ([Intel XE#1062])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_create@create-big-vram.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#2504])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@attach-debug-metadata:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#2905]) +15 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_eudebug@attach-debug-metadata.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2905]) +13 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_evict@evict-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][154] ([Intel XE#688]) +17 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_evict@evict-large-multi-vm.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-bmg:          NOTRUN -> [TIMEOUT][155] ([Intel XE#1473])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][156] ([Intel XE#2322]) +11 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-once-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][157] ([Intel XE#1392]) +22 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind:
    - shard-bmg:          [PASS][158] -> [DMESG-WARN][159] ([Intel XE#1727]) +5 other tests dmesg-warn
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_fault_mode@twice-userptr-rebind.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_exec_fault_mode@twice-userptr-rebind.html

  * igt@xe_exec_threads@threads-cm-shared-vm-basic:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][160] ([Intel XE#1727])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_exec_threads@threads-cm-shared-vm-basic.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-rebind:
    - shard-bmg:          [PASS][161] -> [DMESG-WARN][162] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_threads@threads-mixed-shared-vm-rebind.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_exec_threads@threads-mixed-shared-vm-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][163] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-bmg:          [PASS][164] -> [DMESG-WARN][165] ([Intel XE#1727] / [Intel XE#3343])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#2229]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  * igt@xe_live_ktest@xe_dma_buf:
    - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#1192]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_live_ktest@xe_mocs:
    - shard-bmg:          [PASS][168] -> [SKIP][169] ([Intel XE#1192])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html

  * igt@xe_mmap@small-bar:
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#512])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_mmap@small-bar.html
    - shard-bmg:          NOTRUN -> [SKIP][171] ([Intel XE#586])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196]) -> ([PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [SKIP][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222]) ([Intel XE#378])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-3/igt@xe_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-4/igt@xe_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-5/igt@xe_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-8/igt@xe_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@xe_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@xe_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_module_load@load.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_module_load@load.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_module_load@load.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_module_load@load.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_module_load@load.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_module_load@load.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@xe_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@xe_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-8/igt@xe_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-7/igt@xe_module_load@load.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [PASS][223] -> [DMESG-WARN][224] ([Intel XE#3467]) +1 other test dmesg-warn
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_module_load@reload-no-display.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][225] ([Intel XE#2248])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-bmg:          NOTRUN -> [SKIP][226] ([Intel XE#2248])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][227] ([Intel XE#2245])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][228] ([Intel XE#2284])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][229] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-basic:
    - shard-bmg:          [PASS][230] -> [DMESG-WARN][231] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@d3hot-basic.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_pm@d3hot-basic.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-lnl:          NOTRUN -> [ABORT][232] ([Intel XE#1358] / [Intel XE#1616])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s3-basic-exec:
    - shard-bmg:          [PASS][233] -> [DMESG-WARN][234] ([Intel XE#3468] / [Intel XE#569])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-basic-exec.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-bmg:          [PASS][235] -> [DMESG-WARN][236] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][237] ([Intel XE#584]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][238] ([Intel XE#944]) +3 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#944]) +4 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_tlb@basic-tlb:
    - shard-bmg:          NOTRUN -> [CRASH][240] ([Intel XE#3212])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-1/igt@xe_tlb@basic-tlb.html
    - shard-lnl:          NOTRUN -> [CRASH][241] ([Intel XE#3212])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-3/igt@xe_tlb@basic-tlb.html

  * igt@xe_wedged@basic-wedged:
    - shard-bmg:          [PASS][242] -> [DMESG-WARN][243] ([Intel XE#2919] / [Intel XE#3468])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@xe_wedged@basic-wedged.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@xe_wedged@basic-wedged.html

  
#### Possible fixes ####

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [DMESG-FAIL][244] ([Intel XE#3468]) -> [PASS][245] +7 other tests pass
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][246] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][247] +1 other test pass
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
    - shard-bmg:          [INCOMPLETE][248] -> [PASS][249]
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][250] ([Intel XE#2291]) -> [PASS][251] +2 other tests pass
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][252] ([Intel XE#3321]) -> [PASS][253]
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][254] ([Intel XE#3640]) -> [PASS][255]
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [ABORT][256] ([Intel XE#3468]) -> [PASS][257] +1 other test pass
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
    - shard-bmg:          [DMESG-FAIL][258] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][259] +2 other tests pass
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][260] ([Intel XE#2316]) -> [PASS][261] +5 other tests pass
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][262] ([Intel XE#2882]) -> [PASS][263]
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
    - shard-bmg:          [FAIL][264] ([Intel XE#3674]) -> [PASS][265]
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][266] ([Intel XE#1503]) -> [PASS][267]
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_hdr@static-swap.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][268] ([Intel XE#3012]) -> [PASS][269]
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][270] ([Intel XE#2571]) -> [PASS][271]
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_pm_rpm@legacy-planes-dpms@plane-59:
    - shard-bmg:          [DMESG-WARN][272] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][273] +5 other tests pass
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [FAIL][274] ([Intel XE#2883]) -> [PASS][275] +1 other test pass
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_setmode@basic.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_setmode@basic.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-bmg:          [FAIL][276] -> [PASS][277] +1 other test pass
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

  * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind:
    - shard-bmg:          [DMESG-WARN][278] -> [PASS][279] +2 other tests pass
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html

  * igt@xe_exec_threads@threads-bal-shared-vm-userptr:
    - shard-bmg:          [DMESG-WARN][280] ([Intel XE#2705]) -> [PASS][281]
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@xe_exec_threads@threads-bal-shared-vm-userptr.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind:
    - shard-bmg:          [DMESG-WARN][282] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][283]
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_exec_threads@threads-hang-userptr-rebind.html

  * igt@xe_exec_threads@threads-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][284] ([Intel XE#1727]) -> [PASS][285] +3 other tests pass
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_exec_threads@threads-userptr-invalidate.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_exec_threads@threads-userptr-invalidate.html

  * igt@xe_live_ktest@xe_migrate:
    - shard-bmg:          [SKIP][286] ([Intel XE#1192]) -> [PASS][287]
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@xe_live_ktest@xe_migrate.html

  * igt@xe_module_load@reload:
    - shard-bmg:          [DMESG-WARN][288] ([Intel XE#3467]) -> [PASS][289]
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_module_load@reload.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_module_load@reload.html

  * igt@xe_pm@s3-exec-after:
    - shard-bmg:          [DMESG-WARN][290] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][291]
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_pm@s3-exec-after.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_pm@s3-exec-after.html

  * igt@xe_pm_residency@idle-residency-on-exec:
    - shard-lnl:          [FAIL][292] ([Intel XE#2564]) -> [PASS][293] +1 other test pass
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-lnl-7/igt@xe_pm_residency@idle-residency-on-exec.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-lnl-4/igt@xe_pm_residency@idle-residency-on-exec.html

  * igt@xe_vm@mixed-userptr-misaligned-binds-1611661312:
    - shard-bmg:          [DMESG-WARN][294] ([Intel XE#3468]) -> [PASS][295] +22 other tests pass
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_vm@mixed-userptr-misaligned-binds-1611661312.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [DMESG-FAIL][296] ([Intel XE#3468]) -> [DMESG-WARN][297] ([Intel XE#3468])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          [FAIL][298] ([Intel XE#1178]) -> [INCOMPLETE][299] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-3/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-bmg:          [SKIP][300] ([Intel XE#2316]) -> [DMESG-WARN][301] ([Intel XE#3468])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [DMESG-WARN][302] ([Intel XE#3468]) -> [SKIP][303] ([Intel XE#2316])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [FAIL][304] ([Intel XE#2882]) -> [SKIP][305] ([Intel XE#2316])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][306] ([Intel XE#2311]) -> [SKIP][307] ([Intel XE#2312]) +6 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [DMESG-FAIL][308] ([Intel XE#3468]) -> [FAIL][309] ([Intel XE#2333]) +4 other tests fail
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [FAIL][310] ([Intel XE#2333]) -> [DMESG-FAIL][311] ([Intel XE#3468]) +1 other test dmesg-fail
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [FAIL][312] ([Intel XE#2333]) -> [SKIP][313] ([Intel XE#2312]) +5 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][314] ([Intel XE#2312]) -> [DMESG-FAIL][315] ([Intel XE#3468]) +2 other tests dmesg-fail
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][316] ([Intel XE#2312]) -> [FAIL][317] ([Intel XE#2333]) +2 other tests fail
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [DMESG-FAIL][318] ([Intel XE#3468]) -> [SKIP][319] ([Intel XE#2312])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2311]) +14 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][322] ([Intel XE#2312]) -> [SKIP][323] ([Intel XE#2313]) +9 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][324] ([Intel XE#2313]) -> [SKIP][325] ([Intel XE#2312]) +10 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][326] ([Intel XE#1729]) -> [SKIP][327] ([Intel XE#2426])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-bmg:          [TIMEOUT][328] ([Intel XE#1473]) -> [INCOMPLETE][329] ([Intel XE#1473] / [Intel XE#3468])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-bmg:          [DMESG-FAIL][330] -> [INCOMPLETE][331] ([Intel XE#1473])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-7/igt@xe_evict@evict-mixed-threads-large.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
    - shard-bmg:          [DMESG-WARN][332] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][333] ([Intel XE#3467]) +1 other test dmesg-warn
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html

  * igt@xe_module_load@many-reload:
    - shard-bmg:          [FAIL][334] ([Intel XE#3625]) -> [DMESG-WARN][335] ([Intel XE#3467])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-4/igt@xe_module_load@many-reload.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-8/igt@xe_module_load@many-reload.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-bmg:          [ABORT][336] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][337] ([Intel XE#3673])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s2idle-exec-after.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-2/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-bmg:          [ABORT][338] ([Intel XE#1616]) -> [ABORT][339] ([Intel XE#1616] / [Intel XE#3468]) +1 other test abort
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s2idle-vm-bind-userptr:
    - shard-bmg:          [ABORT][340] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][341] ([Intel XE#1616])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-userptr.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-bmg:          [DMESG-WARN][342] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [DMESG-WARN][343] ([Intel XE#2280] / [Intel XE#3468])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8139/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html

  
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
  [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2564
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
  [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625
  [Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
  [Intel XE#3674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3674
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8139 -> IGTPW_12256
  * Linux: xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7 -> xe-2329-777ecc16b887cadb4012cc323be01c46a23fea9f

  IGTPW_12256: 12256
  IGT_8139: b0c59bb94e6c990589eb6825c1436ce412804dae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2328-1b7746f770882ce40dacae683e8e65657c40c2b7: 1b7746f770882ce40dacae683e8e65657c40c2b7
  xe-2329-777ecc16b887cadb4012cc323be01c46a23fea9f: 777ecc16b887cadb4012cc323be01c46a23fea9f

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12256/index.html

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

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

* Re: [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
                   ` (3 preceding siblings ...)
  2024-12-06  4:06 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-06 12:15 ` Matthew Auld
  2024-12-10 18:23 ` ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Matthew Auld @ 2024-12-06 12:15 UTC (permalink / raw)
  To: Dominik Grzegorzek, igt-dev; +Cc: Zbigniew Kempczyński

On 05/12/2024 10:41, Dominik Grzegorzek wrote:
> Some tests (i.e. xe_eudebug_online, xe_exec_sip) are mapping intel_buf.
> If the backing storage is nvram, any access to mmaped buffer may
> cause segmentation fault. Set DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM
> by default as intel_bufs might be mapped and this is not harmful.

There is the downside that all objects will now be limited to BAR size 
when using this API. i.e you might have 16G VRAM but only 256M BAR. But 
I guess user can always pass in their own handle if they need something 
more special, so NEEDS_VISIBLE_VRAM is probably a sensible default and 
most tests probably don't care about the limit? Ideally the API would 
have an option to hint that CPU access is something they actually need.

Also: https://patchwork.freedesktop.org/series/141710/

> 
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>

> ---
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> 
>   lib/intel_bufops.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
> index 619222019..49b91a171 100644
> --- a/lib/intel_bufops.c
> +++ b/lib/intel_bufops.c
> @@ -1021,7 +1021,8 @@ static void __intel_buf_init(struct buf_ops *bops,
>   				cpu_caching = DRM_XE_GEM_CPU_CACHING_WC;
>   
>   			bo_size = ALIGN(bo_size, xe_get_default_alignment(bops->fd));
> -			buf->handle = xe_bo_create_caching(bops->fd, 0, bo_size, region, 0,
> +			buf->handle = xe_bo_create_caching(bops->fd, 0, bo_size, region,
> +							   DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
>   							   cpu_caching);
>   		}
>   	}


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

* ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
                   ` (4 preceding siblings ...)
  2024-12-06 12:15 ` [PATCH i-g-t] " Matthew Auld
@ 2024-12-10 18:23 ` Patchwork
  2024-12-11  9:24   ` Grzegorzek, Dominik
  2024-12-10 20:12 ` ✓ Xe.CI.BAT: success " Patchwork
  2024-12-10 22:22 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-12-10 18:23 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
URL   : https://patchwork.freedesktop.org/series/142167/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8147 -> IGTPW_12285
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_12285 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_12285, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_12285/index.html

Participating hosts (45 -> 44)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1:
    - fi-kbl-7567u:       [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-mtlp-8/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@kms_flip@basic-flip-vs-modeset:
    - fi-kbl-7567u:       [PASS][5] -> [DMESG-WARN][6] ([i915#12926])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - fi-kbl-7567u:       [PASS][7] -> [DMESG-WARN][8] ([i915#12920])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-twl-1:          [ABORT][9] ([i915#12435] / [i915#12919]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-twl-1/igt@i915_selftest@live.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-twl-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@requests:
    - bat-twl-1:          [ABORT][11] ([i915#12919]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-twl-1/igt@i915_selftest@live@requests.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-twl-1/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  * igt@kms_chamelium_edid@dp-edid-read:
    - bat-dg2-13:         [FAIL][15] ([i915#12505]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html

  
#### Warnings ####

  * igt@i915_module_load@reload:
    - fi-cfl-8109u:       [DMESG-WARN][17] ([i915#11621] / [i915#1982]) -> [DMESG-WARN][18] ([i915#11621])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-cfl-8109u/igt@i915_module_load@reload.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-cfl-8109u/igt@i915_module_load@reload.html

  
  [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
  [i915#12505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12505
  [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
  [i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
  [i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8147 -> IGTPW_12285

  CI-20190529: 20190529
  CI_DRM_15814: 6966a52cb5531bf6cc785fadba160a71cd31e7aa @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12285: 87df147a66c6b32674f97a008a6238915a7b0849 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

* ✓ Xe.CI.BAT: success for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
                   ` (5 preceding siblings ...)
  2024-12-10 18:23 ` ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2) Patchwork
@ 2024-12-10 20:12 ` Patchwork
  2024-12-10 22:22 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-10 20:12 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
URL   : https://patchwork.freedesktop.org/series/142167/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8147_BAT -> XEIGTPW_12285_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-dpms@a-edp1:
    - bat-lnl-1:          [DMESG-WARN][1] ([Intel XE#3729]) -> [PASS][2] +1 other test pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html

  
  [Intel XE#3729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3729


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

  * IGT: IGT_8147 -> IGTPW_12285
  * Linux: xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f -> xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa

  IGTPW_12285: 87df147a66c6b32674f97a008a6238915a7b0849 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f: afdbad14a16d9f44489fe37a05e93b24581bdc4f
  xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa: 6966a52cb5531bf6cc785fadba160a71cd31e7aa

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/index.html

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

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

* ✗ Xe.CI.Full: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
  2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
                   ` (6 preceding siblings ...)
  2024-12-10 20:12 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-12-10 22:22 ` Patchwork
  2024-12-11  9:26   ` Grzegorzek, Dominik
  7 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-12-10 22:22 UTC (permalink / raw)
  To: Grzegorzek, Dominik; +Cc: igt-dev

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

== Series Details ==

Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
URL   : https://patchwork.freedesktop.org/series/142167/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8147_full -> XEIGTPW_12285_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_12285_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_12285_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html

  * igt@kms_lease@lease-revoke@pipe-c-dp-2:
    - shard-bmg:          [PASS][3] -> [DMESG-WARN][4] +3 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_lease@lease-revoke@pipe-c-dp-2.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_lease@lease-revoke@pipe-c-dp-2.html

  * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
    - shard-bmg:          NOTRUN -> [FAIL][5]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html

  * igt@xe_exec_compute_mode@many-execqueues-userptr-rebind:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][6]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_exec_compute_mode@many-execqueues-userptr-rebind.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [DMESG-FAIL][7] ([Intel XE#3468]) -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1125])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@unused-handle:
    - shard-bmg:          [PASS][10] -> [DMESG-WARN][11] ([Intel XE#3468]) +51 other tests dmesg-warn
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_addfb_basic@unused-handle.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_addfb_basic@unused-handle.html

  * igt@kms_async_flips@crc-atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][12] ([Intel XE#3781]) +2 other tests incomplete
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_async_flips@crc-atomic@pipe-a-dp-2.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#873])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#3768])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#664])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_async_flips@test-cursor.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#1407]) +8 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2327]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          [PASS][18] -> [DMESG-FAIL][19] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#1124]) +17 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#1124]) +15 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#1467])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2191]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#1512]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#367]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#367]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#2887]) +24 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3468])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#3433]) +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3468])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#3432]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#3432]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2887]) +20 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +18 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2325]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#306]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2252]) +12 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#373]) +13 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#307])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2390]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][43] ([Intel XE#1178])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_content_protection@lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2341]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#3278]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_content_protection@uevent.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][46] ([Intel XE#1188])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#2321]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2321]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#1424]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2320]) +4 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2:
    - shard-bmg:          [PASS][51] -> [DMESG-FAIL][52] ([Intel XE#2705] / [Intel XE#3468])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2291]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#309]) +6 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#323]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2286]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +7 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#1340])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#3070])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2244]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [FAIL][63] ([Intel XE#1695])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#703])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2373])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
    - shard-bmg:          NOTRUN -> [FAIL][66] ([Intel XE#3321]) +3 other tests fail
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#1421]) +9 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
    - shard-bmg:          NOTRUN -> [DMESG-WARN][68] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [PASS][69] -> [SKIP][70] ([Intel XE#2316]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#2316])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          NOTRUN -> [FAIL][72] ([Intel XE#2882])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][73] ([Intel XE#3468]) +40 other tests dmesg-warn
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          [PASS][74] -> [DMESG-WARN][75] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][76] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1401]) +5 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#1397])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2293]) +6 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#352])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2311]) +32 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][85] ([Intel XE#3468]) +3 other tests dmesg-fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#2312]) +20 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [FAIL][87] ([Intel XE#2333]) +14 other tests fail
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1469])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2352])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#651]) +26 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2313]) +32 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-lnl:          NOTRUN -> [ABORT][92] ([Intel XE#3673]) +10 other tests abort
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#656]) +74 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#605])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#1470] / [Intel XE#2853])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#3374] / [Intel XE#3544])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#3544])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#1450] / [Intel XE#2568])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#1450]) +2 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#2934])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#2927])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_lease@lease-revoke:
    - shard-bmg:          [PASS][102] -> [DMESG-WARN][103] ([Intel XE#2705] / [Intel XE#3468])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_lease@lease-revoke.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_lease@lease-revoke.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#2501])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#356])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
    - shard-bmg:          NOTRUN -> [DMESG-FAIL][106] ([Intel XE#2705] / [Intel XE#3468])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html

  * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][107] ([Intel XE#2705] / [Intel XE#3468])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#3307])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#2763]) +15 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2763]) +4 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#870])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][112] -> [FAIL][113] ([Intel XE#718])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          NOTRUN -> [FAIL][114] ([Intel XE#1430])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          NOTRUN -> [FAIL][115] ([Intel XE#2029])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#836])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#1439] / [Intel XE#836])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#3141])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#1489]) +9 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#2893]) +8 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2234] / [Intel XE#2850]) +21 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@pr-cursor-plane-move:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#1406]) +8 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-bmg:          [PASS][123] -> [DMESG-FAIL][124] ([Intel XE#3468]) +12 other tests dmesg-fail
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#3414]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#3414])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#1127])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#2413]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic@pipe-a-edp-1:
    - shard-lnl:          [PASS][129] -> [FAIL][130] ([Intel XE#2883]) +1 other test fail
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_setmode@basic@pipe-a-edp-1.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#1435])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#1435]) +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-lnl:          NOTRUN -> [SKIP][133] ([Intel XE#330])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          NOTRUN -> [SKIP][134] ([Intel XE#2450])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2168])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#1499]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][137] -> [SKIP][138] ([Intel XE#1499])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_vrr@negative-basic.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_vrr@negative-basic.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#1499])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-bmg:          NOTRUN -> [SKIP][140] ([Intel XE#756])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#756])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          NOTRUN -> [SKIP][142] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#1091] / [Intel XE#2849])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#1062])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_create@create-big-vram.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][145] ([Intel XE#2905]) +15 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@exec-queue-placements:
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#2905]) +20 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_eudebug@exec-queue-placements.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-bmg:          NOTRUN -> [FAIL][147] ([Intel XE#2364])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          NOTRUN -> [TIMEOUT][148] ([Intel XE#1473])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-beng-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#688]) +13 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_evict@evict-beng-threads-large-multi-vm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][150] ([Intel XE#2322]) +12 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][151] ([Intel XE#1392]) +8 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
    - shard-bmg:          [PASS][152] -> [DMESG-WARN][153] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][154] ([Intel XE#3467] / [Intel XE#3468])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][155] ([Intel XE#2229]) +1 other test skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#2833])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
    - shard-bmg:          NOTRUN -> [SKIP][157] ([Intel XE#2833])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_oa@unprivileged-single-ctx-counters:
    - shard-lnl:          NOTRUN -> [SKIP][158] ([Intel XE#2248])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2236])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-basic:
    - shard-lnl:          NOTRUN -> [SKIP][160] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#2284])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s2idle-mocs:
    - shard-lnl:          NOTRUN -> [ABORT][162] ([Intel XE#3673] / [Intel XE#3766])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_pm@s2idle-mocs.html

  * igt@xe_pm@s3-basic-exec:
    - shard-bmg:          [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3468] / [Intel XE#569])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_pm@s3-basic-exec.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][165] ([Intel XE#584]) +2 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-bmg:          [PASS][166] -> [DMESG-WARN][167] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_pm@s3-vm-bind-unbind-all.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-basic-exec:
    - shard-lnl:          [PASS][168] -> [ABORT][169] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_pm@s4-basic-exec.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_pm@s4-basic-exec.html

  * igt@xe_query@multigpu-query-engines:
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#944]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          NOTRUN -> [SKIP][171] ([Intel XE#944]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#3342])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Possible fixes ####

  * igt@kms_atomic@test-only:
    - shard-bmg:          [SKIP][173] ([Intel XE#3007]) -> [PASS][174] +8 other tests pass
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_atomic@test-only.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_atomic@test-only.html

  * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3:
    - shard-bmg:          [DMESG-WARN][175] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][176] +2 other tests pass
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          [SKIP][177] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][178] +2 other tests pass
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [DMESG-FAIL][179] ([Intel XE#3468]) -> [PASS][180] +10 other tests pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][181] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][182]
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_color@deep-color:
    - shard-bmg:          [INCOMPLETE][183] -> [PASS][184] +1 other test pass
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_color@deep-color.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_color@deep-color.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][185] ([Intel XE#2291]) -> [PASS][186] +2 other tests pass
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][187] ([Intel XE#3070]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][189] ([Intel XE#2373]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][191] ([Intel XE#2882]) -> [PASS][192] +1 other test pass
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-bmg:          [SKIP][193] ([Intel XE#2316]) -> [PASS][194] +1 other test pass
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][195] ([Intel XE#3468]) -> [PASS][196] +69 other tests pass
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-bmg:          [DMESG-WARN][197] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][198] +1 other test pass
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-bmg:          [INCOMPLETE][199] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][200] +1 other test pass
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][201] ([Intel XE#1503]) -> [PASS][202]
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][203] ([Intel XE#3012]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-bmg:          [SKIP][205] ([Intel XE#2446]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_pm_rpm@cursor-dpms.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_pm_rpm@cursor-dpms.html

  * igt@xe_exec_basic@twice-userptr-invalidate:
    - shard-bmg:          [DMESG-WARN][207] -> [PASS][208]
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_exec_basic@twice-userptr-invalidate.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_exec_basic@twice-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
    - shard-bmg:          [DMESG-WARN][209] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][210]
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][211], [PASS][212], [PASS][213], [PASS][214], [SKIP][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236]) ([Intel XE#378]) -> ([PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-2/igt@xe_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [DMESG-WARN][262] ([Intel XE#3467]) -> [PASS][263] +2 other tests pass
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_module_load@reload-no-display.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_module_load@reload-no-display.html

  * igt@xe_pm@s3-vm-bind-userptr:
    - shard-bmg:          [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][265]
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_pm@s3-vm-bind-userptr.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html

  * igt@xe_pm@s4-mocs:
    - shard-lnl:          [ABORT][266] ([Intel XE#1794]) -> [PASS][267]
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-2/igt@xe_pm@s4-mocs.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_pm@s4-mocs.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          [DMESG-WARN][268] ([Intel XE#2280] / [Intel XE#3468]) -> [PASS][269]
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_query@query-invalid-extension:
    - shard-bmg:          [SKIP][270] ([Intel XE#1130]) -> [PASS][271] +19 other tests pass
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_query@query-invalid-extension.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_query@query-invalid-extension.html

  
#### Warnings ####

  * igt@kms_big_fb@x-tiled-16bpp-rotate-0:
    - shard-bmg:          [DMESG-WARN][272] ([Intel XE#3468]) -> [DMESG-FAIL][273] ([Intel XE#3468])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][275] ([Intel XE#2327])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][277] ([Intel XE#1124]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [SKIP][278] ([Intel XE#3007]) -> [SKIP][279] ([Intel XE#367])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
    - shard-bmg:          [SKIP][280] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][281] ([Intel XE#2887]) +1 other test skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-bmg:          [SKIP][282] ([Intel XE#3007]) -> [SKIP][283] ([Intel XE#2252])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-fast.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][284] ([Intel XE#1178]) -> [SKIP][285] ([Intel XE#2341]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_content_protection@legacy.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [SKIP][286] ([Intel XE#2341]) -> [FAIL][287] ([Intel XE#1178])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][288] ([Intel XE#2341]) -> [FAIL][289] ([Intel XE#1188])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_content_protection@uevent.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][290] ([Intel XE#3007]) -> [SKIP][291] ([Intel XE#2320]) +1 other test skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-bmg:          [SKIP][292] ([Intel XE#2291]) -> [DMESG-WARN][293] ([Intel XE#3468])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [DMESG-FAIL][294] ([Intel XE#3468]) -> [FAIL][295] ([Intel XE#2882])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [SKIP][296] ([Intel XE#2316]) -> [FAIL][297] ([Intel XE#2882])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][298] ([Intel XE#3468]) -> [FAIL][299] ([Intel XE#3321])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-bmg:          [DMESG-WARN][300] ([Intel XE#3468]) -> [SKIP][301] ([Intel XE#2316])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-bmg:          [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2316])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][304] ([Intel XE#2311]) -> [SKIP][305] ([Intel XE#2312]) +10 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [FAIL][306] ([Intel XE#2333]) -> [DMESG-FAIL][307] ([Intel XE#3468]) +2 other tests dmesg-fail
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][309] ([Intel XE#2333]) +1 other test fail
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [DMESG-FAIL][310] ([Intel XE#3468]) -> [FAIL][311] ([Intel XE#2333]) +2 other tests fail
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [DMESG-FAIL][312] ([Intel XE#3468]) -> [SKIP][313] ([Intel XE#2312])
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [INCOMPLETE][314] -> [FAIL][315] ([Intel XE#2333])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][316] ([Intel XE#2312]) -> [FAIL][317] ([Intel XE#2333]) +5 other tests fail
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [FAIL][318] ([Intel XE#2333]) -> [SKIP][319] ([Intel XE#2312]) +2 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [INCOMPLETE][320] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][321] ([Intel XE#2333])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][322] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][323] ([Intel XE#2311]) +2 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][324] ([Intel XE#2312]) -> [SKIP][325] ([Intel XE#2311]) +11 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][326] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][327] ([Intel XE#2312]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][328] ([Intel XE#2312]) -> [SKIP][329] ([Intel XE#2313]) +14 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][331] ([Intel XE#2313])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][332] ([Intel XE#2313]) -> [SKIP][333] ([Intel XE#2312]) +15 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [SKIP][334] ([Intel XE#3007]) -> [SKIP][335] ([Intel XE#1503])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][337] ([Intel XE#1489]) +1 other test skip
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          [SKIP][338] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][339] ([Intel XE#2387])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-basic:
    - shard-bmg:          [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][341] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr@psr-basic.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_psr@psr-basic.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          [SKIP][342] ([Intel XE#1130]) -> [SKIP][343] ([Intel XE#2905])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-extended.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-bmg:          [FAIL][344] ([Intel XE#1000]) -> [INCOMPLETE][345] ([Intel XE#1473] / [Intel XE#3468])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-bmg:          [FAIL][346] ([Intel XE#1000]) -> [TIMEOUT][347] ([Intel XE#1473] / [Intel XE#2472])
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_evict@evict-threads-large:
    - shard-bmg:          [TIMEOUT][348] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][349] ([Intel XE#1000])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_evict@evict-threads-large.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_evict@evict-threads-large.html

  * igt@xe_evict@evict-threads-large-multi-vm:
    - shard-bmg:          [SKIP][350] ([Intel XE#1130]) -> [DMESG-WARN][351] ([Intel XE#3468])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_evict@evict-threads-large-multi-vm.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_evict@evict-threads-large-multi-vm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
    - shard-bmg:          [SKIP][352] ([Intel XE#1130]) -> [SKIP][353] ([Intel XE#2322])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
    - shard-bmg:          [DMESG-WARN][354] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][355] ([Intel XE#3343])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html

  * igt@xe_pm@s2idle-basic:
    - shard-bmg:          [ABORT][356] ([Intel XE#3673]) -> [ABORT][357] ([Intel XE#3468] / [Intel XE#3673])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_pm@s2idle-basic.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s2idle-multiple-execs:
    - shard-bmg:          [SKIP][358] ([Intel XE#1130]) -> [ABORT][359] ([Intel XE#1616])
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-bmg:          [DMESG-WARN][360] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [ABORT][361] ([Intel XE#1616])
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [SKIP][362] ([Intel XE#1130]) -> [SKIP][363] ([Intel XE#3342])
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html

  
  [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
  [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766
  [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8147 -> IGTPW_12285
  * Linux: xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f -> xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa

  IGTPW_12285: 87df147a66c6b32674f97a008a6238915a7b0849 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f: afdbad14a16d9f44489fe37a05e93b24581bdc4f
  xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa: 6966a52cb5531bf6cc785fadba160a71cd31e7aa

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/index.html

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

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

* Re: ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
  2024-12-10 18:23 ` ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2) Patchwork
@ 2024-12-11  9:24   ` Grzegorzek, Dominik
  0 siblings, 0 replies; 11+ messages in thread
From: Grzegorzek, Dominik @ 2024-12-11  9:24 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

On Tue, 2024-12-10 at 18:23 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
> URL   : https://patchwork.freedesktop.org/series/142167/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_8147 -> IGTPW_12285
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_12285 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_12285, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_12285/index.html
> 
> Participating hosts (45 -> 44)
> ------------------------------
> 
>   Missing    (1): fi-snb-2520m 
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_12285:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1:
>     - fi-kbl-7567u:       [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp1.html
> 
>   

Not related, changes only in Xe path.

Regards,
Dominik
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_12285 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@i915_selftest@live:
>     - bat-mtlp-8:         [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-mtlp-8/igt@i915_selftest@live.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-mtlp-8/igt@i915_selftest@live.html
> 
>   * igt@kms_flip@basic-flip-vs-modeset:
>     - fi-kbl-7567u:       [PASS][5] -> [DMESG-WARN][6] ([i915#12926])
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html
> 
>   * igt@kms_flip@basic-flip-vs-wf_vblank:
>     - fi-kbl-7567u:       [PASS][7] -> [DMESG-WARN][8] ([i915#12920])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@i915_selftest@live:
>     - bat-twl-1:          [ABORT][9] ([i915#12435] / [i915#12919]) -> [PASS][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-twl-1/igt@i915_selftest@live.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-twl-1/igt@i915_selftest@live.html
> 
>   * igt@i915_selftest@live@requests:
>     - bat-twl-1:          [ABORT][11] ([i915#12919]) -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-twl-1/igt@i915_selftest@live@requests.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-twl-1/igt@i915_selftest@live@requests.html
> 
>   * igt@i915_selftest@live@workarounds:
>     - bat-arlh-3:         [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-arlh-3/igt@i915_selftest@live@workarounds.html
> 
>   * igt@kms_chamelium_edid@dp-edid-read:
>     - bat-dg2-13:         [FAIL][15] ([i915#12505]) -> [PASS][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_module_load@reload:
>     - fi-cfl-8109u:       [DMESG-WARN][17] ([i915#11621] / [i915#1982]) -> [DMESG-WARN][18] ([i915#11621])
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-cfl-8109u/igt@i915_module_load@reload.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/fi-cfl-8109u/igt@i915_module_load@reload.html
> 
>   
>   [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
>   [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
>   [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
>   [i915#12505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12505
>   [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
>   [i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
>   [i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926
>   [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_8147 -> IGTPW_12285
> 
>   CI-20190529: 20190529
>   CI_DRM_15814: 6966a52cb5531bf6cc785fadba160a71cd31e7aa @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_12285: 87df147a66c6b32674f97a008a6238915a7b0849 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12285/index.html


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

* Re: ✗ Xe.CI.Full: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
  2024-12-10 22:22 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-11  9:26   ` Grzegorzek, Dominik
  0 siblings, 0 replies; 11+ messages in thread
From: Grzegorzek, Dominik @ 2024-12-11  9:26 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org

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

On Tue, 2024-12-10 at 22:22 +0000, Patchwork wrote:
Patch Details
Series: lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2)
URL:    https://patchwork.freedesktop.org/series/142167/
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/index.html
CI Bug Log - changes from XEIGT_8147_full -> XEIGTPW_12285_full
Summary

FAILURE

Serious unknown changes coming with XEIGTPW_12285_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12285_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (4 -> 4)

No changes in participating hosts

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html>
  *   igt@kms_lease@lease-revoke@pipe-c-dp-2:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_lease@lease-revoke@pipe-c-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_lease@lease-revoke@pipe-c-dp-2.html> +3 other tests dmesg-warn
  *   igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html>
  *   igt@xe_exec_compute_mode@many-execqueues-userptr-rebind:

     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_exec_compute_mode@many-execqueues-userptr-rebind.html>

Warnings

  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html>

I checked and none of this tests is using intel_buf, so these possible regressions are not related.

Regards, Dominik
Known issues

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

IGT changes
Issues hit

  *   igt@intel_hwmon@hwmon-write:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>)
  *   igt@kms_addfb_basic@unused-handle:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_addfb_basic@unused-handle.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_addfb_basic@unused-handle.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +51 other tests dmesg-warn
  *   igt@kms_async_flips@crc-atomic@pipe-a-dp-2:

     *   shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_async_flips@crc-atomic@pipe-a-dp-2.html> (Intel XE#3781<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781>) +2 other tests incomplete
  *   igt@kms_async_flips@invalid-async-flip:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>)
  *   igt@kms_async_flips@invalid-async-flip-atomic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html> (Intel XE#3768<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768>)
  *   igt@kms_async_flips@test-cursor:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_async_flips@test-cursor.html> (Intel XE#664<https://gitlab.freedesktop.org/drm/xe/kernel/issues/664>)
  *   igt@kms_big_fb@4-tiled-16bpp-rotate-270:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +8 other tests skip
  *   igt@kms_big_fb@linear-16bpp-rotate-90:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +3 other tests skip
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail
  *   igt@kms_big_fb@y-tiled-32bpp-rotate-180:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +17 other tests skip
  *   igt@kms_big_fb@yf-tiled-32bpp-rotate-0:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +15 other tests skip
  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>)
  *   igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +1 other test skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 other test skip
  *   igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +1 other test skip
  *   igt@kms_bw@linear-tiling-2-displays-1920x1080p:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip
  *   igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +24 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#3433<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433>) +3 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2:

     *   shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-dp-2.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +3 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +20 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +18 other tests skip
  *   igt@kms_chamelium_color@ctm-negative:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +2 other tests skip
  *   igt@kms_chamelium_color@ctm-red-to-blue:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +3 other tests skip
  *   igt@kms_chamelium_hpd@common-hpd-after-suspend:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +12 other tests skip
  *   igt@kms_chamelium_hpd@dp-hpd:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +13 other tests skip
  *   igt@kms_content_protection@dp-mst-type-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390>) +1 other test skip
  *   igt@kms_content_protection@lic-type-0@pipe-a-dp-2:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
  *   igt@kms_content_protection@lic-type-1:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_content_protection@lic-type-1.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
  *   igt@kms_content_protection@uevent:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_content_protection@uevent.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +4 other tests skip
  *   igt@kms_content_protection@uevent@pipe-a-dp-2:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
  *   igt@kms_cursor_crc@cursor-onscreen-512x512:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +3 other tests skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +3 other tests skip
  *   igt@kms_cursor_crc@cursor-random-max-size:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +3 other tests skip
  *   igt@kms_cursor_crc@cursor-sliding-256x85:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +4 other tests skip
  *   igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-dp-2.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip
  *   igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +6 other tests skip
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +1 other test skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) +1 other test skip
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +7 other tests skip
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>)
  *   igt@kms_dp_linktrain_fallback@dp-fallback:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#3070<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070>)
  *   igt@kms_dsc@dsc-fractional-bpp:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +3 other tests skip
  *   igt@kms_dsc@dsc-with-bpc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_dsc@dsc-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test skip
  *   igt@kms_fbcon_fbt@fbc:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>)
  *   igt@kms_feature_discovery@display-3x:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +3 other tests fail
  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +9 other tests skip
     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
  *   igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test skip
  *   igt@kms_flip@2x-wf_vblank-ts-check-interruptible:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_flip@flip-vs-expired-vblank:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
  *   igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:

     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +40 other tests dmesg-warn
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
  *   igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:

     *   shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +5 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +5 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +6 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +6 other tests skip
  *   igt@kms_force_connector_basic@force-connector-state:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>)
  *   igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +32 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:

     *   shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests dmesg-fail
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +20 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +14 other tests fail
  *   igt@kms_frontbuffer_tracking@fbc-tiling-y:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#2352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>)
  *   igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +26 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +32 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-suspend:

     *   shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +10 other tests abort
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +74 other tests skip
  *   igt@kms_getfb@getfb-reject-ccs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>)
  *   igt@kms_hdmi_inject@inject-audio:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html> (Intel XE#1470<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470> / Intel XE#2853<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853>)
  *   igt@kms_hdr@brightness-with-hdr:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> / Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html> (Intel XE#3544<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
  *   igt@kms_invalid_mode@clock-too-high:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_invalid_mode@clock-too-high.html> (Intel XE#1450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450> / Intel XE#2568<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568>)
  *   igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html> (Intel XE#1450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450>) +2 other tests skip
  *   igt@kms_joiner@invalid-modeset-force-ultra-joiner:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2934<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
  *   igt@kms_joiner@invalid-modeset-ultra-joiner:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
  *   igt@kms_lease@lease-revoke:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_lease@lease-revoke.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_lease@lease-revoke.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>)
  *   igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:

     *   shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:

     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_plane_scaling@intel-max-src-size:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#3307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307>)
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +15 other tests skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +4 other tests skip
  *   igt@kms_pm_backlight@fade-with-dpms:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_pm_backlight@fade-with-dpms.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
  *   igt@kms_pm_dc@dc5-psr:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>)
  *   igt@kms_pm_dc@dc6-dpms:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>)
  *   igt@kms_pm_dc@deep-pkgc:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>)
  *   igt@kms_pm_rpm@dpms-mode-unset-lpsp:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
  *   igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
  *   igt@kms_pm_rpm@modeset-non-lpsp:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>)
  *   igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +9 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +8 other tests skip
  *   igt@kms_psr@fbc-pr-cursor-blt:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +21 other tests skip
  *   igt@kms_psr@pr-cursor-plane-move:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +8 other tests skip
  *   igt@kms_rotation_crc@multiplane-rotation:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +12 other tests dmesg-fail
  *   igt@kms_rotation_crc@primary-rotation-90:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip
  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
  *   igt@kms_scaling_modes@scaling-mode-center:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test skip
  *   igt@kms_setmode@basic@pipe-a-edp-1:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_setmode@basic@pipe-a-edp-1.html> (Intel XE#2883<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883>) +1 other test fail
  *   igt@kms_setmode@invalid-clone-exclusive-crtc:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
  *   igt@kms_setmode@invalid-clone-single-crtc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) +3 other tests skip
  *   igt@kms_tv_load_detect@load-detect:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html> (Intel XE#2450<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450>)
  *   igt@kms_vrr@cmrr:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
  *   igt@kms_vrr@flip-basic:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_vrr@flip-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip
  *   igt@kms_vrr@negative-basic:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_vrr@negative-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_vrr@negative-basic.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
  *   igt@kms_vrr@seamless-rr-switch-drrs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
  *   igt@kms_writeback@writeback-fb-id:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_writeback@writeback-fb-id.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
  *   igt@kms_writeback@writeback-invalid-parameters:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
  *   igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) +1 other test skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
  *   igt@xe_create@create-big-vram:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_create@create-big-vram.html> (Intel XE#1062<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062>)
  *   igt@xe_eudebug@basic-vm-access-userptr:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_eudebug@basic-vm-access-userptr.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +15 other tests skip
  *   igt@xe_eudebug@exec-queue-placements:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_eudebug@exec-queue-placements.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +20 other tests skip
  *   igt@xe_evict@evict-beng-large-multi-vm-cm:

     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html> (Intel XE#2364<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364>)
  *   igt@xe_evict@evict-beng-mixed-many-threads-small:

     *   shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)
  *   igt@xe_evict@evict-beng-threads-large-multi-vm:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_evict@evict-beng-threads-large-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +13 other tests skip
  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +12 other tests skip
  *   igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +8 other tests skip
  *   igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:

     *   shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) +1 other test skip
  *   igt@xe_live_ktest@xe_eudebug:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html> (Intel XE#2833<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
  *   igt@xe_oa@unprivileged-single-ctx-counters:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>)
  *   igt@xe_pat@pat-index-xelpg:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html> (Intel XE#2236<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>)
  *   igt@xe_pm@d3cold-basic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_pm@d3cold-basic.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +2 other tests skip
  *   igt@xe_pm@d3cold-mmap-vram:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>)
  *   igt@xe_pm@s2idle-mocs:

     *   shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_pm@s2idle-mocs.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>)
  *   igt@xe_pm@s3-basic-exec:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_pm@s3-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@s3-basic-exec.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
  *   igt@xe_pm@s3-mocs:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_pm@s3-mocs.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +2 other tests skip
  *   igt@xe_pm@s3-vm-bind-unbind-all:

     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_pm@s3-vm-bind-unbind-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
  *   igt@xe_pm@s4-basic-exec:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_pm@s4-basic-exec.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_pm@s4-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)
  *   igt@xe_query@multigpu-query-engines:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +5 other tests skip
  *   igt@xe_query@multigpu-query-mem-usage:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_query@multigpu-query-mem-usage.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +3 other tests skip
  *   igt@xe_sriov_flr@flr-each-isolation:

     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>)

Possible fixes

  *   igt@kms_atomic@test-only:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_atomic@test-only.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_atomic@test-only.html> +8 other tests pass
  *   igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-3.html> +2 other tests pass
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> +2 other tests pass
  *   igt@kms_big_fb@linear-8bpp-rotate-180:

     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-180.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-180.html> +10 other tests pass
  *   igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html>
  *   igt@kms_color@deep-color:

     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_color@deep-color.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_color@deep-color.html> +1 other test pass
  *   igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> +2 other tests pass
  *   igt@kms_dp_linktrain_fallback@dp-fallback:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html> (Intel XE#3070<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html>
  *   igt@kms_feature_discovery@display-2x:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_feature_discovery@display-2x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_feature_discovery@display-2x.html>
  *   igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> +1 other test pass
  *   igt@kms_flip@2x-flip-vs-panning-vs-hang:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> +1 other test pass
  *   igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a3.html> +69 other tests pass
  *   igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> +1 other test pass
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:

     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> +1 other test pass
  *   igt@kms_hdr@static-toggle-suspend:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html>
  *   igt@kms_joiner@invalid-modeset-force-big-joiner:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
  *   igt@kms_pm_rpm@cursor-dpms:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_pm_rpm@cursor-dpms.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_pm_rpm@cursor-dpms.html>
  *   igt@xe_exec_basic@twice-userptr-invalidate:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_exec_basic@twice-userptr-invalidate.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_exec_basic@twice-userptr-invalidate.html>
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html>
  *   igt@xe_module_load@load:

     *   shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-4/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_module_load@load.html>)
  *   igt@xe_module_load@reload-no-display:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_module_load@reload-no-display.html> +2 other tests pass
  *   igt@xe_pm@s3-vm-bind-userptr:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html>
  *   igt@xe_pm@s4-mocs:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-2/igt@xe_pm@s4-mocs.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-lnl-8/igt@xe_pm@s4-mocs.html>
  *   igt@xe_pm@s4-vm-bind-unbind-all:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html> (Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html>
  *   igt@xe_query@query-invalid-extension:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_query@query-invalid-extension.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@xe_query@query-invalid-extension.html> +19 other tests pass

Warnings

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-0:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>)
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test skip
  *   igt@kms_bw@linear-tiling-2-displays-3840x2160p:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
  *   igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +1 other test skip
  *   igt@kms_chamelium_frames@dp-crc-fast:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-fast.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-fast.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>)
  *   igt@kms_content_protection@legacy:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_content_protection@legacy.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
  *   igt@kms_content_protection@lic-type-0:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_content_protection@lic-type-0.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_content_protection@lic-type-0.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
  *   igt@kms_content_protection@uevent:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_content_protection@uevent.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>)
  *   igt@kms_cursor_crc@cursor-onscreen-max-size:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +1 other test skip
  *   igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank:

     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>)
  *   igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
  *   igt@kms_flip@2x-flip-vs-rmfb:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_flip@2x-plain-flip-ts-check:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +10 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:

     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +2 other tests fail
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:

     *   shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:

     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +5 other tests fail
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:

     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>)
  *   igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +11 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +14 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>)
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +15 other tests skip
  *   igt@kms_hdr@invalid-metadata-sizes:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
  *   igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +1 other test skip
  *   igt@kms_psr2_su@page_flip-nv12:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>)
  *   igt@kms_psr@psr-basic:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr@psr-basic.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-6/igt@kms_psr@psr-basic.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +1 other test skip
  *   igt@xe_eudebug@basic-vm-bind-extended:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-extended.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-extended.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>)
  *   igt@xe_evict@evict-beng-mixed-threads-large:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_evict@evict-mixed-threads-large:

     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>)
  *   igt@xe_evict@evict-threads-large:

     *   shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_evict@evict-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-2/igt@xe_evict@evict-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>)
  *   igt@xe_evict@evict-threads-large-multi-vm:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_evict@evict-threads-large-multi-vm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-4/igt@xe_evict@evict-threads-large-multi-vm.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>)
  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>)
  *   igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>)
  *   igt@xe_pm@s2idle-basic:

     *   shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_pm@s2idle-basic.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-8/igt@xe_pm@s2idle-basic.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>)
  *   igt@xe_pm@s2idle-multiple-execs:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
  *   igt@xe_pm@s2idle-vm-bind-unbind-all:

     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>)
  *   igt@xe_sriov_flr@flr-vf1-clear:

     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12285/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>)

Build changes

  *   IGT: IGT_8147 -> IGTPW_12285
  *   Linux: xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f -> xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa

IGTPW_12285: 87df147a66c6b32674f97a008a6238915a7b0849 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f: afdbad14a16d9f44489fe37a05e93b24581bdc4f
xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa: 6966a52cb5531bf6cc785fadba160a71cd31e7aa


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

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

end of thread, other threads:[~2024-12-11  9:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 10:41 [PATCH i-g-t] lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default Dominik Grzegorzek
2024-12-06  1:31 ` ✗ Xe.CI.BAT: failure for " Patchwork
2024-12-06  1:44 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-06  3:06 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06  4:06 ` ✗ Xe.CI.Full: " Patchwork
2024-12-06 12:15 ` [PATCH i-g-t] " Matthew Auld
2024-12-10 18:23 ` ✗ i915.CI.BAT: failure for lib/intel_bufops: Set NEEDS_VISIBLE_VRAM for each buf by default (rev2) Patchwork
2024-12-11  9:24   ` Grzegorzek, Dominik
2024-12-10 20:12 ` ✓ Xe.CI.BAT: success " Patchwork
2024-12-10 22:22 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-11  9:26   ` Grzegorzek, Dominik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox