public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
@ 2026-01-23  6:52 Sobin Thomas
  2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Sobin Thomas @ 2026-01-23  6:52 UTC (permalink / raw)
  To: igt-dev, matthew.brost; +Cc: Sobin Thomas

During reset testing there are timedout messages with lrc seq no
and seqno coming in CI Dmesg. These logs are causing CI warnings.

Since we are intentionally causing the GPU reset, so timeout messages
are expected behavior rather than actual test failures. These messages
filtered by CI and incorrectly flagged as errors.

This change adds ignore_timeout_dmesg() function that registers a regex
pattern to filter out expected timeout-related dmesg messages:
- "Timedout"
- "timeout"

The function is strategically called before operations that trigger
resets to proactively filter expected messages:
- GT reset operations (xe_force_gt_reset_async/sync)
- Legacy test modes involving resets
- Compute mode tests with GT reset flags
- Thread-based reset testing scenarios

This ensures cleaner test output by suppressing expected noise while
preserving genuine error reporting for actual test failures.

Sobin Thomas (1):
  RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during
    reset tests

 tests/intel/xe_exec_reset.c | 49 +++++++++++++++++++++++++++++++------
 1 file changed, 41 insertions(+), 8 deletions(-)

-- 
2.51.0


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

* [PATCH i-g-t 1/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
@ 2026-01-23  6:52 ` Sobin Thomas
  2026-01-29  9:29   ` Peter Senna Tschudin
  2026-01-29 10:45   ` Kamil Konieczny
  2026-01-23  8:02 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 9+ messages in thread
From: Sobin Thomas @ 2026-01-23  6:52 UTC (permalink / raw)
  To: igt-dev, matthew.brost; +Cc: Sobin Thomas

During reset testing there are timedout messages with lrc seq no
and seqno coming in CI Dmesg. These logs are causing CI warnings.

Since we are intentionally causing the GPU reset, so timeout messages
are expected behavior rather than actual test failures. These messages
filtered by CI and incorrectly flagged as errors.

This change adds ignore_timeout_dmesg() function that registers a regex
pattern to filter out expected timeout-related dmesg messages:
- "Timedout"
- "timeout"

The function is strategically called before operations that trigger
resets to proactively filter expected messages:
- GT reset operations (xe_force_gt_reset_async/sync)
- Legacy test modes involving resets
- Compute mode tests with GT reset flags
- Thread-based reset testing scenarios

This ensures cleaner test output by suppressing expected noise while
preserving genuine error reporting for actual test failures.

Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
 tests/intel/xe_exec_reset.c | 49 +++++++++++++++++++++++++++++++------
 1 file changed, 41 insertions(+), 8 deletions(-)

diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index 7aaee31dd..19b2c96b9 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -28,6 +28,17 @@
 
 #define SYNC_OBJ_SIGNALED	(0x1 << 0)
 #define LEGACY_MODE_ADDR	0x1a0000
+static void ignore_timeout_dmesg(void)
+{
+	/*
+	 * Timedout jobs are expected during reset testing,
+	 * so ignore these in igt_runner.
+	 */
+	static const char *store = "Timedout|timeout";
+
+	igt_emit_ignore_dmesg_regex(store);
+}
+
 
 /**
  * SUBTEST: spin
@@ -73,6 +84,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
 
 	sync[0].handle = syncobj_create(fd, 0);
 	xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+	ignore_timeout_dmesg();
 
 #define N_TIMES 4
 	for (i = 0; i < N_TIMES; ++i) {
@@ -260,8 +272,10 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
 
 	}
 
-	if (flags & GT_RESET)
+	if (flags & GT_RESET) {
+		ignore_timeout_dmesg();
 		xe_force_gt_reset_async(fd, gt);
+	}
 
 	if (flags & CLOSE_FD) {
 		if (flags & CLOSE_EXEC_QUEUES) {
@@ -446,6 +460,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
 	}
 
 	if (flags & GT_RESET) {
+		ignore_timeout_dmesg();
 		xe_spin_wait_started(&data[0].spin);
 		xe_force_gt_reset_sync(fd, eci->gt_id);
 	}
@@ -590,6 +605,7 @@ gt_reset(int fd, int n_threads, int n_sec)
 
 	pthread_mutex_init(&mutex, 0);
 	pthread_cond_init(&cond, 0);
+	ignore_timeout_dmesg();
 
 	for (i = 0; i < n_threads; ++i) {
 		threads[i].mutex = &mutex;
@@ -650,6 +666,7 @@ gt_mocs_reset(int fd, int gt)
 	igt_debugfs_dump(fd, path);
 	igt_debugfs_read(fd, path, mocs_content_pre);
 
+	ignore_timeout_dmesg();
 	xe_force_gt_reset_sync(fd, gt);
 
 	igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
@@ -683,6 +700,7 @@ static void *thread(void *data)
 		pthread_cond_wait(t->cond, t->mutex);
 	pthread_mutex_unlock(t->mutex);
 
+	ignore_timeout_dmesg();
 	xe_legacy_test_mode(t->fd, t->hwe, t->n_exec_queue, t->n_exec,
 			    t->flags, LEGACY_MODE_ADDR, false);
 
@@ -739,6 +757,7 @@ static void threads(int fd, int n_exec_queues, int n_execs, unsigned int flags)
 	pthread_mutex_init(&mutex, 0);
 	pthread_cond_init(&cond, 0);
 
+	ignore_timeout_dmesg();
 	xe_for_each_engine(fd, hwe) {
 		if (hwe->gt_id && (flags & GT0))
 			continue;
@@ -797,12 +816,15 @@ int igt_main()
 			test_spin(fd, hwe, SYNC_OBJ_SIGNALED);
 
 	igt_subtest("cat-error")
-		xe_for_each_engine(fd, hwe)
+		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(fd, hwe, 2, 2, CAT_ERROR,
 					    LEGACY_MODE_ADDR, false);
+		}
 
 	igt_subtest("cancel")
 		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(fd, hwe, 1, 1, 0,
 					    LEGACY_MODE_ADDR, false);
 			break;
@@ -810,6 +832,7 @@ int igt_main()
 
 	igt_subtest("cancel-preempt")
 		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(fd, hwe, 1, 1, PREEMPT,
 					    LEGACY_MODE_ADDR, false);
 			break;
@@ -897,25 +920,33 @@ int igt_main()
 			LONG_SPIN_REUSE_QUEUE);
 
 	igt_subtest("gt-reset")
-		xe_for_each_engine(fd, hwe)
+		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(fd, hwe, 2, 2, GT_RESET,
 					    LEGACY_MODE_ADDR, false);
+		}
 
 	igt_subtest("close-fd-no-exec")
-		xe_for_each_engine(fd, hwe)
+		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(-1, hwe, 16, 0, CLOSE_FD,
 					    LEGACY_MODE_ADDR, false);
+		}
 
 	igt_subtest("close-fd")
-		xe_for_each_engine(fd, hwe)
+		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD,
 					    LEGACY_MODE_ADDR, false);
+		}
 
 	igt_subtest("close-execqueues-close-fd")
-		xe_for_each_engine(fd, hwe)
+		xe_for_each_engine(fd, hwe) {
+			ignore_timeout_dmesg();
 			xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD |
 					    CLOSE_EXEC_QUEUES,
 					    LEGACY_MODE_ADDR, false);
+		}
 
 	igt_subtest("cm-cat-error")
 		xe_for_each_engine(fd, hwe)
@@ -941,17 +972,19 @@ int igt_main()
 	for (const struct section *s = sections; s->name; s++) {
 		igt_subtest_f("%s-cat-error", s->name)
 			xe_for_each_gt(fd, gt)
-				xe_for_each_engine_class(class)
+				xe_for_each_engine_class(class) {
 					test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
 						      XE_MAX_ENGINE_INSTANCE + 1,
 						      CAT_ERROR | s->flags);
+				}
 
 		igt_subtest_f("%s-gt-reset", s->name)
 			xe_for_each_gt(fd, gt)
-				xe_for_each_engine_class(class)
+				xe_for_each_engine_class(class) {
 					test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
 						      XE_MAX_ENGINE_INSTANCE + 1,
 						      GT_RESET | s->flags);
+				}
 
 		igt_subtest_f("%s-close-fd-no-exec", s->name)
 			xe_for_each_gt(fd, gt)
-- 
2.51.0


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

* ✓ Xe.CI.BAT: success for RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
  2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
@ 2026-01-23  8:02 ` Patchwork
  2026-01-23  8:19 ` ✓ i915.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-23  8:02 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
URL   : https://patchwork.freedesktop.org/series/160538/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8715_BAT -> XEIGTPW_14404_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8715 -> IGTPW_14404
  * Linux: xe-4440-f20afcc51cabf38938961caf0e634144aa21b6a3 -> xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff

  IGTPW_14404: 14404
  IGT_8715: 8715
  xe-4440-f20afcc51cabf38938961caf0e634144aa21b6a3: f20afcc51cabf38938961caf0e634144aa21b6a3
  xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff: 4a255b429d80f8b0800bdef43ba3175b771e77ff

== Logs ==

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

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

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

* ✓ i915.CI.BAT: success for RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
  2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
  2026-01-23  8:02 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-01-23  8:19 ` Patchwork
  2026-01-23 22:34 ` ✗ Xe.CI.Full: failure " Patchwork
  2026-01-26  8:22 ` [PATCH i-g-t 0/1] " Zbigniew Kempczyński
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-23  8:19 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
URL   : https://patchwork.freedesktop.org/series/160538/
State : success

== Summary ==

CI Bug Log - changes from IGT_8715 -> IGTPW_14404
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (43 -> 39)
------------------------------

  Missing    (4): bat-dg2-13 fi-glk-j4005 fi-tgl-1115g4 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-9:         [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8715/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14404/bat-mtlp-9/igt@i915_selftest@live@workarounds.html

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8715 -> IGTPW_14404
  * Linux: CI_DRM_17875 -> CI_DRM_17876

  CI-20190529: 20190529
  CI_DRM_17875: f20afcc51cabf38938961caf0e634144aa21b6a3 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_17876: 4a255b429d80f8b0800bdef43ba3175b771e77ff @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14404: 14404
  IGT_8715: 8715

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
                   ` (2 preceding siblings ...)
  2026-01-23  8:19 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-23 22:34 ` Patchwork
  2026-01-26  8:22 ` [PATCH i-g-t 0/1] " Zbigniew Kempczyński
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-01-23 22:34 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev

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

== Series Details ==

Series: RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
URL   : https://patchwork.freedesktop.org/series/160538/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8715_FULL -> XEIGTPW_14404_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend:
    - shard-lnl:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-7/igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend.html

  * igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend:
    - shard-lnl:          [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-7/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html

  * igt@xe_exec_system_allocator@many-stride-mmap-shared-remap-eocheck:
    - shard-bmg:          [PASS][5] -> [ABORT][6] +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-shared-remap-eocheck.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-shared-remap-eocheck.html

  * igt@xe_module_load@force-load:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][7]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@xe_module_load@force-load.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][8] ([Intel XE#6819]) +1 other test incomplete
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html

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

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

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#7059])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#2191])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

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

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#3432])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

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

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#306])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-2/igt@kms_chamelium_color@ctm-negative.html
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2325]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#373]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

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

  * igt@kms_content_protection@atomic:
    - shard-bmg:          NOTRUN -> [FAIL][25] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@kms_content_protection@atomic.html
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#3278])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#6973])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_content_protection@legacy-hdcp14.html
    - shard-bmg:          NOTRUN -> [FAIL][28] ([Intel XE#3304]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-7/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#1424]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html

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

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#2321])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2321]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html

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

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [PASS][34] -> [FAIL][35] ([Intel XE#5299])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          NOTRUN -> [FAIL][36] ([Intel XE#4633])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#4294])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

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

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

  * igt@kms_flip@2x-flip-vs-modeset:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#1421]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_flip@2x-flip-vs-modeset.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [PASS][42] -> [FAIL][43] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3:
    - shard-bmg:          [PASS][44] -> [FAIL][45] ([Intel XE#3149] / [Intel XE#6266])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@cd-dp2-hdmi-a3.html

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1:
    - shard-lnl:          [PASS][46] -> [FAIL][47] ([Intel XE#3098]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-2/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-2/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#301])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

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

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

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

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

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

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7061]) +4 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2311]) +24 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4141]) +9 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#7061]) +3 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2313]) +24 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

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

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#1503])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#6901])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#6901])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html

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

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

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2393])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html

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

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#6886]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#870])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][71] -> [FAIL][72] ([Intel XE#718]) +1 other test fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][73] -> [SKIP][74] ([Intel XE#6693])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_pm_rpm@universal-planes-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2387])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#6703])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#1406]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#4609])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-plane-onoff@edp-1.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_psr@psr-suspend.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2330])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#3414] / [Intel XE#3904])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

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

  * igt@kms_sharpness_filter@filter-suspend:
    - shard-lnl:          [PASS][86] -> [ABORT][87] ([Intel XE#1727])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-7/igt@kms_sharpness_filter@filter-suspend.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_sharpness_filter@filter-suspend.html

  * igt@kms_sharpness_filter@filter-toggle:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#6503]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-7/igt@kms_sharpness_filter@filter-toggle.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2426])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [PASS][90] -> [FAIL][91] ([Intel XE#2142]) +1 other test fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#1499])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#4837]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#4837]) +8 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_eudebug_online@resume-one:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@xe_eudebug_online@resume-one.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#688]) +2 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

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

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#1392]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#7136]) +12 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#7136]) +3 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#6874]) +22 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#6874]) +7 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html

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

  * igt@xe_exec_system_allocator@once-mmap-new-nomemset:
    - shard-bmg:          [PASS][105] -> [SKIP][106] ([Intel XE#6703]) +122 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@xe_exec_system_allocator@once-mmap-new-nomemset.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-new-nomemset.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [PASS][107] -> [FAIL][108] ([Intel XE#5625])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#4943]) +3 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-malloc-fork-read-after:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#6557] / [Intel XE#6703])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-malloc-fork-read-after.html

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

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-mlock:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#6703]) +33 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-mlock.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#7138]) +4 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#7138]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-bmg:          [PASS][115] -> [FAIL][116] ([Intel XE#6558]) +2 other tests fail
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-1/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#5100])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#6964]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2427] / [Intel XE#6953])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@xe_peer2peer@write.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#584])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#579])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#4733]) +2 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-3/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#944]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#944])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_sriov_vram@vf-access-after-resize-up:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#6376])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@xe_sriov_vram@vf-access-after-resize-up.html

  
#### Possible fixes ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [FAIL][126] ([Intel XE#4665]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][128] ([Intel XE#6054]) -> [PASS][129] +3 other tests pass
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][130] ([Intel XE#7084]) -> [PASS][131] +1 other test pass
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-bmg:          [DMESG-WARN][132] ([Intel XE#5354]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][134] ([Intel XE#4633]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][136] ([Intel XE#301]) -> [PASS][137] +2 other tests pass
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][138] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][140] ([Intel XE#718]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-lnl:          [SKIP][142] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][144] ([Intel XE#6321]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@process-many-malloc-prefetch:
    - shard-lnl:          [DMESG-WARN][146] ([Intel XE#4537] / [Intel XE#7063]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-1/igt@xe_exec_system_allocator@process-many-malloc-prefetch.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-8/igt@xe_exec_system_allocator@process-many-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-many-mmap-remap-dontunmap:
    - shard-lnl:          [DMESG-WARN][148] ([Intel XE#7063]) -> [PASS][149] +13 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-mmap-remap-dontunmap.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-mmap-remap-dontunmap.html

  
#### Warnings ####

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][150] ([Intel XE#1124]) -> [SKIP][151] ([Intel XE#6703]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          [SKIP][152] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][153] ([Intel XE#6703])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][154] ([Intel XE#2887]) -> [SKIP][155] ([Intel XE#6703]) +2 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          [SKIP][156] ([Intel XE#3432]) -> [SKIP][157] ([Intel XE#6703])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][158] ([Intel XE#2252]) -> [SKIP][159] ([Intel XE#6703]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][160] ([Intel XE#2320]) -> [SKIP][161] ([Intel XE#6703]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][162] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][163] ([Intel XE#301])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][164] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][165] ([Intel XE#6703])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][166] ([Intel XE#4141]) -> [SKIP][167] ([Intel XE#6703]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][168] ([Intel XE#2311]) -> [SKIP][169] ([Intel XE#6703]) +6 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][170] ([Intel XE#2313]) -> [SKIP][171] ([Intel XE#6703]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][172] ([Intel XE#7061]) -> [SKIP][173] ([Intel XE#6703])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          [SKIP][174] ([Intel XE#6911]) -> [SKIP][175] ([Intel XE#6703])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][176] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][177] ([Intel XE#6693])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][178] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][179] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-bmg:          [SKIP][180] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][181] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@kms_psr@psr-sprite-plane-onoff.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][182] ([Intel XE#2330]) -> [SKIP][183] ([Intel XE#6703])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][184] ([Intel XE#1435]) -> [SKIP][185] ([Intel XE#6703])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][186] ([Intel XE#2426]) -> [SKIP][187] ([Intel XE#2509])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][188] ([Intel XE#1499]) -> [SKIP][189] ([Intel XE#6703])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-1/igt@kms_vrr@flip-basic.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@kms_vrr@flip-basic.html

  * igt@xe_eudebug@basic-vm-bind-vm-destroy:
    - shard-bmg:          [SKIP][190] ([Intel XE#4837]) -> [SKIP][191] ([Intel XE#6703]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-vm-destroy.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy.html

  * igt@xe_eudebug_online@pagefault-one-of-many:
    - shard-bmg:          [SKIP][192] ([Intel XE#6665]) -> [SKIP][193] ([Intel XE#6703])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-2/igt@xe_eudebug_online@pagefault-one-of-many.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_eudebug_online@pagefault-one-of-many.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          [SKIP][194] ([Intel XE#2322]) -> [SKIP][195] ([Intel XE#6703]) +2 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
    - shard-bmg:          [SKIP][196] ([Intel XE#7136]) -> [SKIP][197] ([Intel XE#6703]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic:
    - shard-bmg:          [SKIP][198] ([Intel XE#6874]) -> [SKIP][199] ([Intel XE#6703]) +4 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html

  * igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset:
    - shard-bmg:          [SKIP][200] ([Intel XE#4943]) -> [SKIP][201] ([Intel XE#6703]) +4 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind:
    - shard-bmg:          [SKIP][202] ([Intel XE#7138]) -> [SKIP][203] ([Intel XE#6703])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][204] ([Intel XE#2284]) -> [SKIP][205] ([Intel XE#6703])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-7/igt@xe_pm@d3cold-mocs.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-bmg:          [SKIP][206] ([Intel XE#4733]) -> [SKIP][207] ([Intel XE#6703])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8715/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [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#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6558]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6558
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [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#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [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#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
  [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#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8715 -> IGTPW_14404
  * Linux: xe-4440-f20afcc51cabf38938961caf0e634144aa21b6a3 -> xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff

  IGTPW_14404: 14404
  IGT_8715: 8715
  xe-4440-f20afcc51cabf38938961caf0e634144aa21b6a3: f20afcc51cabf38938961caf0e634144aa21b6a3
  xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff: 4a255b429d80f8b0800bdef43ba3175b771e77ff

== Logs ==

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

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

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

* Re: [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
                   ` (3 preceding siblings ...)
  2026-01-23 22:34 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-26  8:22 ` Zbigniew Kempczyński
  2026-01-26 12:52   ` Thomas, Sobin
  4 siblings, 1 reply; 9+ messages in thread
From: Zbigniew Kempczyński @ 2026-01-26  8:22 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev, matthew.brost

On Fri, Jan 23, 2026 at 06:52:37AM +0000, Sobin Thomas wrote:
> During reset testing there are timedout messages with lrc seq no
> and seqno coming in CI Dmesg. These logs are causing CI warnings.
> 
> Since we are intentionally causing the GPU reset, so timeout messages
> are expected behavior rather than actual test failures. These messages
> filtered by CI and incorrectly flagged as errors.
> 
> This change adds ignore_timeout_dmesg() function that registers a regex
> pattern to filter out expected timeout-related dmesg messages:
> - "Timedout"
> - "timeout"

May you point out CI warnings you're mentioning? I've checked:

https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads.html

and xe_exec_reset tests and I don't see warnings related to timeouts:

https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shards-all.html?testfilter=xe_exec_reset

--
Zbigniew

> 
> The function is strategically called before operations that trigger
> resets to proactively filter expected messages:
> - GT reset operations (xe_force_gt_reset_async/sync)
> - Legacy test modes involving resets
> - Compute mode tests with GT reset flags
> - Thread-based reset testing scenarios
> 
> This ensures cleaner test output by suppressing expected noise while
> preserving genuine error reporting for actual test failures.
> 
> Sobin Thomas (1):
>   RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during
>     reset tests
> 
>  tests/intel/xe_exec_reset.c | 49 +++++++++++++++++++++++++++++++------
>  1 file changed, 41 insertions(+), 8 deletions(-)
> 
> -- 
> 2.51.0
> 

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

* RE: [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-26  8:22 ` [PATCH i-g-t 0/1] " Zbigniew Kempczyński
@ 2026-01-26 12:52   ` Thomas, Sobin
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas, Sobin @ 2026-01-26 12:52 UTC (permalink / raw)
  To: Kempczynski, Zbigniew; +Cc: igt-dev@lists.freedesktop.org, Brost, Matthew

Hi Zbigniew,

This is the job link 
https://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-4447-6d7af7c5b6b121d5595b64be7dfcbf33be53287b/hwre-BMG_G21_B35_VM_X2-391/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html

	
<6> [2165.241389] [IGT] xe_exec_reset: executing
<6> [2165.317176] [IGT] xe_exec_reset: starting subtest long-spin-comp-reuse-many-preempt-threads
<7> [2170.492070] xe 0000:00:03.0: [drm:guc_exec_queue_timedout_job [xe]] Tile0: GT1: Check job timeout: seqno=4294967169, lrc_seqno=4294967169, guc_id=7, running_time_ms=2693, timeout_ms=5000, diff=0x02ef90ee
<7> [2170.501081] xe 0000:00:03.0: [drm:guc_exec_queue_timedout_job [xe]] Tile0: GT0: Check job timeout: seqno=4294967169, lrc_seqno=4294967169, guc_id=12, running_time_ms=2704, timeout_ms=5000, diff=0x02f2d92d
<7> [2170.506269] xe 0000:00:03.0: [drm:guc_exec_queue_timedout_job [xe]] Tile0: GT0: Check job timeout: seqno=4294967169, lrc_seqno=4294967169, guc_id=10, running_time_ms=2707, timeout_ms=5000, diff=0x02f3a078
<4> [2170.509068] xe 0000:00:03.0: [drm] Tile0: GT0: Check job timeout: seqno=4294967169, lrc_seqno=4294967169, guc_id=13, not started
<4> [2170.511316] xe 0000:00:03.0: [drm] Tile0: GT0: Check job timeout: seqno=4294967169, lrc_seqno=4294967169, guc_id=9, not started

Sobin Thomas

-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
Sent: Monday, January 26, 2026 1:52 PM
To: Thomas, Sobin <sobin.thomas@intel.com>
Cc: igt-dev@lists.freedesktop.org; Brost, Matthew <matthew.brost@intel.com>
Subject: Re: [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests

On Fri, Jan 23, 2026 at 06:52:37AM +0000, Sobin Thomas wrote:
> During reset testing there are timedout messages with lrc seq no and 
> seqno coming in CI Dmesg. These logs are causing CI warnings.
> 
> Since we are intentionally causing the GPU reset, so timeout messages 
> are expected behavior rather than actual test failures. These messages 
> filtered by CI and incorrectly flagged as errors.
> 
> This change adds ignore_timeout_dmesg() function that registers a 
> regex pattern to filter out expected timeout-related dmesg messages:
> - "Timedout"
> - "timeout"

May you point out CI warnings you're mentioning? I've checked:

https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads.html

and xe_exec_reset tests and I don't see warnings related to timeouts:

https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14404/shards-all.html?testfilter=xe_exec_reset

--
Zbigniew

> 
> The function is strategically called before operations that trigger 
> resets to proactively filter expected messages:
> - GT reset operations (xe_force_gt_reset_async/sync)
> - Legacy test modes involving resets
> - Compute mode tests with GT reset flags
> - Thread-based reset testing scenarios
> 
> This ensures cleaner test output by suppressing expected noise while 
> preserving genuine error reporting for actual test failures.
> 
> Sobin Thomas (1):
>   RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during
>     reset tests
> 
>  tests/intel/xe_exec_reset.c | 49 
> +++++++++++++++++++++++++++++++------
>  1 file changed, 41 insertions(+), 8 deletions(-)
> 
> --
> 2.51.0
> 

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

* Re: [PATCH i-g-t 1/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
@ 2026-01-29  9:29   ` Peter Senna Tschudin
  2026-01-29 10:45   ` Kamil Konieczny
  1 sibling, 0 replies; 9+ messages in thread
From: Peter Senna Tschudin @ 2026-01-29  9:29 UTC (permalink / raw)
  To: Sobin Thomas, igt-dev, matthew.brost

Hi Sobin,

Please see my comments bellow.

On Fri, 2026-01-23 at 06:52 +0000, Sobin Thomas wrote:
> During reset testing there are timedout messages with lrc seq no
> and seqno coming in CI Dmesg. These logs are causing CI warnings.
> 
> Since we are intentionally causing the GPU reset, so timeout messages
> are expected behavior rather than actual test failures. These
> messages
> filtered by CI and incorrectly flagged as errors.
> 
> This change adds ignore_timeout_dmesg() function that registers a
> regex
> pattern to filter out expected timeout-related dmesg messages:
> - "Timedout"
> - "timeout"
> 
> The function is strategically called before operations that trigger
> resets to proactively filter expected messages:
> - GT reset operations (xe_force_gt_reset_async/sync)
> - Legacy test modes involving resets
> - Compute mode tests with GT reset flags
> - Thread-based reset testing scenarios
> 
> This ensures cleaner test output by suppressing expected noise while
> preserving genuine error reporting for actual test failures.
> 
> Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
> ---
>  tests/intel/xe_exec_reset.c | 49 +++++++++++++++++++++++++++++++----
> --
>  1 file changed, 41 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/intel/xe_exec_reset.c
> b/tests/intel/xe_exec_reset.c
> index 7aaee31dd..19b2c96b9 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -28,6 +28,17 @@
>  
>  #define SYNC_OBJ_SIGNALED	(0x1 << 0)
>  #define LEGACY_MODE_ADDR	0x1a0000
> +static void ignore_timeout_dmesg(void)
> +{
> +	/*
> +	 * Timedout jobs are expected during reset testing,
> +	 * so ignore these in igt_runner.
> +	 */
> +	static const char *store = "Timedout|timeout";
> +
> +	igt_emit_ignore_dmesg_regex(store);
> +}
> +

This will cause igt to ignore all timeouts. Would it be a good idea to
make this more specific so that only the expected timeouts are ignored?

>  
>  /**
>   * SUBTEST: spin
> @@ -73,6 +84,7 @@ static void test_spin(int fd, struct
> drm_xe_engine_class_instance *eci,
>  
>  	sync[0].handle = syncobj_create(fd, 0);
>  	xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> +	ignore_timeout_dmesg();
>  
>  #define N_TIMES 4
>  	for (i = 0; i < N_TIMES; ++i) {
> @@ -260,8 +272,10 @@ test_balancer(int fd, int gt, int class, int
> n_exec_queues, int n_execs,
>  
>  	}
>  
> -	if (flags & GT_RESET)
> +	if (flags & GT_RESET) {
> +		ignore_timeout_dmesg();
>  		xe_force_gt_reset_async(fd, gt);
> +	}
>  
>  	if (flags & CLOSE_FD) {
>  		if (flags & CLOSE_EXEC_QUEUES) {
> @@ -446,6 +460,7 @@ test_compute_mode(int fd, struct
> drm_xe_engine_class_instance *eci,
>  	}
>  
>  	if (flags & GT_RESET) {
> +		ignore_timeout_dmesg();
>  		xe_spin_wait_started(&data[0].spin);
>  		xe_force_gt_reset_sync(fd, eci->gt_id);
>  	}
> @@ -590,6 +605,7 @@ gt_reset(int fd, int n_threads, int n_sec)
>  
>  	pthread_mutex_init(&mutex, 0);
>  	pthread_cond_init(&cond, 0);
> +	ignore_timeout_dmesg();
>  
>  	for (i = 0; i < n_threads; ++i) {
>  		threads[i].mutex = &mutex;
> @@ -650,6 +666,7 @@ gt_mocs_reset(int fd, int gt)
>  	igt_debugfs_dump(fd, path);
>  	igt_debugfs_read(fd, path, mocs_content_pre);
>  
> +	ignore_timeout_dmesg();
>  	xe_force_gt_reset_sync(fd, gt);
>  
>  	igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
> @@ -683,6 +700,7 @@ static void *thread(void *data)
>  		pthread_cond_wait(t->cond, t->mutex);
>  	pthread_mutex_unlock(t->mutex);
>  
> +	ignore_timeout_dmesg();
>  	xe_legacy_test_mode(t->fd, t->hwe, t->n_exec_queue, t-
> >n_exec,
>  			    t->flags, LEGACY_MODE_ADDR, false);
>  
> @@ -739,6 +757,7 @@ static void threads(int fd, int n_exec_queues,
> int n_execs, unsigned int flags)
>  	pthread_mutex_init(&mutex, 0);
>  	pthread_cond_init(&cond, 0);
>  
> +	ignore_timeout_dmesg();
>  	xe_for_each_engine(fd, hwe) {
>  		if (hwe->gt_id && (flags & GT0))
>  			continue;
> @@ -797,12 +816,15 @@ int igt_main()
>  			test_spin(fd, hwe, SYNC_OBJ_SIGNALED);
>  
>  	igt_subtest("cat-error")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(fd, hwe, 2, 2,
> CAT_ERROR,
>  					    LEGACY_MODE_ADDR,
> false);
> +		}
>  
>  	igt_subtest("cancel")
>  		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(fd, hwe, 1, 1, 0,
>  					    LEGACY_MODE_ADDR,
> false);
>  			break;
> @@ -810,6 +832,7 @@ int igt_main()
>  
>  	igt_subtest("cancel-preempt")
>  		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(fd, hwe, 1, 1, PREEMPT,
>  					    LEGACY_MODE_ADDR,
> false);
>  			break;
> @@ -897,25 +920,33 @@ int igt_main()
>  			LONG_SPIN_REUSE_QUEUE);
>  
>  	igt_subtest("gt-reset")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(fd, hwe, 2, 2, GT_RESET,
>  					    LEGACY_MODE_ADDR,
> false);
> +		}
>  
>  	igt_subtest("close-fd-no-exec")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(-1, hwe, 16, 0,
> CLOSE_FD,
>  					    LEGACY_MODE_ADDR,
> false);
> +		}
>  
>  	igt_subtest("close-fd")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(-1, hwe, 16, 256,
> CLOSE_FD,
>  					    LEGACY_MODE_ADDR,
> false);
> +		}
>  
>  	igt_subtest("close-execqueues-close-fd")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();
>  			xe_legacy_test_mode(-1, hwe, 16, 256,
> CLOSE_FD |
>  					    CLOSE_EXEC_QUEUES,
>  					    LEGACY_MODE_ADDR,
> false);
> +		}
>  
>  	igt_subtest("cm-cat-error")
>  		xe_for_each_engine(fd, hwe)
> @@ -941,17 +972,19 @@ int igt_main()
>  	for (const struct section *s = sections; s->name; s++) {
>  		igt_subtest_f("%s-cat-error", s->name)
>  			xe_for_each_gt(fd, gt)

The changes after this point should either be on a separate patch or
simply removed.
> -				xe_for_each_engine_class(class)
> +				xe_for_each_engine_class(class) {
>  					test_balancer(fd, gt, class,
> XE_MAX_ENGINE_INSTANCE + 1,
>  						     
> XE_MAX_ENGINE_INSTANCE + 1,
>  						      CAT_ERROR | s-
> >flags);
> +				}
>  
>  		igt_subtest_f("%s-gt-reset", s->name)
>  			xe_for_each_gt(fd, gt)
> -				xe_for_each_engine_class(class)
> +				xe_for_each_engine_class(class) {
>  					test_balancer(fd, gt, class,
> XE_MAX_ENGINE_INSTANCE + 1,
>  						     
> XE_MAX_ENGINE_INSTANCE + 1,
>  						      GT_RESET | s-
> >flags);
> +				}
>  
>  		igt_subtest_f("%s-close-fd-no-exec", s->name)
>  			xe_for_each_gt(fd, gt)


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

* Re: [PATCH i-g-t 1/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests
  2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
  2026-01-29  9:29   ` Peter Senna Tschudin
@ 2026-01-29 10:45   ` Kamil Konieczny
  1 sibling, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2026-01-29 10:45 UTC (permalink / raw)
  To: Sobin Thomas; +Cc: igt-dev, matthew.brost

Hi Sobin,
On 2026-01-23 at 06:52:38 +0000, Sobin Thomas wrote:
> During reset testing there are timedout messages with lrc seq no
> and seqno coming in CI Dmesg. These logs are causing CI warnings.
> 
> Since we are intentionally causing the GPU reset, so timeout messages
> are expected behavior rather than actual test failures. These messages
> filtered by CI and incorrectly flagged as errors.
> 
> This change adds ignore_timeout_dmesg() function that registers a regex
> pattern to filter out expected timeout-related dmesg messages:
> - "Timedout"
> - "timeout"
> 
> The function is strategically called before operations that trigger
> resets to proactively filter expected messages:
> - GT reset operations (xe_force_gt_reset_async/sync)
> - Legacy test modes involving resets
> - Compute mode tests with GT reset flags
> - Thread-based reset testing scenarios
> 
> This ensures cleaner test output by suppressing expected noise while
> preserving genuine error reporting for actual test failures.
> 

I am not sure if you really need it, please see some comments
below.

> Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
> ---
>  tests/intel/xe_exec_reset.c | 49 +++++++++++++++++++++++++++++++------
>  1 file changed, 41 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
> index 7aaee31dd..19b2c96b9 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -28,6 +28,17 @@
>  
>  #define SYNC_OBJ_SIGNALED	(0x1 << 0)
>  #define LEGACY_MODE_ADDR	0x1a0000
> +static void ignore_timeout_dmesg(void)
> +{
> +	/*
> +	 * Timedout jobs are expected during reset testing,
> +	 * so ignore these in igt_runner.
> +	 */
> +	static const char *store = "Timedout|timeout";
> +
> +	igt_emit_ignore_dmesg_regex(store);
> +}
> +
>  
>  /**
>   * SUBTEST: spin
> @@ -73,6 +84,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
>  
>  	sync[0].handle = syncobj_create(fd, 0);
>  	xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> +	ignore_timeout_dmesg();

Why here? You need it only subtest or sub-subtest start,
unless you want to treat timeouts selectivly. Currently
you cannot turn on/off locally, it is a global for a
subtest run. Once turned on, only end of subtest or
starting new subtest clears it.

>  
>  #define N_TIMES 4
>  	for (i = 0; i < N_TIMES; ++i) {
> @@ -260,8 +272,10 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
>  
>  	}
>  
> -	if (flags & GT_RESET)
> +	if (flags & GT_RESET) {
> +		ignore_timeout_dmesg();
>  		xe_force_gt_reset_async(fd, gt);
> +	}
>  
>  	if (flags & CLOSE_FD) {
>  		if (flags & CLOSE_EXEC_QUEUES) {
> @@ -446,6 +460,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
>  	}
>  
>  	if (flags & GT_RESET) {
> +		ignore_timeout_dmesg();
>  		xe_spin_wait_started(&data[0].spin);
>  		xe_force_gt_reset_sync(fd, eci->gt_id);
>  	}
> @@ -590,6 +605,7 @@ gt_reset(int fd, int n_threads, int n_sec)
>  
>  	pthread_mutex_init(&mutex, 0);
>  	pthread_cond_init(&cond, 0);
> +	ignore_timeout_dmesg();
>  
>  	for (i = 0; i < n_threads; ++i) {
>  		threads[i].mutex = &mutex;
> @@ -650,6 +666,7 @@ gt_mocs_reset(int fd, int gt)
>  	igt_debugfs_dump(fd, path);
>  	igt_debugfs_read(fd, path, mocs_content_pre);
>  
> +	ignore_timeout_dmesg();
>  	xe_force_gt_reset_sync(fd, gt);
>  
>  	igt_assert(igt_debugfs_exists(fd, path, O_RDONLY));
> @@ -683,6 +700,7 @@ static void *thread(void *data)
>  		pthread_cond_wait(t->cond, t->mutex);
>  	pthread_mutex_unlock(t->mutex);
>  
> +	ignore_timeout_dmesg();
>  	xe_legacy_test_mode(t->fd, t->hwe, t->n_exec_queue, t->n_exec,
>  			    t->flags, LEGACY_MODE_ADDR, false);
>  
> @@ -739,6 +757,7 @@ static void threads(int fd, int n_exec_queues, int n_execs, unsigned int flags)
>  	pthread_mutex_init(&mutex, 0);
>  	pthread_cond_init(&cond, 0);
>  
> +	ignore_timeout_dmesg();

This seems redundant, please do not spread those ignores in all places
in code, either do it before ioctl which could lead to timeout,
or, preferably, just after subtest started. If you have it at
subtest start, you do not need to add it in other places.

>  	xe_for_each_engine(fd, hwe) {
>  		if (hwe->gt_id && (flags & GT0))
>  			continue;
> @@ -797,12 +816,15 @@ int igt_main()
>  			test_spin(fd, hwe, SYNC_OBJ_SIGNALED);
>  
>  	igt_subtest("cat-error")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

move this before xe_for_each_engine()

>  			xe_legacy_test_mode(fd, hwe, 2, 2, CAT_ERROR,
>  					    LEGACY_MODE_ADDR, false);
> +		}
>  
>  	igt_subtest("cancel")
>  		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(fd, hwe, 1, 1, 0,
>  					    LEGACY_MODE_ADDR, false);
>  			break;
> @@ -810,6 +832,7 @@ int igt_main()
>  
>  	igt_subtest("cancel-preempt")
>  		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(fd, hwe, 1, 1, PREEMPT,
>  					    LEGACY_MODE_ADDR, false);
>  			break;
> @@ -897,25 +920,33 @@ int igt_main()
>  			LONG_SPIN_REUSE_QUEUE);
>  
>  	igt_subtest("gt-reset")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(fd, hwe, 2, 2, GT_RESET,
>  					    LEGACY_MODE_ADDR, false);
> +		}
>  
>  	igt_subtest("close-fd-no-exec")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(-1, hwe, 16, 0, CLOSE_FD,
>  					    LEGACY_MODE_ADDR, false);
> +		}
>  
>  	igt_subtest("close-fd")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD,
>  					    LEGACY_MODE_ADDR, false);
> +		}
>  
>  	igt_subtest("close-execqueues-close-fd")
> -		xe_for_each_engine(fd, hwe)
> +		xe_for_each_engine(fd, hwe) {
> +			ignore_timeout_dmesg();

Same here.

>  			xe_legacy_test_mode(-1, hwe, 16, 256, CLOSE_FD |
>  					    CLOSE_EXEC_QUEUES,
>  					    LEGACY_MODE_ADDR, false);
> +		}
>  
>  	igt_subtest("cm-cat-error")
>  		xe_for_each_engine(fd, hwe)
> @@ -941,17 +972,19 @@ int igt_main()
>  	for (const struct section *s = sections; s->name; s++) {
>  		igt_subtest_f("%s-cat-error", s->name)

Here could be a place for adding timout ignore.

>  			xe_for_each_gt(fd, gt)
> -				xe_for_each_engine_class(class)
> +				xe_for_each_engine_class(class) {
>  					test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
>  						      XE_MAX_ENGINE_INSTANCE + 1,
>  						      CAT_ERROR | s->flags);
> +				}
>  
>  		igt_subtest_f("%s-gt-reset", s->name)

Same here, a place for ignore.

Regards,
Kamil

>  			xe_for_each_gt(fd, gt)
> -				xe_for_each_engine_class(class)
> +				xe_for_each_engine_class(class) {
>  					test_balancer(fd, gt, class, XE_MAX_ENGINE_INSTANCE + 1,
>  						      XE_MAX_ENGINE_INSTANCE + 1,
>  						      GT_RESET | s->flags);
> +				}
>  
>  		igt_subtest_f("%s-close-fd-no-exec", s->name)
>  			xe_for_each_gt(fd, gt)
> -- 
> 2.51.0
> 

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

end of thread, other threads:[~2026-01-29 10:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-23  6:52 [PATCH i-g-t 0/1] RFC tests/intel/xe_exec_reset: Filter expected timeout dmesg during reset tests Sobin Thomas
2026-01-23  6:52 ` [PATCH i-g-t 1/1] " Sobin Thomas
2026-01-29  9:29   ` Peter Senna Tschudin
2026-01-29 10:45   ` Kamil Konieczny
2026-01-23  8:02 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-23  8:19 ` ✓ i915.CI.BAT: " Patchwork
2026-01-23 22:34 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-26  8:22 ` [PATCH i-g-t 0/1] " Zbigniew Kempczyński
2026-01-26 12:52   ` Thomas, Sobin

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