igt-dev.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum
@ 2025-11-07 15:12 Jonathan Cavitt
  2025-11-07 15:24 ` Cavitt, Jonathan
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Jonathan Cavitt @ 2025-11-07 15:12 UTC (permalink / raw)
  To: igt-dev; +Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, michal.wajdeczko

When updating the exec quantum in enable_and_provision_vfs, update the
preempt timeout value to be equal to the exec quantum value.  Also,
reset the preempt timeout value on test end in
unprovision_and_disable_vfs.

v2:
- Multiply exec quantum by 1 instead of 2 to get the preempt timeout
  (Michal)
- Compress the vf and pf exec quantum and preempt timeout values into a
  single define (VF_EXEC_QUANTUM), and operate on that using a
  PF_MULTIPLIER and PT_TO_EQ_RATIO to generate the requested values for
  xe_sriov_set_exec_quantum_ms and xe_sriov_set_preempt_timeout_us in
  enable_and_provision_vfs (jcavitt)

v3:
- Revert conversion to defined macros and just add pf_preempt_timeout
  and vf_preempt_timeout as variables (Michal)

Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
 tests/intel/xe_pmu.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
index 9525655ba2..bc6688744f 100644
--- a/tests/intel/xe_pmu.c
+++ b/tests/intel/xe_pmu.c
@@ -974,6 +974,7 @@ static void test_gt_frequency(int fd, struct drm_xe_engine_class_instance *eci)
 static unsigned int enable_and_provision_vfs(int fd)
 {
 	unsigned int gt, num_vfs;
+	int pf_preempt_timeout = 64000, vf_preempt_timeout = 32000;
 	int pf_exec_quantum = 64, vf_exec_quantum = 32, vf;
 
 	igt_require(igt_sriov_is_pf(fd));
@@ -987,12 +988,18 @@ static unsigned int enable_and_provision_vfs(int fd)
 	num_vfs = igt_sriov_get_enabled_vfs(fd);
 	igt_require(num_vfs == 2);
 
-	/* Set 32ms for VF execution quantum and 64ms for PF execution quantum */
+	/*
+	 * Set 32ms for VF execution quantum and 64ms for PF execution quantum.
+	 * Set the preempt timeout for the VF and PF to equal their execution quantum.
+	 */
 	xe_for_each_gt(fd, gt) {
 		xe_sriov_set_sched_if_idle(fd, gt, 0);
-		for (int fn = 0; fn <= num_vfs; fn++)
+		for (int fn = 0; fn <= num_vfs; fn++) {
 			xe_sriov_set_exec_quantum_ms(fd, fn, gt, fn ? vf_exec_quantum :
 						     pf_exec_quantum);
+			xe_sriov_set_preempt_timeout_us(fd, fn, gt, fn ? vf_preempt_timeout :
+							pf_preempt_timeout);
+		}
 	}
 
 	/* probe VFs */
@@ -1011,8 +1018,10 @@ static void unprovision_and_disable_vfs(int fd)
 
 	xe_for_each_gt(fd, gt) {
 		xe_sriov_set_sched_if_idle(fd, gt, 0);
-		for (int fn = 0; fn <= num_vfs; fn++)
+		for (int fn = 0; fn <= num_vfs; fn++) {
 			xe_sriov_set_exec_quantum_ms(fd, fn, gt, 0);
+			xe_sriov_set_preempt_timeout_us(fd, fn, gt, 0);
+		}
 	}
 
 	xe_sriov_disable_vfs_restore_auto_provisioning(fd);
-- 
2.43.0


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

* RE: [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum
  2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
@ 2025-11-07 15:24 ` Cavitt, Jonathan
  2025-11-08  1:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3) Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Cavitt, Jonathan @ 2025-11-07 15:24 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org, Tauro, Riana
  Cc: Gupta, saurabhg, Zuo, Alex, Wajdeczko, Michal

Pinging @Tauro, Riana for confirmation on if the preempt timeout
values look okay.
-Jonathan Cavitt

-----Original Message-----
From: Cavitt, Jonathan <jonathan.cavitt@intel.com> 
Sent: Friday, November 7, 2025 7:13 AM
To: igt-dev@lists.freedesktop.org
Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>
Subject: [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum
> 
> When updating the exec quantum in enable_and_provision_vfs, update the
> preempt timeout value to be equal to the exec quantum value.  Also,
> reset the preempt timeout value on test end in
> unprovision_and_disable_vfs.
> 
> v2:
> - Multiply exec quantum by 1 instead of 2 to get the preempt timeout
>   (Michal)
> - Compress the vf and pf exec quantum and preempt timeout values into a
>   single define (VF_EXEC_QUANTUM), and operate on that using a
>   PF_MULTIPLIER and PT_TO_EQ_RATIO to generate the requested values for
>   xe_sriov_set_exec_quantum_ms and xe_sriov_set_preempt_timeout_us in
>   enable_and_provision_vfs (jcavitt)
> 
> v3:
> - Revert conversion to defined macros and just add pf_preempt_timeout
>   and vf_preempt_timeout as variables (Michal)
> 
> Suggested-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> ---
>  tests/intel/xe_pmu.c | 15 ++++++++++++---
>  1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
> index 9525655ba2..bc6688744f 100644
> --- a/tests/intel/xe_pmu.c
> +++ b/tests/intel/xe_pmu.c
> @@ -974,6 +974,7 @@ static void test_gt_frequency(int fd, struct drm_xe_engine_class_instance *eci)
>  static unsigned int enable_and_provision_vfs(int fd)
>  {
>  	unsigned int gt, num_vfs;
> +	int pf_preempt_timeout = 64000, vf_preempt_timeout = 32000;
>  	int pf_exec_quantum = 64, vf_exec_quantum = 32, vf;
>  
>  	igt_require(igt_sriov_is_pf(fd));
> @@ -987,12 +988,18 @@ static unsigned int enable_and_provision_vfs(int fd)
>  	num_vfs = igt_sriov_get_enabled_vfs(fd);
>  	igt_require(num_vfs == 2);
>  
> -	/* Set 32ms for VF execution quantum and 64ms for PF execution quantum */
> +	/*
> +	 * Set 32ms for VF execution quantum and 64ms for PF execution quantum.
> +	 * Set the preempt timeout for the VF and PF to equal their execution quantum.
> +	 */
>  	xe_for_each_gt(fd, gt) {
>  		xe_sriov_set_sched_if_idle(fd, gt, 0);
> -		for (int fn = 0; fn <= num_vfs; fn++)
> +		for (int fn = 0; fn <= num_vfs; fn++) {
>  			xe_sriov_set_exec_quantum_ms(fd, fn, gt, fn ? vf_exec_quantum :
>  						     pf_exec_quantum);
> +			xe_sriov_set_preempt_timeout_us(fd, fn, gt, fn ? vf_preempt_timeout :
> +							pf_preempt_timeout);
> +		}
>  	}
>  
>  	/* probe VFs */
> @@ -1011,8 +1018,10 @@ static void unprovision_and_disable_vfs(int fd)
>  
>  	xe_for_each_gt(fd, gt) {
>  		xe_sriov_set_sched_if_idle(fd, gt, 0);
> -		for (int fn = 0; fn <= num_vfs; fn++)
> +		for (int fn = 0; fn <= num_vfs; fn++) {
>  			xe_sriov_set_exec_quantum_ms(fd, fn, gt, 0);
> +			xe_sriov_set_preempt_timeout_us(fd, fn, gt, 0);
> +		}
>  	}
>  
>  	xe_sriov_disable_vfs_restore_auto_provisioning(fd);
> -- 
> 2.43.0
> 
> 

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

* ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
  2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
  2025-11-07 15:24 ` Cavitt, Jonathan
@ 2025-11-08  1:29 ` Patchwork
  2025-11-08  1:46 ` ✗ i915.CI.BAT: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-11-08  1:29 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
URL   : https://patchwork.freedesktop.org/series/157194/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8614_BAT -> XEIGTPW_14025_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [FAIL][1] ([Intel XE#6520]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * IGT: IGT_8614 -> IGTPW_14025
  * Linux: xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d -> xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745

  IGTPW_14025: 14025
  IGT_8614: 8614
  xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d: 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d
  xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745: 2bc418aa7efaae562e49d84e8b28f799cf624745

== Logs ==

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

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

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

* ✗ i915.CI.BAT: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
  2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
  2025-11-07 15:24 ` Cavitt, Jonathan
  2025-11-08  1:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3) Patchwork
@ 2025-11-08  1:46 ` Patchwork
  2025-11-14 15:35   ` Cavitt, Jonathan
  2025-11-09  7:16 ` ✗ Xe.CI.Full: " Patchwork
  2025-11-19 15:15 ` [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Bernatowicz, Marcin
  4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-11-08  1:46 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
URL   : https://patchwork.freedesktop.org/series/157194/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8614 -> IGTPW_14025
====================================================

Summary
-------

  **FAILURE**

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

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

  Additional (1): bat-mtlp-9 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@objects:
    - bat-arlh-3:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live@objects.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live@objects.html

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

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

### IGT changes ###

#### Issues hit ####

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

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

  * igt@gem_render_tiled_blits@basic:
    - bat-mtlp-9:         NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html

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

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

  * igt@i915_selftest@live:
    - bat-arlh-3:         [PASS][8] -> [INCOMPLETE][9] ([i915#14764] / [i915#14818] / [i915#14837] / [i915#15175] / [i915#15198])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][10] -> [DMESG-FAIL][11] ([i915#12061])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  * igt@intel_hwmon@hwmon-read:
    - bat-mtlp-9:         NOTRUN -> [SKIP][12] ([i915#7707]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html

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

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-mtlp-9:         NOTRUN -> [SKIP][14] ([i915#4212]) +8 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-mtlp-9:         NOTRUN -> [SKIP][15] ([i915#4213]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-mtlp-9:         NOTRUN -> [SKIP][16] ([i915#3555] / [i915#3840] / [i915#9159])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-mtlp-9:         NOTRUN -> [SKIP][17]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-mtlp-9:         NOTRUN -> [SKIP][18] ([i915#4077] / [i915#9688]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_psr@psr-primary-mmap-gtt.html

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

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

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

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

  
#### Warnings ####

  * igt@i915_selftest@live:
    - bat-atsm-1:         [DMESG-FAIL][23] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][24] ([i915#12061] / [i915#14204])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-atsm-1/igt@i915_selftest@live.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-atsm-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@mman:
    - bat-atsm-1:         [DMESG-FAIL][25] ([i915#13929]) -> [DMESG-FAIL][26] ([i915#14204])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-atsm-1/igt@i915_selftest@live@mman.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-atsm-1/igt@i915_selftest@live@mman.html

  
  [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
  [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
  [i915#14764]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14764
  [i915#14818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14818
  [i915#14837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14837
  [i915#15175]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15175
  [i915#15198]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15198
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [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#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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8614 -> IGTPW_14025
  * Linux: CI_DRM_17514 -> CI_DRM_17515

  CI-20190529: 20190529
  CI_DRM_17514: 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_17515: 2bc418aa7efaae562e49d84e8b28f799cf624745 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14025: 14025
  IGT_8614: 8614

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
  2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
                   ` (2 preceding siblings ...)
  2025-11-08  1:46 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-11-09  7:16 ` Patchwork
  2025-11-14 15:35   ` Cavitt, Jonathan
  2025-11-19 15:15 ` [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Bernatowicz, Marcin
  4 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2025-11-09  7:16 UTC (permalink / raw)
  To: Cavitt, Jonathan; +Cc: igt-dev

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

== Series Details ==

Series: tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
URL   : https://patchwork.freedesktop.org/series/157194/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8614_FULL -> XEIGTPW_14025_FULL
====================================================

Summary
-------

  **FAILURE**

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

  Missing    (1): shard-adlp 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x:
    - shard-dg2-set2:     [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x.html

  * igt@panthor/panthor_query@query:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@panthor/panthor_query@query.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][5] ([Intel XE#316]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

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

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

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +13 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2328])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#607])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#607])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

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

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

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

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#367])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#367]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2887]) +17 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#787]) +83 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#3442])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#3432]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#2887]) +6 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2724])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#4418])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#306])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#306])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2325])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2252]) +9 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#373]) +5 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-single.html

  * igt@kms_chamelium_sharpness_filter@filter-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#6507])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_chamelium_sharpness_filter@filter-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#6507])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     NOTRUN -> [FAIL][44] ([Intel XE#1178]) +1 other test fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_content_protection@atomic.html
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#3278])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2341])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-1:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#455]) +9 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          NOTRUN -> [FAIL][48] ([Intel XE#1178]) +1 other test fail
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2320]) +10 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#308])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-random-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1424])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +5 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][54] -> [FAIL][55] ([Intel XE#4633])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][56] -> [SKIP][57] ([Intel XE#4302])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][58] -> [SKIP][59] ([Intel XE#1340])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2244])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#5425])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#701])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][63] -> [SKIP][64] ([Intel XE#2373])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

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

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#1138])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#1138])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1138])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1135])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2316])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-plain-flip:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#1421]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2380]) +1 other test skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1401])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#6312])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2311]) +27 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#651]) +16 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#651]) +5 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#6313])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#5390]) +12 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2352])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#6312]) +4 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2312]) +9 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1469])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#656]) +12 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2313]) +32 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][92] ([Intel XE#653]) +14 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

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

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [PASS][95] -> [SKIP][96] ([Intel XE#1503])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_hdr@static-toggle.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#346])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#346])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#346])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [PASS][100] -> [SKIP][101] ([Intel XE#3012])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#2927])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#2927])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_joiner@basic-ultra-joiner.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_14025/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

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

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#4329])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#599]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#4596])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [PASS][109] -> [SKIP][110] ([Intel XE#4596])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#5021])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#2763]) +3 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#2763]) +4 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     NOTRUN -> [SKIP][114] ([Intel XE#3309])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#3309])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#3309])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][117] -> [FAIL][118] ([Intel XE#718]) +1 other test fail
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2392])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#2499])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html

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

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][126] ([Intel XE#1406] / [Intel XE#2893])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][127] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +8 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1406]) +2 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#1406] / [Intel XE#2414])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#3414])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          NOTRUN -> [SKIP][134] ([Intel XE#2413])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#6503]) +3 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2426])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][137] ([Intel XE#1729])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][138] ([Intel XE#330])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#330])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html

  * igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
    - shard-bmg:          NOTRUN -> [SKIP][140] ([Intel XE#6530])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html

  * igt@panthor/panthor_query@query:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#6530])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@panthor/panthor_query@query.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#1091] / [Intel XE#2849])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#1091] / [Intel XE#2849])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#1123])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0x369:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#1126])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#5626])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#4837]) +16 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug@multigpu-basic-client-many:
    - shard-lnl:          NOTRUN -> [SKIP][148] ([Intel XE#4837]) +4 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@xe_eudebug@multigpu-basic-client-many.html

  * igt@xe_eudebug@multiple-sessions:
    - shard-dg2-set2:     NOTRUN -> [SKIP][149] ([Intel XE#4837]) +7 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@xe_eudebug@multiple-sessions.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][150] ([Intel XE#688]) +3 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

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

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#1392]) +3 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][153] ([Intel XE#288]) +13 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#5007])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_exec_system_allocator@many-64k-mmap-huge.html

  * igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap:
    - shard-bmg:          NOTRUN -> [FAIL][155] ([Intel XE#4937] / [Intel XE#5625])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap.html

  * igt@xe_exec_system_allocator@once-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#4943]) +7 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@xe_exec_system_allocator@once-mmap-huge.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#4915]) +203 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#4943]) +28 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@twice-malloc-prefetch-madvise:
    - shard-lnl:          NOTRUN -> [WARN][159] ([Intel XE#5786])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_exec_system_allocator@twice-malloc-prefetch-madvise.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][160] ([Intel XE#5466])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][161] ([Intel XE#5466] / [Intel XE#5530])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-dg2-set2:     NOTRUN -> [SKIP][162] ([Intel XE#2229])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - shard-lnl:          NOTRUN -> [SKIP][163] ([Intel XE#2229])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][164] ([Intel XE#378])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@xe_module_load@force-load.html
    - shard-lnl:          NOTRUN -> [SKIP][165] ([Intel XE#378])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_module_load@force-load.html

  * igt@xe_oa@invalid-create-userspace-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][166] ([Intel XE#3573]) +5 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][167] ([Intel XE#979])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html
    - shard-lnl:          NOTRUN -> [SKIP][168] ([Intel XE#979])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-basic:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#2284]) +1 other test skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [PASS][171] -> [DMESG-WARN][172] ([Intel XE#6511])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
    - shard-lnl:          [PASS][173] -> [FAIL][174] ([Intel XE#6251])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#4733]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#4733]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_query@multigpu-query-hwconfig:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#944])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_query@multigpu-query-hwconfig.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#944]) +5 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-topology:
    - shard-dg2-set2:     NOTRUN -> [SKIP][179] ([Intel XE#944]) +1 other test skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@xe_query@multigpu-query-topology.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][180] ([Intel XE#4814])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#4130])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
    - shard-lnl:          NOTRUN -> [SKIP][182] ([Intel XE#4130])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#4273])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_sriov_flr@flr-vfs-parallel.html
    - shard-lnl:          NOTRUN -> [SKIP][184] ([Intel XE#4273])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-dg2-set2:     [INCOMPLETE][185] -> [PASS][186]
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][187] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
    - shard-bmg:          [SKIP][189] ([Intel XE#2316]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [FAIL][191] ([Intel XE#301]) -> [PASS][192]
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][193] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][195] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][196] +1 other test pass
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible:
    - shard-lnl:          [FAIL][197] ([Intel XE#3098]) -> [PASS][198] +1 other test pass
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [SKIP][199] ([Intel XE#1503]) -> [PASS][200]
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][201] ([Intel XE#3012]) -> [PASS][202]
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][203] ([Intel XE#718]) -> [PASS][204] +1 other test pass
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_vblank@query-forked-busy:
    - shard-bmg:          [FAIL][205] -> [PASS][206] +1 other test pass
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@kms_vblank@query-forked-busy.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_vblank@query-forked-busy.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#1392]) -> [PASS][208] +1 other test pass
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_threads@threads-bal-mixed-fd-basic:
    - shard-bmg:          [DMESG-WARN][209] ([Intel XE#3428]) -> [PASS][210] +8 other tests pass
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][211] ([Intel XE#5893]) -> [PASS][212]
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][213], [PASS][214], [PASS][215], [PASS][216], [SKIP][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]) ([Intel XE#2457]) -> ([PASS][234], [PASS][235], [PASS][236], [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])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@xe_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@xe_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     [INCOMPLETE][254] ([Intel XE#4504]) -> [PASS][255]
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_pm@s2idle-basic.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm_residency@idle-residency:
    - shard-dg2-set2:     [FAIL][256] ([Intel XE#6362]) -> [PASS][257] +1 other test pass
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-432/igt@xe_pm_residency@idle-residency.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_pm_residency@idle-residency.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
    - shard-lnl:          [FAIL][258] ([Intel XE#6251]) -> [PASS][259]
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html

  * igt@xe_sriov_vram@vf-access-after-resize-down:
    - shard-bmg:          [FAIL][260] ([Intel XE#5937]) -> [PASS][261]
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][262] ([Intel XE#1178]) -> [SKIP][263] ([Intel XE#2341]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@kms_content_protection@atomic.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [DMESG-WARN][264] ([Intel XE#3428]) -> [SKIP][265] ([Intel XE#2316])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][266] ([Intel XE#2312]) -> [SKIP][267] ([Intel XE#2311]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][268] ([Intel XE#5390]) -> [SKIP][269] ([Intel XE#2312]) +3 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][270] ([Intel XE#2312]) -> [SKIP][271] ([Intel XE#5390]) +2 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][272] ([Intel XE#2311]) -> [SKIP][273] ([Intel XE#2312]) +5 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][274] ([Intel XE#2312]) -> [SKIP][275] ([Intel XE#2313]) +2 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][276] ([Intel XE#2313]) -> [SKIP][277] ([Intel XE#2312]) +9 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][278] ([Intel XE#5862]) -> [FAIL][279] ([Intel XE#5862] / [Intel XE#6554]) +1 other test fail
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [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#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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [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#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [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#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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5862
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
  [Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6511
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#6530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530
  [Intel XE#6554]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6554
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8614 -> IGTPW_14025
  * Linux: xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d -> xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745

  IGTPW_14025: 14025
  IGT_8614: 8614
  xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d: 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d
  xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745: 2bc418aa7efaae562e49d84e8b28f799cf624745

== Logs ==

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

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

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

* RE: ✗ Xe.CI.Full: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
  2025-11-09  7:16 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-14 15:35   ` Cavitt, Jonathan
  0 siblings, 0 replies; 8+ messages in thread
From: Cavitt, Jonathan @ 2025-11-14 15:35 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org; +Cc: Cavitt, Jonathan

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

The failures below are unrelated to this patch because this patch only targets xe_pmu
and reverts any changes on test completion.
-Jonathan Cavitt

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Saturday, November 8, 2025 11:16 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.Full: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)

Patch Details
Series:
tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
URL:
https://patchwork.freedesktop.org/series/157194/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/index.html
CI Bug Log - changes from XEIGT_8614_FULL -> XEIGTPW_14025_FULL
Summary

FAILURE

Serious unknown changes coming with XEIGTPW_14025_FULL absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14025_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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 -> 3)

Missing (1): shard-adlp

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-464/igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip_tiling@flip-change-tiling@pipe-b-dp-4-4-rc-ccs-to-x.html> +1 other test incomplete
  *   igt@panthor/panthor_query@query:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@panthor/panthor_query@query.html> +1 other test skip

Known issues

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

IGT changes
Issues hit

  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-270:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +2 other tests skip
  *   igt@kms_big_fb@x-tiled-32bpp-rotate-90:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +4 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +1 other test skip
  *   igt@kms_big_fb@y-tiled-32bpp-rotate-0:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2 other tests skip
  *   igt@kms_big_fb@y-tiled-64bpp-rotate-90:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +13 other tests skip
  *   igt@kms_big_fb@y-tiled-addfb:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>)
  *   igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>)
  *   igt@kms_big_fb@yf-tiled-addfb:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>)
  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +4 other tests skip
  *   igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.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>)
  *   igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-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
  *   igt@kms_bw@linear-tiling-2-displays-2560x1440p:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
  *   igt@kms_bw@linear-tiling-3-displays-2160x1440p:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip
  *   igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +17 other tests skip
  *   igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +23 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +83 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>)
  *   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_14025/shard-bmg-5/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>) +2 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.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#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212> / Intel XE#4345<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345> / Intel XE#4522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522>)
  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.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#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113> / Intel XE#4212<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212> / Intel XE#4522<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522>)
  *   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_14025/shard-bmg-1/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>) +8 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6 other tests skip
  *   igt@kms_cdclk@mode-transition-all-outputs:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#4418<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418>)
  *   igt@kms_chamelium_color@ctm-blue-to-red:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
  *   igt@kms_chamelium_color@ctm-red-to-blue:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>)
  *   igt@kms_chamelium_edid@dp-edid-resolution-list:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +9 other tests skip
  *   igt@kms_chamelium_frames@hdmi-crc-fast:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests skip
  *   igt@kms_chamelium_frames@hdmi-crc-single:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-single.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +5 other tests skip
  *   igt@kms_chamelium_sharpness_filter@filter-basic:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@kms_chamelium_sharpness_filter@filter-basic.html> (Intel XE#6507<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html> (Intel XE#6507<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507>)
  *   igt@kms_content_protection@atomic:
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_content_protection@atomic.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
  *   igt@kms_content_protection@legacy:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_content_protection@legacy.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
  *   igt@kms_content_protection@lic-type-1:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_content_protection@lic-type-1.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +9 other tests skip
  *   igt@kms_content_protection@srm:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail
  *   igt@kms_cursor_crc@cursor-random-32x32:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +10 other tests skip
  *   igt@kms_cursor_crc@cursor-random-512x512:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)
  *   igt@kms_cursor_crc@cursor-random-max-size:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_cursor_crc@cursor-random-max-size.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +5 other tests skip
  *   igt@kms_cursor_legacy@flip-vs-cursor-legacy:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html> (Intel XE#4633<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633>)
  *   igt@kms_display_modes@extended-mode-basic:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#4302<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302>)
  *   igt@kms_dither@fb-8bpc-vs-panel-6bpc:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>)
  *   igt@kms_dsc@dsc-fractional-bpp:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
  *   igt@kms_fbcon_fbt@fbc-suspend:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#5425<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425>)
  *   igt@kms_feature_discovery@chamelium:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_feature_discovery@chamelium.html> (Intel XE#701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/701>)
  *   igt@kms_feature_discovery@display-2x:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@kms_feature_discovery@display-2x.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_feature_discovery@display-2x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
  *   igt@kms_feature_discovery@display-3x:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_feature_discovery@display-3x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
  *   igt@kms_feature_discovery@display-4x:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>)
  *   igt@kms_feature_discovery@psr2:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_feature_discovery@psr2.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>)
  *   igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +4 other tests skip
  *   igt@kms_flip@2x-plain-flip:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_flip@2x-plain-flip.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +5 other tests skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-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>) +5 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.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>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>)
  *   igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html> (Intel XE#6312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312>)
  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +27 other tests skip
  *   igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +16 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +5 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html> (Intel XE#6313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> (Intel XE#5390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390>) +12 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-tiling-y:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/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-1p-offscreen-pri-indfb-draw-render:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html> (Intel XE#6312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel XE#1469<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +12 other tests skip
  *   igt@kms_frontbuffer_tracking@plane-fbc-rte:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#2350<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350>)
  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +32 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +14 other tests skip
  *   igt@kms_hdr@brightness-with-hdr:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/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_14025/shard-bmg-8/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>)
  *   igt@kms_hdr@static-toggle:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_hdr@static-toggle.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_hdr@static-toggle.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
  *   igt@kms_joiner@basic-big-joiner:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>)
  *   igt@kms_joiner@basic-force-big-joiner:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>)
  *   igt@kms_joiner@basic-ultra-joiner:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>)
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2501<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>)
  *   igt@kms_panel_fitting@atomic-fastset:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html> (Intel XE#2486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486>)
  *   igt@kms_pipe_stress@stress-xrgb8888-ytiled:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html> (Intel XE#4329<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329>)
  *   igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +3 other tests skip
  *   igt@kms_plane_multiple@2x-tiling-4:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-4.html> (Intel XE#4596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>)
  *   igt@kms_plane_multiple@2x-tiling-x:
     *   shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html> (Intel XE#4596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>)
  *   igt@kms_plane_multiple@2x-tiling-yf:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html> (Intel XE#5021<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021>)
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +3 other tests skip
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +4 other tests skip
  *   igt@kms_pm_dc@dc5-retention-flops:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>)
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>)
  *   igt@kms_pm_dc@dc6-psr:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) +1 other test fail
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>)
  *   igt@kms_pm_lpsp@kms-lpsp:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html> (Intel XE#2499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499>)
  *   igt@kms_pm_rpm@dpms-mode-unset-lpsp:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/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@modeset-lpsp:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_pm_rpm@modeset-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> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>)
  *   igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893> / Intel XE#4608<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +1 other test skip
  *   igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#4608<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +3 other tests skip
  *   igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +10 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>)
  *   igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3 other tests skip
  *   igt@kms_psr@fbc-pr-cursor-plane-move:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +8 other tests skip
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-8/igt@kms_psr@fbc-pr-cursor-plane-move.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +2 other tests skip
  *   igt@kms_psr@pr-sprite-plane-onoff:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@kms_psr@pr-sprite-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +13 other tests skip
  *   igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
  *   igt@kms_rotation_crc@sprite-rotation-90:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test skip
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>)
  *   igt@kms_scaling_modes@scaling-mode-center:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>)
  *   igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html> (Intel XE#6503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>) +3 other tests skip
  *   igt@kms_tiled_display@basic-test-pattern:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>)
     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>)
  *   igt@kms_tv_load_detect@load-detect:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>)
  *   igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html> (Intel XE#6530<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530>)
  *   igt@panthor/panthor_query@query:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@panthor/panthor_query@query.html> (Intel XE#6530<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530>)
  *   igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/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>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/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_copy_basic@mem-copy-linear-0x369:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>)
  *   igt@xe_copy_basic@mem-set-linear-0x369:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>)
  *   igt@xe_eu_stall@invalid-event-report-count:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html> (Intel XE#5626<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626>)
  *   igt@xe_eudebug@basic-vm-bind-metadata-discovery:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +16 other tests skip
  *   igt@xe_eudebug@multigpu-basic-client-many:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@xe_eudebug@multigpu-basic-client-many.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +4 other tests skip
  *   igt@xe_eudebug@multiple-sessions:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@xe_eudebug@multiple-sessions.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +7 other tests skip
  *   igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +3 other tests skip
  *   igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +9 other tests skip
  *   igt@xe_exec_basic@multigpu-once-bindexecqueue:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +3 other tests skip
  *   igt@xe_exec_fault_mode@once-invalid-userptr-fault:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +13 other tests skip
  *   igt@xe_exec_system_allocator@many-64k-mmap-huge:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_exec_system_allocator@many-64k-mmap-huge.html> (Intel XE#5007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007>)
  *   igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap:
     *   shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_exec_system_allocator@many-execqueues-malloc-bo-unmap.html> (Intel XE#4937<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937> / Intel XE#5625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625>)
  *   igt@xe_exec_system_allocator@once-mmap-huge:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-1/igt@xe_exec_system_allocator@once-mmap-huge.html> (Intel XE#4943<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943>) +7 other tests skip
  *   igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html> (Intel XE#4915<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915>) +203 other tests skip
  *   igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html> (Intel XE#4943<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943>) +28 other tests skip
  *   igt@xe_exec_system_allocator@twice-malloc-prefetch-madvise:
     *   shard-lnl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_exec_system_allocator@twice-malloc-prefetch-madvise.html> (Intel XE#5786<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786>)
  *   igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
     *   shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html> (Intel XE#5466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466>)
     *   shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html> (Intel XE#5466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466> / Intel XE#5530<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530>)
  *   igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
  *   igt@xe_module_load@force-load:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
  *   igt@xe_oa@invalid-create-userspace-config:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +5 other tests skip
  *   igt@xe_pat@pat-index-xelpg:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
  *   igt@xe_pm@d3cold-basic:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_pm@d3cold-basic.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) +1 other test skip
  *   igt@xe_pm@d3cold-basic-exec:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.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>)
  *   igt@xe_pm@s4-vm-bind-prefetch:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_pm@s4-vm-bind-prefetch.html> (Intel XE#6511<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6511>)
  *   igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html> (Intel XE#6251<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251>)
  *   igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html> (Intel XE#4733<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733>) +1 other test skip
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html> (Intel XE#4733<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733>) +1 other test skip
  *   igt@xe_query@multigpu-query-hwconfig:
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_query@multigpu-query-hwconfig.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
  *   igt@xe_query@multigpu-query-invalid-cs-cycles:
     *   shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +5 other tests skip
  *   igt@xe_query@multigpu-query-topology:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-433/igt@xe_query@multigpu-query-topology.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip
  *   igt@xe_render_copy@render-stress-2-copies:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html> (Intel XE#4814<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814>)
  *   igt@xe_sriov_auto_provisioning@exclusive-ranges:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_sriov_auto_provisioning@exclusive-ranges.html> (Intel XE#4130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
  *   igt@xe_sriov_flr@flr-vfs-parallel:
     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_sriov_flr@flr-vfs-parallel.html> (Intel XE#4273<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273>)
     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html> (Intel XE#4273<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273>)

Possible fixes

  *   igt@core_hotunplug@hotunplug-rescan:
     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html>
  *   igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/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_14025/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html>
  *   igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html>
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html>
  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html>
  *   igt@kms_flip@flip-vs-suspend-interruptible:
     *   shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html> +1 other test pass
  *   igt@kms_flip@modeset-vs-vblank-race-interruptible:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> (Intel XE#3098<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> +1 other test pass
  *   igt@kms_hdr@invalid-metadata-sizes:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes.html>
  *   igt@kms_joiner@invalid-modeset-force-big-joiner:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/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_14025/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html>
  *   igt@kms_pm_dc@dc6-dpms:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html> +1 other test pass
  *   igt@kms_vblank@query-forked-busy:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@kms_vblank@query-forked-busy.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@kms_vblank@query-forked-busy.html> +1 other test pass
  *   igt@xe_exec_basic@multigpu-once-bindexecqueue:
     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html> +1 other test pass
  *   igt@xe_exec_threads@threads-bal-mixed-fd-basic:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html> (Intel XE#3428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html> +8 other tests pass
  *   igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
     *   shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html> (Intel XE#5893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html>
  *   igt@xe_module_load@load:
     *   shard-bmg: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@xe_module_load@load.html>) (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@xe_module_load@load.html>)
  *   igt@xe_pm@s2idle-basic:
     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-435/igt@xe_pm@s2idle-basic.html> (Intel XE#4504<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-434/igt@xe_pm@s2idle-basic.html>
  *   igt@xe_pm_residency@idle-residency:
     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-dg2-432/igt@xe_pm_residency@idle-residency.html> (Intel XE#6362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-dg2-466/igt@xe_pm_residency@idle-residency.html> +1 other test pass
  *   igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html> (Intel XE#6251<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html>
  *   igt@xe_sriov_vram@vf-access-after-resize-down:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html> (Intel XE#5937<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-down.html>

Warnings

  *   igt@kms_content_protection@atomic:
     *   shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-1/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_content_protection@atomic.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) +1 other test skip
  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:
     *   shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#3428<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
  *   igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#5390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +3 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-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_14025/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#5390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
     *   shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip
  *   igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8614/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html> (Intel XE#5862<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5862>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14025/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html> (Intel XE#5862<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5862> / Intel XE#6554<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6554>) +1 other test fail

Build changes

  *   IGT: IGT_8614 -> IGTPW_14025
  *   Linux: xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d -> xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745

IGTPW_14025: 14025
IGT_8614: 8614
xe-4073-4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d: 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d
xe-4074-2bc418aa7efaae562e49d84e8b28f799cf624745: 2bc418aa7efaae562e49d84e8b28f799cf624745

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

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

* RE: ✗ i915.CI.BAT: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
  2025-11-08  1:46 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-11-14 15:35   ` Cavitt, Jonathan
  0 siblings, 0 replies; 8+ messages in thread
From: Cavitt, Jonathan @ 2025-11-14 15:35 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org; +Cc: Cavitt, Jonathan

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

The failures below are unrelated to this patch because this patch only targets xe_pmu.
-Jonathan Cavitt


From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, November 7, 2025 5:46 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ i915.CI.BAT: failure for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)

Patch Details
Series:
tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3)
URL:
https://patchwork.freedesktop.org/series/157194/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/index.html
CI Bug Log - changes from IGT_8614 -> IGTPW_14025
Summary

FAILURE

Serious unknown changes coming with IGTPW_14025 absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14025, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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_14025/index.html

Participating hosts (44 -> 44)

Additional (1): bat-mtlp-9
Missing (1): fi-snb-2520m

Possible new issues

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

IGT changes
Possible regressions

  *   igt@i915_selftest@live@objects:
     *   bat-arlh-3: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live@objects.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live@objects.html>

Known issues

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

IGT changes
Issues hit

  *   igt@gem_lmem_swapping@parallel-random-engines:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@gem_lmem_swapping@parallel-random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip
  *   igt@gem_mmap@basic:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@gem_mmap@basic.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
  *   igt@gem_render_tiled_blits@basic:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip
  *   igt@gem_tiled_fence_blits@basic:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@gem_tiled_fence_blits@basic.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +2 other tests skip
  *   igt@i915_pm_rps@basic-api:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@i915_pm_rps@basic-api.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
  *   igt@i915_selftest@live:
     *   bat-arlh-3: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live.html> (i915#14764<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14764> / i915#14818<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14818> / i915#14837<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14837> / i915#15175<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15175> / i915#15198<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15198>)
  *   igt@i915_selftest@live@workarounds:
     *   bat-arlh-3: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-arlh-3/igt@i915_selftest@live@workarounds.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-arlh-3/igt@i915_selftest@live@workarounds.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>)
  *   igt@intel_hwmon@hwmon-read:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) +1 other test skip
  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
  *   igt@kms_addfb_basic@basic-y-tiled-legacy:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) +8 other tests skip
  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) +1 other test skip
  *   igt@kms_dsc@dsc-basic:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9159<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159>)
  *   igt@kms_force_connector_basic@force-load-detect:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_force_connector_basic@force-load-detect.html>
  *   igt@kms_psr@psr-primary-mmap-gtt:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_psr@psr-primary-mmap-gtt.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077> / i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +1 other test skip
  *   igt@kms_setmode@basic-clone-single-crtc:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809>)
  *   igt@prime_vgem@basic-gtt:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@prime_vgem@basic-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +1 other test skip
  *   igt@prime_vgem@basic-read:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@prime_vgem@basic-read.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip
  *   igt@prime_vgem@basic-write:
     *   bat-mtlp-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-mtlp-9/igt@prime_vgem@basic-write.html> (i915#10216<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)

Warnings

  *   igt@i915_selftest@live:
     *   bat-atsm-1: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-atsm-1/igt@i915_selftest@live.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061> / i915#13929<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-atsm-1/igt@i915_selftest@live.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061> / i915#14204<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204>)
  *   igt@i915_selftest@live@mman:
     *   bat-atsm-1: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8614/bat-atsm-1/igt@i915_selftest@live@mman.html> (i915#13929<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14025/bat-atsm-1/igt@i915_selftest@live@mman.html> (i915#14204<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204>)

Build changes

  *   CI: CI-20190529 -> None
  *   IGT: IGT_8614 -> IGTPW_14025
  *   Linux: CI_DRM_17514 -> CI_DRM_17515

CI-20190529: 20190529
CI_DRM_17514: 4dff427fe8bbfd0bdbf7935d23a2aba0c350ab2d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17515: 2bc418aa7efaae562e49d84e8b28f799cf624745 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14025: 14025
IGT_8614: 8614

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

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

* Re: [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum
  2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
                   ` (3 preceding siblings ...)
  2025-11-09  7:16 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-19 15:15 ` Bernatowicz, Marcin
  4 siblings, 0 replies; 8+ messages in thread
From: Bernatowicz, Marcin @ 2025-11-19 15:15 UTC (permalink / raw)
  To: Jonathan Cavitt, igt-dev; +Cc: saurabhg.gupta, alex.zuo, michal.wajdeczko


On 11/7/2025 4:12 PM, Jonathan Cavitt wrote:
> When updating the exec quantum in enable_and_provision_vfs, update the
> preempt timeout value to be equal to the exec quantum value.  Also,
> reset the preempt timeout value on test end in
> unprovision_and_disable_vfs.
>
> v2:
> - Multiply exec quantum by 1 instead of 2 to get the preempt timeout
>    (Michal)
> - Compress the vf and pf exec quantum and preempt timeout values into a
>    single define (VF_EXEC_QUANTUM), and operate on that using a
>    PF_MULTIPLIER and PT_TO_EQ_RATIO to generate the requested values for
>    xe_sriov_set_exec_quantum_ms and xe_sriov_set_preempt_timeout_us in
>    enable_and_provision_vfs (jcavitt)
>
> v3:
> - Revert conversion to defined macros and just add pf_preempt_timeout
>    and vf_preempt_timeout as variables (Michal)
>
> Suggested-by: Michal Wajdeczko<michal.wajdeczko@intel.com>
> Signed-off-by: Jonathan Cavitt<jonathan.cavitt@intel.com>
> ---
>   tests/intel/xe_pmu.c | 15 ++++++++++++---
>   1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
> index 9525655ba2..bc6688744f 100644
> --- a/tests/intel/xe_pmu.c
> +++ b/tests/intel/xe_pmu.c
> @@ -974,6 +974,7 @@ static void test_gt_frequency(int fd, struct drm_xe_engine_class_instance *eci)
>   static unsigned int enable_and_provision_vfs(int fd)
>   {
>   	unsigned int gt, num_vfs;
> +	int pf_preempt_timeout = 64000, vf_preempt_timeout = 32000;
>   	int pf_exec_quantum = 64, vf_exec_quantum = 32, vf;
>   
>   	igt_require(igt_sriov_is_pf(fd));
> @@ -987,12 +988,18 @@ static unsigned int enable_and_provision_vfs(int fd)
>   	num_vfs = igt_sriov_get_enabled_vfs(fd);
>   	igt_require(num_vfs == 2);
>   
> -	/* Set 32ms for VF execution quantum and 64ms for PF execution quantum */
> +	/*
> +	 * Set 32ms for VF execution quantum and 64ms for PF execution quantum.
> +	 * Set the preempt timeout for the VF and PF to equal their execution quantum.
> +	 */
>   	xe_for_each_gt(fd, gt) {
>   		xe_sriov_set_sched_if_idle(fd, gt, 0);
> -		for (int fn = 0; fn <= num_vfs; fn++)
> +		for (int fn = 0; fn <= num_vfs; fn++) {
>   			xe_sriov_set_exec_quantum_ms(fd, fn, gt, fn ? vf_exec_quantum :
>   						     pf_exec_quantum);
> +			xe_sriov_set_preempt_timeout_us(fd, fn, gt, fn ? vf_preempt_timeout :
> +							pf_preempt_timeout);
> +		}
>   	}
>   
>   	/* probe VFs */
> @@ -1011,8 +1018,10 @@ static void unprovision_and_disable_vfs(int fd)
>   
>   	xe_for_each_gt(fd, gt) {
>   		xe_sriov_set_sched_if_idle(fd, gt, 0);
> -		for (int fn = 0; fn <= num_vfs; fn++)
> +		for (int fn = 0; fn <= num_vfs; fn++) {
>   			xe_sriov_set_exec_quantum_ms(fd, fn, gt, 0);
> +			xe_sriov_set_preempt_timeout_us(fd, fn, gt, 0);
> +		}

LGTM,

Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>

>   	}
>   
>   	xe_sriov_disable_vfs_restore_auto_provisioning(fd);

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

end of thread, other threads:[~2025-11-19 15:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-07 15:12 [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Jonathan Cavitt
2025-11-07 15:24 ` Cavitt, Jonathan
2025-11-08  1:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Tie preempt timeout to exec quantum (rev3) Patchwork
2025-11-08  1:46 ` ✗ i915.CI.BAT: failure " Patchwork
2025-11-14 15:35   ` Cavitt, Jonathan
2025-11-09  7:16 ` ✗ Xe.CI.Full: " Patchwork
2025-11-14 15:35   ` Cavitt, Jonathan
2025-11-19 15:15 ` [PATCH v3] tests/intel/xe_pmu: Tie preempt timeout to exec quantum Bernatowicz, Marcin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).