All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion
@ 2026-07-31 14:18 Marcin Bernatowicz
  2026-07-31 14:18 ` [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission Marcin Bernatowicz
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-07-31 14:18 UTC (permalink / raw)
  To: igt-dev
  Cc: adam.miszczak, kamil.konieczny, lukasz.laguna,
	zbigniew.kempczynski, Marcin Bernatowicz

Fixes observed verification failure under looped runs:

gem_wsim -w "1.RCS.5000.0.0,1.BCS.5000.0.0,1.CCS.5000.0.1,1.VCS.5000.0.0"
  -V -r 4000

CRITICAL: Failed assertion:
  w->duration.requested_ticks <= ~w->xe.data->spin.ticks_delta
CRITICAL: error: 96000 > 2

V1 attempted to fix the issue by initializing ticks_delta to ~0u in
xe_spin and resetting it from the host before each fixed-duration
submission in gem_wsim.

V2 fix (suggested by Zbigniew): write sentinel 0 to ticks_delta and use
MI_SEMAPHORE_WAIT to confirm it's in memory before entering the loop.
This is a self-contained GPU-side fix - no host-side reset per submission
needed. Also switches from inverted ticks_delta (STOREINV + ~ctx_ticks)
to direct elapsed (STORE + MAD_LT_IDD + ctx_ticks) for readability.

V1 -> V2:
- Replace host-side ticks_delta reset with GPU-side SDW+SEMAPHORE_WAIT
- Switch from inverted to direct elapsed ticks logic
- Remove ineffective pad loop between SRM and COND_BBE
- Add xe_sriov_scheduling.c fix for the same ticks_delta check

Marcin Bernatowicz (3):
  lib/xe/xe_spin: fix premature batch exit on BO resubmission
  benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic
  tests/xe_sriov_scheduling: fix ticks_delta check for non-inverted
    logic

 benchmarks/gem_wsim.c             |  2 +-
 lib/xe/xe_spin.c                  | 31 +++++++++++++++++--------------
 tests/intel/xe_sriov_scheduling.c |  2 +-
 3 files changed, 19 insertions(+), 16 deletions(-)

-- 
2.43.0


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

* [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
@ 2026-07-31 14:18 ` Marcin Bernatowicz
  2026-07-31 15:52   ` Zbigniew Kempczyński
  2026-07-31 14:18 ` [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic Marcin Bernatowicz
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-07-31 14:18 UTC (permalink / raw)
  To: igt-dev
  Cc: adam.miszczak, kamil.konieczny, lukasz.laguna,
	zbigniew.kempczynski, Marcin Bernatowicz

COND_BBE reads ticks_delta from memory. When the same BO is resubmitted,
COND_BBE can read the value left by the previous batch(elapsed >= ctx_ticks
at that batch's exit), satisfying the exit condition on the very first loop
iteration before any new elapsed time is stored.

Write sentinel 0 to ticks_delta at batch start and use
MI_SEMAPHORE_WAIT to poll until it is visible in memory before entering
the loop. This guarantees COND_BBE cannot read the stale value from the
previous batch.

Also switch from inverted ticks_delta logic (STOREINV + ~ctx_ticks) to
direct elapsed ticks (STORE + MAD_LT_IDD + ctx_ticks) for readability.
The pad loop between SRM and COND_BBE is removed as it does not help.

Suggested-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
 lib/xe/xe_spin.c | 31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
index 874310789..2863d2163 100644
--- a/lib/xe/xe_spin.c
+++ b/lib/xe/xe_spin.c
@@ -52,7 +52,6 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
 	uint64_t start_addr = opts->addr + offsetof(struct xe_spin, start);
 	uint64_t end_addr = opts->addr + offsetof(struct xe_spin, end);
 	uint64_t ticks_delta_addr = opts->addr + offsetof(struct xe_spin, ticks_delta);
-	uint64_t pad_addr = opts->addr + offsetof(struct xe_spin, pad);
 	uint64_t timestamp_addr = opts->addr + offsetof(struct xe_spin, timestamp);
 	int b = 0;
 	uint32_t devid;
@@ -77,6 +76,18 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
 	spin->batch[b++] = start_addr >> 32;
 	spin->batch[b++] = 0xc0ffee;
 
+	if (opts->ctx_ticks) {
+		/* Write sentinel and wait until it is visible in memory before loop. */
+		spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+		spin->batch[b++] = ticks_delta_addr;
+		spin->batch[b++] = ticks_delta_addr >> 32;
+		spin->batch[b++] = 0;
+		spin->batch[b++] = MI_SEMAPHORE_WAIT | MI_SEMAPHORE_POLL | MI_SEMAPHORE_SAD_EQ_SDD;
+		spin->batch[b++] = 0;
+		spin->batch[b++] = ticks_delta_addr;
+		spin->batch[b++] = ticks_delta_addr >> 32;
+	}
+
 	loop_addr = opts->addr + b * sizeof(uint32_t);
 
 	if (opts->preempt)
@@ -101,12 +112,12 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
 		spin->batch[b++] = opts->use_queue_timestamp ? QUEUE_TIMESTAMP : CTX_TIMESTAMP;
 		spin->batch[b++] = CS_GPR(NOW_TS);
 
-		/* delta = now - start; inverted to match COND_BBE */
+		/* delta = now - start */
 		spin->batch[b++] = MI_MATH(4);
 		spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(NOW_TS));
 		spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(START_TS));
 		spin->batch[b++] = MI_MATH_SUB;
-		spin->batch[b++] = MI_MATH_STOREINV(MI_MATH_REG(NOW_TS), MI_MATH_REG_ACCU);
+		spin->batch[b++] = MI_MATH_STORE(MI_MATH_REG(NOW_TS), MI_MATH_REG_ACCU);
 
 		/* Save delta for reading by COND_BBE */
 		spin->batch[b++] = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_CS_MMIO;
@@ -114,17 +125,9 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
 		spin->batch[b++] = ticks_delta_addr;
 		spin->batch[b++] = ticks_delta_addr >> 32;
 
-		/* Delay between SRM and COND_BBE to post the writes */
-		for (int n = 0; n < 8; n++) {
-			spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
-			spin->batch[b++] = pad_addr;
-			spin->batch[b++] = pad_addr >> 32;
-			spin->batch[b++] = 0xc0ffee;
-		}
-
-		/* Break if delta [time elapsed] > ns */
-		spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
-		spin->batch[b++] = ~(opts->ctx_ticks);
+		/* Break if delta [time elapsed] >= ns */
+		spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | MAD_LT_IDD | 2;
+		spin->batch[b++] = opts->ctx_ticks;
 		spin->batch[b++] = ticks_delta_addr;
 		spin->batch[b++] = ticks_delta_addr >> 32;
 	}
-- 
2.43.0


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

* [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
  2026-07-31 14:18 ` [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission Marcin Bernatowicz
@ 2026-07-31 14:18 ` Marcin Bernatowicz
  2026-07-31 15:53   ` Zbigniew Kempczyński
  2026-07-31 14:18 ` [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check " Marcin Bernatowicz
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-07-31 14:18 UTC (permalink / raw)
  To: igt-dev
  Cc: adam.miszczak, kamil.konieczny, lukasz.laguna,
	zbigniew.kempczynski, Marcin Bernatowicz

xe_spin now stores elapsed ticks directly in ticks_delta (not inverted).
Update the post-execution assertion accordingly.

Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
 benchmarks/gem_wsim.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index 8be44d0c8..462188708 100644
--- a/benchmarks/gem_wsim.c
+++ b/benchmarks/gem_wsim.c
@@ -2676,7 +2676,7 @@ static void xe_w_step_sync_and_verify(struct w_step *w)
 
 	if (!w->duration.unbound) {
 		igt_assert(w->duration.requested_ticks && w->xe.data->spin.ticks_delta);
-		igt_assert_lte(w->duration.requested_ticks, ~w->xe.data->spin.ticks_delta);
+		igt_assert_lte(w->duration.requested_ticks, w->xe.data->spin.ticks_delta);
 	}
 }
 
-- 
2.43.0


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

* [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check for non-inverted logic
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
  2026-07-31 14:18 ` [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission Marcin Bernatowicz
  2026-07-31 14:18 ` [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic Marcin Bernatowicz
@ 2026-07-31 14:18 ` Marcin Bernatowicz
  2026-07-31 15:54   ` Zbigniew Kempczyński
  2026-07-31 14:53 ` ✓ Xe.CI.BAT: success for gem_wsim: fix batch premature completion (rev2) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-07-31 14:18 UTC (permalink / raw)
  To: igt-dev
  Cc: adam.miszczak, kamil.konieczny, lukasz.laguna,
	zbigniew.kempczynski, Marcin Bernatowicz

xe_spin now stores elapsed ticks directly in ticks_delta (not inverted).
Update subm_is_work_complete() accordingly.

Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
 tests/intel/xe_sriov_scheduling.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
index 47cc5d9b0..5d30b961d 100644
--- a/tests/intel/xe_sriov_scheduling.c
+++ b/tests/intel/xe_sriov_scheduling.c
@@ -189,7 +189,7 @@ static void subm_exec_slot(struct subm *s, unsigned int slot)
 
 static bool subm_is_work_complete(struct subm *s, unsigned int slot)
 {
-	return s->expected_ticks <= ~s->spin[slot]->ticks_delta;
+	return s->expected_ticks <= s->spin[slot]->ticks_delta;
 }
 
 static bool subm_is_exec_queue_banned(struct subm *s)
-- 
2.43.0


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

* ✓ Xe.CI.BAT: success for gem_wsim: fix batch premature completion (rev2)
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
                   ` (2 preceding siblings ...)
  2026-07-31 14:18 ` [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check " Marcin Bernatowicz
@ 2026-07-31 14:53 ` Patchwork
  2026-07-31 15:25 ` ✓ i915.CI.BAT: " Patchwork
  2026-07-31 16:37 ` ✓ Xe.CI.FULL: " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-31 14:53 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev

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

== Series Details ==

Series: gem_wsim: fix batch premature completion (rev2)
URL   : https://patchwork.freedesktop.org/series/171174/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_9035_BAT -> XEIGTPW_15618_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_9035 -> IGTPW_15618

  IGTPW_15618: 15618
  IGT_9035: 61674acebe1520ef02165573257f552366c2879c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a: f9ef9f302ee01854066ec6da30550da6ea6cb03a

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for gem_wsim: fix batch premature completion (rev2)
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
                   ` (3 preceding siblings ...)
  2026-07-31 14:53 ` ✓ Xe.CI.BAT: success for gem_wsim: fix batch premature completion (rev2) Patchwork
@ 2026-07-31 15:25 ` Patchwork
  2026-07-31 16:37 ` ✓ Xe.CI.FULL: " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-31 15:25 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev

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

== Series Details ==

Series: gem_wsim: fix batch premature completion (rev2)
URL   : https://patchwork.freedesktop.org/series/171174/
State : success

== Summary ==

CI Bug Log - changes from IGT_9035 -> IGTPW_15618
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (1): bat-adls-6 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@gem_tiled_pread_basic@basic:
    - bat-adls-6:         NOTRUN -> [SKIP][2] ([i915#15656])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_selftest@live@client:
    - fi-kbl-7567u:       [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +13 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9035/fi-kbl-7567u/igt@i915_selftest@live@client.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/fi-kbl-7567u/igt@i915_selftest@live@client.html

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

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

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][7] ([i915#16361])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

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

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9732]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

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

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#3291]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@migrate:
    - fi-bsw-nick:        [DMESG-FAIL][13] -> [PASS][14] +1 other test pass
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9035/fi-bsw-nick/igt@i915_selftest@live@migrate.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15618/fi-bsw-nick/igt@i915_selftest@live@migrate.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_9035 -> IGTPW_15618

  CI-20190529: 20190529
  CI_DRM_18932: f9ef9f302ee01854066ec6da30550da6ea6cb03a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15618: 15618
  IGT_9035: 61674acebe1520ef02165573257f552366c2879c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission
  2026-07-31 14:18 ` [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission Marcin Bernatowicz
@ 2026-07-31 15:52   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2026-07-31 15:52 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev, adam.miszczak, kamil.konieczny, lukasz.laguna

On Fri, Jul 31, 2026 at 04:18:04PM +0200, Marcin Bernatowicz wrote:
> COND_BBE reads ticks_delta from memory. When the same BO is resubmitted,
> COND_BBE can read the value left by the previous batch(elapsed >= ctx_ticks
> at that batch's exit), satisfying the exit condition on the very first loop
> iteration before any new elapsed time is stored.
> 
> Write sentinel 0 to ticks_delta at batch start and use
> MI_SEMAPHORE_WAIT to poll until it is visible in memory before entering
> the loop. This guarantees COND_BBE cannot read the stale value from the
> previous batch.
> 
> Also switch from inverted ticks_delta logic (STOREINV + ~ctx_ticks) to
> direct elapsed ticks (STORE + MAD_LT_IDD + ctx_ticks) for readability.
> The pad loop between SRM and COND_BBE is removed as it does not help.
> 
> Suggested-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
>  lib/xe/xe_spin.c | 31 +++++++++++++++++--------------
>  1 file changed, 17 insertions(+), 14 deletions(-)
> 
> diff --git a/lib/xe/xe_spin.c b/lib/xe/xe_spin.c
> index 874310789..2863d2163 100644
> --- a/lib/xe/xe_spin.c
> +++ b/lib/xe/xe_spin.c
> @@ -52,7 +52,6 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
>  	uint64_t start_addr = opts->addr + offsetof(struct xe_spin, start);
>  	uint64_t end_addr = opts->addr + offsetof(struct xe_spin, end);
>  	uint64_t ticks_delta_addr = opts->addr + offsetof(struct xe_spin, ticks_delta);
> -	uint64_t pad_addr = opts->addr + offsetof(struct xe_spin, pad);
>  	uint64_t timestamp_addr = opts->addr + offsetof(struct xe_spin, timestamp);
>  	int b = 0;
>  	uint32_t devid;
> @@ -77,6 +76,18 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
>  	spin->batch[b++] = start_addr >> 32;
>  	spin->batch[b++] = 0xc0ffee;
>  
> +	if (opts->ctx_ticks) {
> +		/* Write sentinel and wait until it is visible in memory before loop. */
> +		spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> +		spin->batch[b++] = ticks_delta_addr;
> +		spin->batch[b++] = ticks_delta_addr >> 32;
> +		spin->batch[b++] = 0;
> +		spin->batch[b++] = MI_SEMAPHORE_WAIT | MI_SEMAPHORE_POLL | MI_SEMAPHORE_SAD_EQ_SDD;
> +		spin->batch[b++] = 0;
> +		spin->batch[b++] = ticks_delta_addr;
> +		spin->batch[b++] = ticks_delta_addr >> 32;
> +	}
> +

Great, it is more reliable than resetting ticks_delta outside spinner code.

>  	loop_addr = opts->addr + b * sizeof(uint32_t);
>  
>  	if (opts->preempt)
> @@ -101,12 +112,12 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
>  		spin->batch[b++] = opts->use_queue_timestamp ? QUEUE_TIMESTAMP : CTX_TIMESTAMP;
>  		spin->batch[b++] = CS_GPR(NOW_TS);
>  
> -		/* delta = now - start; inverted to match COND_BBE */
> +		/* delta = now - start */
>  		spin->batch[b++] = MI_MATH(4);
>  		spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(NOW_TS));
>  		spin->batch[b++] = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(START_TS));
>  		spin->batch[b++] = MI_MATH_SUB;
> -		spin->batch[b++] = MI_MATH_STOREINV(MI_MATH_REG(NOW_TS), MI_MATH_REG_ACCU);
> +		spin->batch[b++] = MI_MATH_STORE(MI_MATH_REG(NOW_TS), MI_MATH_REG_ACCU);
>  
>  		/* Save delta for reading by COND_BBE */
>  		spin->batch[b++] = MI_STORE_REGISTER_MEM_GEN8 | MI_SRM_CS_MMIO;
> @@ -114,17 +125,9 @@ void xe_spin_init(struct xe_spin *spin, struct xe_spin_opts *opts)
>  		spin->batch[b++] = ticks_delta_addr;
>  		spin->batch[b++] = ticks_delta_addr >> 32;
>  
> -		/* Delay between SRM and COND_BBE to post the writes */
> -		for (int n = 0; n < 8; n++) {
> -			spin->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> -			spin->batch[b++] = pad_addr;
> -			spin->batch[b++] = pad_addr >> 32;
> -			spin->batch[b++] = 0xc0ffee;
> -		}
> -
> -		/* Break if delta [time elapsed] > ns */
> -		spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | 2;
> -		spin->batch[b++] = ~(opts->ctx_ticks);
> +		/* Break if delta [time elapsed] >= ns */
> +		spin->batch[b++] = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | MAD_LT_IDD | 2;
> +		spin->batch[b++] = opts->ctx_ticks;

And this is easier to read.

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

>  		spin->batch[b++] = ticks_delta_addr;
>  		spin->batch[b++] = ticks_delta_addr >> 32;
>  	}
> -- 
> 2.43.0
> 

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

* Re: [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic
  2026-07-31 14:18 ` [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic Marcin Bernatowicz
@ 2026-07-31 15:53   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2026-07-31 15:53 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev, adam.miszczak, kamil.konieczny, lukasz.laguna

On Fri, Jul 31, 2026 at 04:18:05PM +0200, Marcin Bernatowicz wrote:
> xe_spin now stores elapsed ticks directly in ticks_delta (not inverted).
> Update the post-execution assertion accordingly.
> 

LGTM:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
>  benchmarks/gem_wsim.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
> index 8be44d0c8..462188708 100644
> --- a/benchmarks/gem_wsim.c
> +++ b/benchmarks/gem_wsim.c
> @@ -2676,7 +2676,7 @@ static void xe_w_step_sync_and_verify(struct w_step *w)
>  
>  	if (!w->duration.unbound) {
>  		igt_assert(w->duration.requested_ticks && w->xe.data->spin.ticks_delta);
> -		igt_assert_lte(w->duration.requested_ticks, ~w->xe.data->spin.ticks_delta);
> +		igt_assert_lte(w->duration.requested_ticks, w->xe.data->spin.ticks_delta);
>  	}
>  }
>  
> -- 
> 2.43.0
> 

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

* Re: [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check for non-inverted logic
  2026-07-31 14:18 ` [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check " Marcin Bernatowicz
@ 2026-07-31 15:54   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2026-07-31 15:54 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev, adam.miszczak, kamil.konieczny, lukasz.laguna

On Fri, Jul 31, 2026 at 04:18:06PM +0200, Marcin Bernatowicz wrote:
> xe_spin now stores elapsed ticks directly in ticks_delta (not inverted).
> Update subm_is_work_complete() accordingly.
>

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
>  tests/intel/xe_sriov_scheduling.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/intel/xe_sriov_scheduling.c b/tests/intel/xe_sriov_scheduling.c
> index 47cc5d9b0..5d30b961d 100644
> --- a/tests/intel/xe_sriov_scheduling.c
> +++ b/tests/intel/xe_sriov_scheduling.c
> @@ -189,7 +189,7 @@ static void subm_exec_slot(struct subm *s, unsigned int slot)
>  
>  static bool subm_is_work_complete(struct subm *s, unsigned int slot)
>  {
> -	return s->expected_ticks <= ~s->spin[slot]->ticks_delta;
> +	return s->expected_ticks <= s->spin[slot]->ticks_delta;
>  }
>  
>  static bool subm_is_exec_queue_banned(struct subm *s)
> -- 
> 2.43.0
> 

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

* ✓ Xe.CI.FULL: success for gem_wsim: fix batch premature completion (rev2)
  2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
                   ` (4 preceding siblings ...)
  2026-07-31 15:25 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-31 16:37 ` Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-07-31 16:37 UTC (permalink / raw)
  To: Marcin Bernatowicz; +Cc: igt-dev

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

== Series Details ==

Series: gem_wsim: fix batch premature completion (rev2)
URL   : https://patchwork.freedesktop.org/series/171174/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_9035_FULL -> XEIGTPW_15618_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getversion@basic:
    - shard-bmg:          [PASS][1] -> [FAIL][2] ([Intel XE#8714]) +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@core_getversion@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@core_getversion@basic.html

  * igt@fbdev@write:
    - shard-bmg:          [PASS][3] -> [SKIP][4] ([Intel XE#2134]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@fbdev@write.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@fbdev@write.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2327])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#7679])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#367])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][9] -> [INCOMPLETE][10] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +6 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

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

  * igt@kms_chamelium_sharpness_filter@filter-basic:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#6507])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_chamelium_sharpness_filter@filter-basic.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#6974])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@mei-interface:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#7642])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +4 other tests fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][17] ([Intel XE#6707] / [Intel XE#7439])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2321] / [Intel XE#7355])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#8265]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2374] / [Intel XE#6128])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][22] -> [FAIL][23] ([Intel XE#301])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#8714]) +143 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#7061]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2311]) +12 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2313]) +21 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-render.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#6901])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7591])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#8303]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#8395] / [Intel XE#8396])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html

  * igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#8396]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#7794])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#1489])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2387] / [Intel XE#7429])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_psr@psr2-sprite-render.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#6503])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#6599])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_compute@ccs-mode-compute-kernel.html

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

  * igt@xe_evict@evict-threads-small-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#8370])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_evict@evict-threads-small-multi-queue.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#8374]) +4 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#8364]) +11 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_reset@cm-multi-queue-gt-reset:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#8369]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_exec_reset@cm-multi-queue-gt-reset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#8378]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html

  * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
    - shard-bmg:          [PASS][50] -> [ABORT][51] ([Intel XE#8007]) +1 other test abort
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2229])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77]) -> ([PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [SKIP][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103]) ([Intel XE#2457] / [Intel XE#7405])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@xe_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@xe_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@xe_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@xe_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@xe_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@xe_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@xe_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-3/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-3/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-migration-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#6964])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_multigpu_svm@mgpu-migration-prefetch.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#1420] / [Intel XE#7590])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#7590])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#944])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_spin_batch@spin-all:
    - shard-bmg:          [PASS][108] -> [SKIP][109] ([Intel XE#8714]) +778 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@xe_spin_batch@spin-all.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_spin_batch@spin-all.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [ABORT][110] ([Intel XE#8007]) -> [PASS][111] +1 other test pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-3/igt@core_hotunplug@unplug-rescan.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@core_hotunplug@unplug-rescan.html

  * igt@fbdev@nullptr:
    - shard-bmg:          [SKIP][112] ([Intel XE#2134]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@fbdev@nullptr.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@fbdev@nullptr.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][114] ([Intel XE#301]) -> [PASS][115] +2 other tests pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [FAIL][116] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][117] +1 other test pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          [SKIP][118] ([Intel XE#8714]) -> [PASS][119] +671 other tests pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][120] ([Intel XE#8399]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html

  * igt@xe_pat@pt-caching-update-pat-and-pte:
    - shard-bmg:          [DMESG-WARN][122] ([Intel XE#8300]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@xe_pat@pt-caching-update-pat-and-pte.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@xe_pat@pt-caching-update-pat-and-pte.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          [FAIL][124] ([Intel XE#6569]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][126] ([Intel XE#8714]) -> [SKIP][127] ([Intel XE#2327]) +3 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-bmg:          [SKIP][128] ([Intel XE#2327]) -> [SKIP][129] ([Intel XE#8714]) +2 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][130] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][131] ([Intel XE#8714]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          [SKIP][132] ([Intel XE#8714]) -> [SKIP][133] ([Intel XE#7059] / [Intel XE#7085])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][134] ([Intel XE#610] / [Intel XE#7387]) -> [SKIP][135] ([Intel XE#8714])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [SKIP][136] ([Intel XE#8714]) -> [SKIP][137] ([Intel XE#1124]) +10 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][138] ([Intel XE#1124]) -> [SKIP][139] ([Intel XE#8714]) +11 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][140] ([Intel XE#8714]) -> [SKIP][141] ([Intel XE#2328] / [Intel XE#7367])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][142] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][143] ([Intel XE#8714])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][144] ([Intel XE#8714]) -> [SKIP][145] ([Intel XE#7679])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
    - shard-bmg:          [SKIP][146] ([Intel XE#367]) -> [SKIP][147] ([Intel XE#8714]) +3 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][148] ([Intel XE#8714]) -> [SKIP][149] ([Intel XE#367]) +2 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
    - shard-bmg:          [SKIP][150] ([Intel XE#2887]) -> [SKIP][151] ([Intel XE#8714]) +12 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][152] ([Intel XE#8714]) -> [SKIP][153] ([Intel XE#2887]) +13 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][154] ([Intel XE#3432]) -> [SKIP][155] ([Intel XE#8714]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][156] ([Intel XE#8714]) -> [SKIP][157] ([Intel XE#3432]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][158] ([Intel XE#8714]) -> [SKIP][159] ([Intel XE#2724] / [Intel XE#7449])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_cdclk@plane-scaling.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_audio@dp-audio-after-suspend:
    - shard-bmg:          [SKIP][160] ([Intel XE#2252]) -> [SKIP][161] ([Intel XE#8714]) +9 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_chamelium_audio@dp-audio-after-suspend.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          [SKIP][162] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][163] ([Intel XE#8714]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          [SKIP][164] ([Intel XE#8714]) -> [SKIP][165] ([Intel XE#2325] / [Intel XE#7358])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
    - shard-bmg:          [SKIP][166] ([Intel XE#7358]) -> [SKIP][167] ([Intel XE#8714]) +2 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html

  * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][168] ([Intel XE#8714]) -> [SKIP][169] ([Intel XE#7358]) +1 other test skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          [SKIP][170] ([Intel XE#8714]) -> [SKIP][171] ([Intel XE#2252]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][172] ([Intel XE#8714]) -> [FAIL][173] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_content_protection@atomic.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          [SKIP][174] ([Intel XE#8714]) -> [SKIP][175] ([Intel XE#2390] / [Intel XE#6974])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-bmg:          [SKIP][176] ([Intel XE#6974]) -> [SKIP][177] ([Intel XE#8714]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          [SKIP][178] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][179] ([Intel XE#8714])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          [SKIP][180] ([Intel XE#7642]) -> [SKIP][181] ([Intel XE#8714])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_content_protection@type1.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [SKIP][182] ([Intel XE#8714]) -> [FAIL][183] ([Intel XE#6707] / [Intel XE#7439])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          [SKIP][184] ([Intel XE#8714]) -> [SKIP][185] ([Intel XE#2320]) +5 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-bmg:          [SKIP][186] ([Intel XE#8714]) -> [SKIP][187] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          [SKIP][188] ([Intel XE#2320]) -> [SKIP][189] ([Intel XE#8714]) +6 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@kms_cursor_crc@cursor-random-32x32.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-bmg:          [SKIP][190] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][191] ([Intel XE#8714])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][192] ([Intel XE#7571]) -> [SKIP][193] ([Intel XE#8714])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][194] ([Intel XE#8714]) -> [FAIL][195] ([Intel XE#7571])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          [SKIP][196] ([Intel XE#8714]) -> [SKIP][197] ([Intel XE#2286] / [Intel XE#6035])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][198] ([Intel XE#8714]) -> [SKIP][199] ([Intel XE#4210] / [Intel XE#7467])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][200] ([Intel XE#8714]) -> [SKIP][201] ([Intel XE#1508])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][202] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][203] ([Intel XE#8714])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][204] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][205] ([Intel XE#8714])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc-bigjoiner:
    - shard-bmg:          [SKIP][206] ([Intel XE#8265]) -> [SKIP][207] ([Intel XE#8714]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-bigjoiner.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_dsc@dsc-with-bpc-bigjoiner.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-bmg:          [SKIP][208] ([Intel XE#8714]) -> [SKIP][209] ([Intel XE#8265])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-bmg:          [SKIP][210] ([Intel XE#8714]) -> [SKIP][211] ([Intel XE#4422] / [Intel XE#7442])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          [SKIP][212] ([Intel XE#8680]) -> [SKIP][213] ([Intel XE#8714])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_fbcon_fbt@psr.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][214] ([Intel XE#8714]) -> [SKIP][215] ([Intel XE#2373] / [Intel XE#7448])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-bmg:          [SKIP][216] ([Intel XE#8714]) -> [SKIP][217] ([Intel XE#2375])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@dsc:
    - shard-bmg:          [SKIP][218] ([Intel XE#8714]) -> [SKIP][219] ([Intel XE#8586])
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_feature_discovery@dsc.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_feature_discovery@dsc.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          [SKIP][220] ([Intel XE#8714]) -> [SKIP][221] ([Intel XE#2374] / [Intel XE#6127])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_feature_discovery@psr1.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          [SKIP][222] ([Intel XE#8714]) -> [SKIP][223] ([Intel XE#7178] / [Intel XE#7351]) +4 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-bmg:          [SKIP][224] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][225] ([Intel XE#8714]) +3 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
    - shard-bmg:          [SKIP][226] ([Intel XE#7179]) -> [SKIP][227] ([Intel XE#8714])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][228] ([Intel XE#8714]) -> [SKIP][229] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][230] ([Intel XE#4141]) -> [SKIP][231] ([Intel XE#8714]) +20 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][232] ([Intel XE#8714]) -> [SKIP][233] ([Intel XE#4141]) +14 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
    - shard-bmg:          [SKIP][234] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][235] ([Intel XE#8714]) +3 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][236] ([Intel XE#2311]) -> [SKIP][237] ([Intel XE#8714]) +66 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][238] ([Intel XE#8714]) -> [SKIP][239] ([Intel XE#2311]) +58 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-cur-indfb-draw-blt.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render:
    - shard-bmg:          [SKIP][240] ([Intel XE#7061]) -> [SKIP][241] ([Intel XE#8714]) +8 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
    - shard-bmg:          [SKIP][242] ([Intel XE#7399]) -> [SKIP][243] ([Intel XE#8714])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][244] ([Intel XE#8714]) -> [SKIP][245] ([Intel XE#2350] / [Intel XE#7503])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][246] ([Intel XE#2313]) -> [SKIP][247] ([Intel XE#8714]) +72 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][248] ([Intel XE#8714]) -> [SKIP][249] ([Intel XE#2313]) +58 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
    - shard-bmg:          [SKIP][250] ([Intel XE#8714]) -> [SKIP][251] ([Intel XE#7061]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][252] ([Intel XE#8714]) -> [SKIP][253] ([Intel XE#6901])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          [SKIP][254] ([Intel XE#8714]) -> [SKIP][255] ([Intel XE#4298] / [Intel XE#5873])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][256] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][257] ([Intel XE#8714]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          [SKIP][258] ([Intel XE#6911] / [Intel XE#7378]) -> [SKIP][259] ([Intel XE#8714])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][260] ([Intel XE#8714]) -> [SKIP][261] ([Intel XE#2486]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_panel_fitting@legacy.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][262] ([Intel XE#8714]) -> [SKIP][263] ([Intel XE#7283]) +6 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          [SKIP][264] ([Intel XE#7283]) -> [SKIP][265] ([Intel XE#8714]) +6 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          [SKIP][266] ([Intel XE#8714]) -> [SKIP][267] ([Intel XE#2393]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][268] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][269] ([Intel XE#8714])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75:
    - shard-bmg:          [SKIP][270] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][271] ([Intel XE#8714])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-bmg:          [SKIP][272] ([Intel XE#8714]) -> [SKIP][273] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          [SKIP][274] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][275] ([Intel XE#8714])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][276] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) -> [SKIP][277] ([Intel XE#8714])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-after-dc6:
    - shard-bmg:          [SKIP][278] ([Intel XE#8395] / [Intel XE#8396]) -> [SKIP][279] ([Intel XE#8714]) +1 other test skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_pm_dc@dc3co-after-dc6.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_dc@dc3co-after-dc6.html

  * igt@kms_pm_dc@dc3co-framedrop-check:
    - shard-bmg:          [SKIP][280] ([Intel XE#8714]) -> [SKIP][281] ([Intel XE#8395] / [Intel XE#8396])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_pm_dc@dc3co-framedrop-check.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_pm_dc@dc3co-framedrop-check.html

  * igt@kms_pm_dc@dc5-pageflip-negative:
    - shard-bmg:          [SKIP][282] ([Intel XE#8714]) -> [SKIP][283] ([Intel XE#6927])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_pm_dc@dc5-pageflip-negative.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_pm_dc@dc5-pageflip-negative.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          [SKIP][284] ([Intel XE#7794]) -> [SKIP][285] ([Intel XE#8714])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-bmg:          [SKIP][286] ([Intel XE#8714]) -> [SKIP][287] ([Intel XE#2505] / [Intel XE#7447])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][288] ([Intel XE#8714]) -> [SKIP][289] ([Intel XE#2499])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][290] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][291] ([Intel XE#8714]) +1 other test skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][292] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][293] ([Intel XE#8714])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          [SKIP][294] ([Intel XE#8714]) -> [SKIP][295] ([Intel XE#6814] / [Intel XE#7428])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_pm_rpm@package-g7.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][296] ([Intel XE#1489]) -> [SKIP][297] ([Intel XE#8714]) +7 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][298] ([Intel XE#8714]) -> [SKIP][299] ([Intel XE#1489]) +11 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-suspend:
    - shard-bmg:          [SKIP][300] ([Intel XE#8714]) -> [SKIP][301] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_psr@fbc-psr-suspend.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_psr@psr2-primary-page-flip:
    - shard-bmg:          [SKIP][302] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][303] ([Intel XE#8714]) +15 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_psr@psr2-primary-page-flip.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_psr@psr2-primary-page-flip.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][304] ([Intel XE#7795]) -> [SKIP][305] ([Intel XE#8714])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          [SKIP][306] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][307] ([Intel XE#8714]) +1 other test skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][308] ([Intel XE#8714]) -> [SKIP][309] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][310] ([Intel XE#8714]) -> [SKIP][311] ([Intel XE#1435] / [Intel XE#8695])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-suspend:
    - shard-bmg:          [SKIP][312] ([Intel XE#6503]) -> [SKIP][313] ([Intel XE#8714]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@kms_sharpness_filter@filter-suspend.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_sharpness_filter@filter-suspend.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          [SKIP][314] ([Intel XE#8714]) -> [SKIP][315] ([Intel XE#6503]) +3 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][316] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][317] ([Intel XE#8714])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][318] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][319] ([Intel XE#8714])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          [SKIP][320] ([Intel XE#8714]) -> [SKIP][321] ([Intel XE#2450] / [Intel XE#5857])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][322] ([Intel XE#1499]) -> [SKIP][323] ([Intel XE#8714]) +1 other test skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@kms_vrr@flip-suspend.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][324] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][325] ([Intel XE#8714])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@kms_vrr@lobf.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@kms_vrr@lobf.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          [SKIP][326] ([Intel XE#8714]) -> [SKIP][327] ([Intel XE#1499]) +1 other test skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@kms_vrr@max-min.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@kms_vrr@max-min.html

  * igt@xe_cw_post_sync@walker-post-sync:
    - shard-bmg:          [SKIP][328] ([Intel XE#8608]) -> [SKIP][329] ([Intel XE#8714])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-10/igt@xe_cw_post_sync@walker-post-sync.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_cw_post_sync@walker-post-sync.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          [SKIP][330] ([Intel XE#8714]) -> [SKIP][331] ([Intel XE#8370]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_evict@evict-small-multi-queue:
    - shard-bmg:          [SKIP][332] ([Intel XE#8370]) -> [SKIP][333] ([Intel XE#8714])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_evict@evict-small-multi-queue.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_evict@evict-small-multi-queue.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
    - shard-bmg:          [SKIP][334] ([Intel XE#8714]) -> [SKIP][335] ([Intel XE#2322] / [Intel XE#7372]) +10 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          [SKIP][336] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][337] ([Intel XE#8714]) +11 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          [SKIP][338] ([Intel XE#8714]) -> [SKIP][339] ([Intel XE#8374]) +12 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr:
    - shard-bmg:          [SKIP][340] ([Intel XE#8374]) -> [SKIP][341] ([Intel XE#8714]) +17 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html

  * igt@xe_exec_multi_queue@many-execs-basic-smem:
    - shard-bmg:          [SKIP][342] ([Intel XE#8364]) -> [SKIP][343] ([Intel XE#8714]) +34 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-basic-smem.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_multi_queue@many-execs-basic-smem.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
    - shard-bmg:          [SKIP][344] ([Intel XE#8714]) -> [SKIP][345] ([Intel XE#8364]) +25 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html

  * igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary:
    - shard-bmg:          [SKIP][346] ([Intel XE#8369]) -> [SKIP][347] ([Intel XE#8714]) +2 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html

  * igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads:
    - shard-bmg:          [FAIL][348] ([Intel XE#7850]) -> [SKIP][349] ([Intel XE#8714])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html

  * igt@xe_exec_reset@multi-queue-cancel:
    - shard-bmg:          [SKIP][350] ([Intel XE#8714]) -> [SKIP][351] ([Intel XE#8369]) +1 other test skip
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_exec_reset@multi-queue-cancel.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_exec_reset@multi-queue-cancel.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
    - shard-bmg:          [SKIP][352] ([Intel XE#8714]) -> [SKIP][353] ([Intel XE#8378]) +7 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
    - shard-bmg:          [SKIP][354] ([Intel XE#8378]) -> [SKIP][355] ([Intel XE#8714]) +8 other tests skip
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          [SKIP][356] ([Intel XE#8714]) -> [SKIP][357] ([Intel XE#6281] / [Intel XE#7426])
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-4/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_gpgpu_fill@offset-4x4:
    - shard-bmg:          [SKIP][358] ([Intel XE#8714]) -> [SKIP][359] ([Intel XE#7954])
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_gpgpu_fill@offset-4x4.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_gpgpu_fill@offset-4x4.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
    - shard-bmg:          [SKIP][360] ([Intel XE#6964]) -> [SKIP][361] ([Intel XE#6964] / [Intel XE#8714]) +2 other tests skip
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-basic:
    - shard-bmg:          [SKIP][362] ([Intel XE#6964] / [Intel XE#8714]) -> [SKIP][363] ([Intel XE#6964]) +4 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html

  * igt@xe_page_reclaim@binds-null-vma:
    - shard-bmg:          [SKIP][364] ([Intel XE#8714]) -> [SKIP][365] ([Intel XE#7793]) +1 other test skip
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_page_reclaim@binds-null-vma.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-9/igt@xe_page_reclaim@binds-null-vma.html

  * igt@xe_page_reclaim@invalid-1g:
    - shard-bmg:          [SKIP][366] ([Intel XE#7793]) -> [SKIP][367] ([Intel XE#8714]) +1 other test skip
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@xe_page_reclaim@invalid-1g.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_page_reclaim@invalid-1g.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          [SKIP][368] ([Intel XE#2236] / [Intel XE#7590]) -> [SKIP][369] ([Intel XE#8714])
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pat@pat-sw-hw-reset-compare:
    - shard-bmg:          [SKIP][370] ([Intel XE#8714]) -> [FAIL][371] ([Intel XE#7695])
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_pat@pat-sw-hw-reset-compare.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-10/igt@xe_pat@pat-sw-hw-reset-compare.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          [SKIP][372] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][373] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353] / [Intel XE#8714]) +1 other test skip
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-6/igt@xe_peer2peer@write.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_peer2peer@write.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][374] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][375] ([Intel XE#8714]) +1 other test skip
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-8/igt@xe_pm@d3cold-multiple-execs.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          [SKIP][376] ([Intel XE#8714]) -> [SKIP][377] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-6/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-bmg:          [SKIP][378] ([Intel XE#8714]) -> [SKIP][379] ([Intel XE#2284] / [Intel XE#7370])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-3/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          [SKIP][380] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) -> [SKIP][381] ([Intel XE#8714])
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_prefetch_fault@prefetch-fault:
    - shard-bmg:          [SKIP][382] ([Intel XE#7599]) -> [SKIP][383] ([Intel XE#8714])
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-5/igt@xe_prefetch_fault@prefetch-fault.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_prefetch_fault@prefetch-fault.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-bmg:          [SKIP][384] ([Intel XE#8714]) -> [SKIP][385] ([Intel XE#7599])
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_prefetch_fault@prefetch-fault-svm.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          [SKIP][386] ([Intel XE#8714]) -> [SKIP][387] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-bmg:          [SKIP][388] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][389] ([Intel XE#8714])
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-1/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-invalid-query:
    - shard-bmg:          [SKIP][390] ([Intel XE#8714]) -> [SKIP][391] ([Intel XE#944])
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_query@multigpu-query-invalid-query.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-1/igt@xe_query@multigpu-query-invalid-query.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][392] ([Intel XE#944]) -> [SKIP][393] ([Intel XE#8714]) +2 other tests skip
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [SKIP][394] ([Intel XE#8714]) -> [DMESG-WARN][395] ([Intel XE#5545])
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9035/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15618/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [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#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
  [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
  [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
  [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
  [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
  [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
  [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
  [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8300
  [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
  [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
  [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
  [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
  [Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608
  [Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
  [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#8714]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8714
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_9035 -> IGTPW_15618

  IGTPW_15618: 15618
  IGT_9035: 61674acebe1520ef02165573257f552366c2879c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5515-f9ef9f302ee01854066ec6da30550da6ea6cb03a: f9ef9f302ee01854066ec6da30550da6ea6cb03a

== Logs ==

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

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

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

end of thread, other threads:[~2026-07-31 16:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-31 14:18 [PATCH i-g-t 0/3] gem_wsim: fix batch premature completion Marcin Bernatowicz
2026-07-31 14:18 ` [PATCH i-g-t 1/3] lib/xe/xe_spin: fix premature batch exit on BO resubmission Marcin Bernatowicz
2026-07-31 15:52   ` Zbigniew Kempczyński
2026-07-31 14:18 ` [PATCH i-g-t 2/3] benchmarks/gem_wsim: fix ticks_delta assertion for non-inverted logic Marcin Bernatowicz
2026-07-31 15:53   ` Zbigniew Kempczyński
2026-07-31 14:18 ` [PATCH i-g-t 3/3] tests/xe_sriov_scheduling: fix ticks_delta check " Marcin Bernatowicz
2026-07-31 15:54   ` Zbigniew Kempczyński
2026-07-31 14:53 ` ✓ Xe.CI.BAT: success for gem_wsim: fix batch premature completion (rev2) Patchwork
2026-07-31 15:25 ` ✓ i915.CI.BAT: " Patchwork
2026-07-31 16:37 ` ✓ Xe.CI.FULL: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.