Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation
@ 2024-07-26  8:24 Andrzej Hajda
  2024-07-26 10:14 ` ✓ CI.xeBAT: success for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andrzej Hajda @ 2024-07-26  8:24 UTC (permalink / raw)
  To: igt-dev; +Cc: Kamil Konieczny, Andrzej Hajda

Tests like threads-mixed-shared-vm-rebind takes significantly longer time
on simulation due to high number of batches - 6-8 minutes vs few seconds
on hw. As a result CI tests frequently fails due to timeout.

Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
 tests/intel/xe_exec_threads.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index e7a0a7cd0692..9a37730a9615 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -944,6 +944,7 @@ static void *thread(void *data)
 
 static void threads(int fd, int flags)
 {
+	int n_execs = igt_run_in_simulation() ? 256 : 1024;
 	struct thread_data *threads_data;
 	struct drm_xe_engine_class_instance *hwe;
 	uint64_t addr = 0x1a0000;
@@ -1002,8 +1003,7 @@ static void threads(int fd, int flags)
 		threads_data[i].eci = hwe;
 #define N_EXEC_QUEUE	16
 		threads_data[i].n_exec_queue = N_EXEC_QUEUE;
-#define N_EXEC		1024
-		threads_data[i].n_exec = N_EXEC;
+		threads_data[i].n_exec = n_execs;
 		threads_data[i].flags = flags;
 		if (flags & MIXED_MODE) {
 			threads_data[i].flags &= ~MIXED_MODE;
@@ -1050,7 +1050,7 @@ static void threads(int fd, int flags)
 						vm_legacy_mode;
 					threads_data[i].class = class;
 					threads_data[i].n_exec_queue = N_EXEC_QUEUE;
-					threads_data[i].n_exec = N_EXEC;
+					threads_data[i].n_exec = n_execs;
 					threads_data[i].flags = flags;
 					threads_data[i].flags &= ~BALANCER;
 					threads_data[i].flags |= *data_flags;

---
base-commit: 0471a1097444389a901d78b260c24eaf4fc2d7df
change-id: 20240726-xe_exec_threads_limit_simul-3dc20e0deac3

Best regards,
-- 
Andrzej Hajda <andrzej.hajda@intel.com>


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

* ✓ CI.xeBAT: success for tests/intel/xe_exec_threads: decrease number of batches for simulation
  2024-07-26  8:24 [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation Andrzej Hajda
@ 2024-07-26 10:14 ` Patchwork
  2024-07-26 10:27 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-07-26 10:14 UTC (permalink / raw)
  To: Andrzej Hajda; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_threads: decrease number of batches for simulation
URL   : https://patchwork.freedesktop.org/series/136557/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7939_BAT -> XEIGTPW_11474_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (6 -> 6)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@xe_evict@evict-beng-small-multi-vm:
    - {bat-bmg-1}:        [DMESG-WARN][1] -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/bat-bmg-1/igt@xe_evict@evict-beng-small-multi-vm.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/bat-bmg-1/igt@xe_evict@evict-beng-small-multi-vm.html

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



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

  * IGT: IGT_7939 -> IGTPW_11474

  IGTPW_11474: 11474
  IGT_7939: 7939
  xe-1671-edd84625d093bb52bfb1c0c6feb12cff308d81b7: edd84625d093bb52bfb1c0c6feb12cff308d81b7

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for tests/intel/xe_exec_threads: decrease number of batches for simulation
  2024-07-26  8:24 [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation Andrzej Hajda
  2024-07-26 10:14 ` ✓ CI.xeBAT: success for " Patchwork
@ 2024-07-26 10:27 ` Patchwork
  2024-07-26 11:45 ` [PATCH] " Kamil Konieczny
  2024-07-26 20:27 ` ✗ CI.xeFULL: failure for " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-07-26 10:27 UTC (permalink / raw)
  To: Andrzej Hajda; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_threads: decrease number of batches for simulation
URL   : https://patchwork.freedesktop.org/series/136557/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7939 -> IGTPW_11474
====================================================

Summary
-------

  **FAILURE**

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

Participating hosts (39 -> 40)
------------------------------

  Additional (3): fi-bsw-n3050 bat-mtlp-6 fi-pnv-d510 
  Missing    (2): bat-mtlp-8 fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_mocs:
    - bat-arlh-2:         [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7939/bat-arlh-2/igt@i915_selftest@live@gt_mocs.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-arlh-2/igt@i915_selftest@live@gt_mocs.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - bat-mtlp-6:         NOTRUN -> [SKIP][3] ([i915#9318])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html

  * igt@fbdev@info:
    - bat-mtlp-6:         NOTRUN -> [SKIP][4] ([i915#1849] / [i915#2582])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@fbdev@info.html

  * igt@fbdev@write:
    - bat-mtlp-6:         NOTRUN -> [SKIP][5] ([i915#2582]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@fbdev@write.html

  * igt@gem_lmem_swapping@basic:
    - fi-pnv-d510:        NOTRUN -> [SKIP][6] +32 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/fi-pnv-d510/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@basic@lmem0:
    - bat-dg2-11:         [PASS][7] -> [FAIL][8] ([i915#10378])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7939/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html

  * igt@gem_lmem_swapping@random-engines:
    - fi-bsw-n3050:       NOTRUN -> [SKIP][9] +19 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random:
    - bat-mtlp-6:         NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_mmap@basic:
    - bat-mtlp-6:         NOTRUN -> [SKIP][11] ([i915#4083])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@gem_mmap@basic.html

  * igt@gem_tiled_blits@basic:
    - bat-mtlp-6:         NOTRUN -> [SKIP][12] ([i915#4077]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@gem_tiled_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-mtlp-6:         NOTRUN -> [SKIP][13] ([i915#4079]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rps@basic-api:
    - bat-mtlp-6:         NOTRUN -> [SKIP][14] ([i915#6621])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@i915_pm_rps@basic-api.html

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - bat-mtlp-6:         NOTRUN -> [SKIP][15] ([i915#4212] / [i915#9792]) +8 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-mtlp-6:         NOTRUN -> [SKIP][16] ([i915#5190] / [i915#9792])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - bat-mtlp-6:         NOTRUN -> [SKIP][17] ([i915#9792]) +17 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_flip@basic-flip-vs-dpms:
    - bat-mtlp-6:         NOTRUN -> [SKIP][18] ([i915#3637] / [i915#9792]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-mtlp-6:         NOTRUN -> [SKIP][19] ([i915#5274] / [i915#9792])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-mtlp-6:         NOTRUN -> [SKIP][20] ([i915#4342] / [i915#5354] / [i915#9792])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-mtlp-6:         NOTRUN -> [SKIP][21] ([i915#5354] / [i915#9792])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-mtlp-6:         NOTRUN -> [SKIP][22] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-mtlp-6:         NOTRUN -> [SKIP][23] ([i915#3555] / [i915#8809] / [i915#9792])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-mtlp-6:         NOTRUN -> [SKIP][24] ([i915#3708] / [i915#9792])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-mtlp-6:         NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4077]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-read:
    - bat-mtlp-6:         NOTRUN -> [SKIP][26] ([i915#3708]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@basic-write:
    - bat-mtlp-6:         NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-mtlp-6/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@vgem_basic@unload:
    - {bat-arlh-3}:       [INCOMPLETE][28] -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7939/bat-arlh-3/igt@vgem_basic@unload.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11474/bat-arlh-3/igt@vgem_basic@unload.html

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

  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
  [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7939 -> IGTPW_11474

  CI-20190529: 20190529
  CI_DRM_15136: edd84625d093bb52bfb1c0c6feb12cff308d81b7 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11474: 11474
  IGT_7939: 7939

== Logs ==

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

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

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

* Re: [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation
  2024-07-26  8:24 [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation Andrzej Hajda
  2024-07-26 10:14 ` ✓ CI.xeBAT: success for " Patchwork
  2024-07-26 10:27 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-07-26 11:45 ` Kamil Konieczny
  2024-07-26 20:27 ` ✗ CI.xeFULL: failure for " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Kamil Konieczny @ 2024-07-26 11:45 UTC (permalink / raw)
  To: igt-dev; +Cc: Andrzej Hajda

Hi Andrzej,
On 2024-07-26 at 10:24:19 +0200, Andrzej Hajda wrote:
> Tests like threads-mixed-shared-vm-rebind takes significantly longer time
> on simulation due to high number of batches - 6-8 minutes vs few seconds
> on hw. As a result CI tests frequently fails due to timeout.
> 
> Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>

LGTM,
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

> ---
>  tests/intel/xe_exec_threads.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index e7a0a7cd0692..9a37730a9615 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -944,6 +944,7 @@ static void *thread(void *data)
>  
>  static void threads(int fd, int flags)
>  {
> +	int n_execs = igt_run_in_simulation() ? 256 : 1024;
>  	struct thread_data *threads_data;
>  	struct drm_xe_engine_class_instance *hwe;
>  	uint64_t addr = 0x1a0000;
> @@ -1002,8 +1003,7 @@ static void threads(int fd, int flags)
>  		threads_data[i].eci = hwe;
>  #define N_EXEC_QUEUE	16
>  		threads_data[i].n_exec_queue = N_EXEC_QUEUE;
> -#define N_EXEC		1024
> -		threads_data[i].n_exec = N_EXEC;
> +		threads_data[i].n_exec = n_execs;
>  		threads_data[i].flags = flags;
>  		if (flags & MIXED_MODE) {
>  			threads_data[i].flags &= ~MIXED_MODE;
> @@ -1050,7 +1050,7 @@ static void threads(int fd, int flags)
>  						vm_legacy_mode;
>  					threads_data[i].class = class;
>  					threads_data[i].n_exec_queue = N_EXEC_QUEUE;
> -					threads_data[i].n_exec = N_EXEC;
> +					threads_data[i].n_exec = n_execs;
>  					threads_data[i].flags = flags;
>  					threads_data[i].flags &= ~BALANCER;
>  					threads_data[i].flags |= *data_flags;
> 
> ---
> base-commit: 0471a1097444389a901d78b260c24eaf4fc2d7df
> change-id: 20240726-xe_exec_threads_limit_simul-3dc20e0deac3
> 
> Best regards,
> -- 
> Andrzej Hajda <andrzej.hajda@intel.com>
> 

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

* ✗ CI.xeFULL: failure for tests/intel/xe_exec_threads: decrease number of batches for simulation
  2024-07-26  8:24 [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation Andrzej Hajda
                   ` (2 preceding siblings ...)
  2024-07-26 11:45 ` [PATCH] " Kamil Konieczny
@ 2024-07-26 20:27 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2024-07-26 20:27 UTC (permalink / raw)
  To: Andrzej Hajda; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_exec_threads: decrease number of batches for simulation
URL   : https://patchwork.freedesktop.org/series/136557/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7939_full -> XEIGTPW_11474_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_11474_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_11474_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 (3 -> 3)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@dpms-off-confusion-interruptible:
    - shard-dg2-set2:     [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_flip@dpms-off-confusion-interruptible.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_flip@dpms-off-confusion-interruptible.html

  
#### Warnings ####

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][3] ([Intel XE#1201]) -> [SKIP][4] +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-6.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@unused-pitches:
    - shard-dg2-set2:     [PASS][5] -> [SKIP][6] ([Intel XE#1201] / [i915#6077])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_addfb_basic@unused-pitches.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_addfb_basic@unused-pitches.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][7] -> [FAIL][8] ([Intel XE#1426]) +1 other test fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg2-set2:     [PASS][9] -> [SKIP][10] ([Intel XE#1201] / [Intel XE#829]) +4 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          [PASS][11] -> [FAIL][12] ([Intel XE#1659]) +2 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1399])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#309])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [PASS][16] -> [SKIP][17] ([Intel XE#1201]) +14 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@torture-move@pipe-a:
    - shard-dg2-set2:     [PASS][18] -> [DMESG-WARN][19] ([Intel XE#877]) +1 other test dmesg-warn
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_cursor_legacy@torture-move@pipe-a.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_cursor_legacy@torture-move@pipe-a.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [PASS][20] -> [FAIL][21] ([Intel XE#886]) +3 other tests fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1401]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html

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

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

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-dg2-set2:     [PASS][26] -> [SKIP][27] ([Intel XE#1201] / [Intel XE#783])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

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

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][29] -> [SKIP][30] ([Intel XE#455])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][31] -> [FAIL][32] ([Intel XE#361]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#870])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-8/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-lnl:          [PASS][34] -> [SKIP][35] ([Intel XE#870]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-3/igt@kms_pm_backlight@basic-brightness.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-5/igt@kms_pm_backlight@basic-brightness.html

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

  * igt@kms_psr@pr-cursor-plane-move:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#1406])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html

  * igt@kms_psr@psr2-cursor-plane-onoff:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#1649]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-onoff.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-onoff.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][40] -> [FAIL][41] ([Intel XE#899]) +1 other test fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][42] -> [FAIL][43] ([Intel XE#899]) +1 other test fail
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html

  * igt@xe_evict@evict-beng-small-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#688]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-2/igt@xe_evict@evict-beng-small-external-cm.html

  * igt@xe_evict@evict-threads-large:
    - shard-dg2-set2:     [PASS][45] -> [TIMEOUT][46] ([Intel XE#1473] / [Intel XE#392]) +1 other test timeout
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@xe_evict@evict-threads-large.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@xe_evict@evict-threads-large.html

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

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [PASS][48] -> [TIMEOUT][49] ([Intel XE#2105])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_module_load@reload-no-display:
    - shard-dg2-set2:     [PASS][50] -> [FAIL][51] ([Intel XE#1204])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@xe_module_load@reload-no-display.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@xe_module_load@reload-no-display.html

  * igt@xe_pm@s4-basic:
    - shard-lnl:          [PASS][52] -> [ABORT][53] ([Intel XE#1358] / [Intel XE#1607])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-4/igt@xe_pm@s4-basic.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-2/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-dg2-set2:     [PASS][54] -> [DMESG-WARN][55] ([Intel XE#2019]) +1 other test dmesg-warn
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
    - shard-lnl:          [FAIL][56] ([Intel XE#1426]) -> [PASS][57] +1 other test pass
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html

  * igt@kms_cursor_legacy@torture-bo@pipe-a:
    - shard-dg2-set2:     [DMESG-WARN][58] ([Intel XE#877]) -> [PASS][59] +1 other test pass
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_cursor_legacy@torture-bo@pipe-a.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@kms_cursor_legacy@torture-bo@pipe-a.html

  * igt@kms_flip@wf_vblank-ts-check@a-edp1:
    - shard-lnl:          [FAIL][60] ([Intel XE#886]) -> [PASS][61] +2 other tests pass
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-lnl:          [DMESG-WARN][62] ([Intel XE#2052]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * {igt@kms_plane@plane-position-covered@pipe-b-plane-4}:
    - shard-lnl:          [DMESG-WARN][64] ([Intel XE#324]) -> [PASS][65] +3 other tests pass
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-lnl:          [SKIP][66] ([Intel XE#870]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-8/igt@kms_pm_backlight@fade-with-dpms.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][68] ([Intel XE#718]) -> [PASS][69] +1 other test pass
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb@psr2-pipe-b-edp-1:
    - shard-lnl:          [DMESG-WARN][70] ([Intel XE#1705]) -> [PASS][71] +1 other test pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb@psr2-pipe-b-edp-1.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb@psr2-pipe-b-edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][72] ([Intel XE#899]) -> [PASS][73] +1 other test pass
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html

  * igt@xe_exec_compute_mode@once-userptr-invalidate:
    - shard-lnl:          [FAIL][74] ([Intel XE#1069]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-2/igt@xe_exec_compute_mode@once-userptr-invalidate.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-4/igt@xe_exec_compute_mode@once-userptr-invalidate.html

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [FAIL][76] ([Intel XE#2256]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@xe_gt_freq@freq_fixed_exec.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@xe_gt_freq@freq_fixed_exec.html

  * igt@xe_module_load@unload:
    - shard-dg2-set2:     [DMESG-WARN][78] ([Intel XE#1551] / [Intel XE#2019]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@xe_module_load@unload.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@xe_module_load@unload.html

  * igt@xe_pm@s4-basic:
    - shard-dg2-set2:     [DMESG-WARN][80] -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@xe_pm@s4-basic.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [ABORT][82] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-2/igt@xe_pm@s4-exec-after.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-6/igt@xe_pm@s4-exec-after.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [ABORT][84] ([Intel XE#1794]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [FAIL][86] ([Intel XE#958]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][88] ([Intel XE#1201] / [Intel XE#623]) -> [SKIP][89] ([Intel XE#1201] / [i915#6077])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2-set2:     [SKIP][90] ([Intel XE#873]) -> [SKIP][91] ([Intel XE#1201] / [Intel XE#873])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][92] ([Intel XE#316]) -> [SKIP][93] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][94] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][95] ([Intel XE#316]) +3 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][96] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][97] ([Intel XE#1201] / [Intel XE#829])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     [SKIP][98] ([Intel XE#619]) -> [SKIP][99] ([Intel XE#1201] / [Intel XE#619])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][100] ([Intel XE#1124]) -> [SKIP][101] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][102] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][103] ([Intel XE#1124]) +7 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#346]) -> [SKIP][105] ([Intel XE#1201] / [Intel XE#346])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][106] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][107] ([Intel XE#367]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][108] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][109] ([Intel XE#1201])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][110] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][112] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][113] ([Intel XE#787]) +55 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][114] ([Intel XE#1252]) -> [SKIP][115] ([Intel XE#1201] / [Intel XE#829])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][116] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][118] ([Intel XE#1252]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#1252])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][120] ([Intel XE#787]) -> [SKIP][121] ([Intel XE#1201] / [Intel XE#787]) +34 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][123] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#314]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][127] ([Intel XE#1152]) +3 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][129] ([Intel XE#306])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][131] ([Intel XE#1201])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#373]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][135] ([Intel XE#373]) +5 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][136] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][137] ([Intel XE#1201])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#308]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#308])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg2-set2:     [SKIP][140] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][141] ([Intel XE#1201])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][142] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][143] ([Intel XE#323])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#455]) -> [SKIP][145] ([Intel XE#1201])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][146] ([Intel XE#307]) -> [SKIP][147] ([Intel XE#1201] / [Intel XE#307])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#455]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][151] ([Intel XE#776])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#776]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#776])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][155] ([Intel XE#1201]) +5 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][157] ([Intel XE#651]) +27 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#651]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#658]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#658])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#783])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][165] ([Intel XE#1201]) +3 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][167] ([Intel XE#653]) +20 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#653]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#653]) +13 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_plane@plane-position-covered:
    - shard-lnl:          [DMESG-WARN][170] ([Intel XE#324]) -> [DMESG-FAIL][171] ([Intel XE#324])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-lnl-5/igt@kms_plane@plane-position-covered.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-lnl-3/igt@kms_plane@plane-position-covered.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     [SKIP][172] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][173] ([Intel XE#455]) +18 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][175] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][177] ([Intel XE#2318]) +2 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][179] ([Intel XE#1201])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#870]) -> [SKIP][181] ([Intel XE#1201] / [Intel XE#870])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][183] ([Intel XE#1201])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1489]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][187] ([Intel XE#1489]) +3 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#1122]) -> [SKIP][189] ([Intel XE#1122] / [Intel XE#1201])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#929]) -> [SKIP][191] ([Intel XE#1201])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-plane-onoff.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][193] ([Intel XE#929]) +13 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#929]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_psr@psr2-basic.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_psr@psr2-basic.html

  * igt@kms_psr@psr2-dpms:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][197] ([Intel XE#1201])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_psr@psr2-dpms.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_psr@psr2-dpms.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#327]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#829])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-270.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][201] ([Intel XE#1127]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][203] ([Intel XE#327]) +1 other test skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#327]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][207] ([Intel XE#1500])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [DMESG-WARN][208] ([Intel XE#2019]) -> [DMESG-WARN][209] ([Intel XE#2019] / [Intel XE#2226]) +1 other test dmesg-warn
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@kms_vblank@ts-continuation-suspend.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-436/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-dg2-set2:     [SKIP][210] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][211] ([Intel XE#1201]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@kms_vrr@seamless-rr-switch-virtual.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][213] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_evict@evict-mixed-many-threads-large:
    - shard-dg2-set2:     [TIMEOUT][214] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][215] ([Intel XE#1473] / [Intel XE#392])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#288]) -> [SKIP][217] ([Intel XE#1201] / [Intel XE#288]) +14 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][219] ([Intel XE#288]) +17 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html

  * igt@xe_live_ktest@xe_mocs:
    - shard-dg2-set2:     [FAIL][220] ([Intel XE#1999]) -> [SKIP][221] ([Intel XE#1192] / [Intel XE#1201])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     [SKIP][222] ([Intel XE#560]) -> [SKIP][223] ([Intel XE#1201] / [Intel XE#560])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@xe_media_fill@media-fill.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-466/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][224] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][225] ([Intel XE#378])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-466/igt@xe_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_module_load@load.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][226] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][227] ([Intel XE#979])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][229] ([Intel XE#366])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-433/igt@xe_pm@d3cold-basic.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_pm@d3cold-basic.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][231] ([Intel XE#944]) +3 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-435/igt@xe_query@multigpu-query-cs-cycles.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-dg2-set2:     [SKIP][232] ([Intel XE#944]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#944])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7939/shard-dg2-432/igt@xe_query@multigpu-query-hwconfig.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11474/shard-dg2-463/igt@xe_query@multigpu-query-hwconfig.html

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

  [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
  [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
  [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
  [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
  [Intel XE#2052]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2052
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207
  [Intel XE#2226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2226
  [Intel XE#2256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2256
  [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
  [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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077


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

  * IGT: IGT_7939 -> IGTPW_11474

  IGTPW_11474: 11474
  IGT_7939: 7939
  xe-1671-edd84625d093bb52bfb1c0c6feb12cff308d81b7: edd84625d093bb52bfb1c0c6feb12cff308d81b7

== Logs ==

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

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

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

end of thread, other threads:[~2024-07-26 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-26  8:24 [PATCH] tests/intel/xe_exec_threads: decrease number of batches for simulation Andrzej Hajda
2024-07-26 10:14 ` ✓ CI.xeBAT: success for " Patchwork
2024-07-26 10:27 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-07-26 11:45 ` [PATCH] " Kamil Konieczny
2024-07-26 20:27 ` ✗ CI.xeFULL: failure for " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox