* [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume
@ 2026-05-21 14:34 Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 1/3] tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible Thomas Hellström
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Thomas Hellström @ 2026-05-21 14:34 UTC (permalink / raw)
To: igt-dev
Cc: Thomas Hellström, Matthew Brost, Francois Dugast,
Matthew Auld, Rodrigo Vivi, Maarten Lankhorst
Sorry for the resend. I messed up the CC-list.
These patches extend xe_exec_compute_mode and xe_exec_fault_mode with
tests that verify GPU workloads survive system suspend and resume.
The new subtests run a preemptible spinner on a copy engine and then
trigger a full suspend/resume cycle — covering s2idle, S3 and S4 — while
the workload is active. After resume, the tests confirm the workload is
still making forward progress before stopping it cleanly. This exercises
the driver's ability to park and restore LR-mode and fault-mode execution
contexts across power state transitions.
Thomas Hellström (3):
tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible
tests/xe_exec_compute_mode: Add workload subtests with suspend
variants
tests/xe_exec_fault_mode: Add fault-mode workload subtests with
suspend variants
tests/intel/xe_exec_compute_mode.c | 51 ++++++++++--
tests/intel/xe_exec_fault_mode.c | 123 ++++++++++++++++++++++++++++-
2 files changed, 165 insertions(+), 9 deletions(-)
--
2.54.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t 1/3] tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
@ 2026-05-21 14:34 ` Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 2/3] tests/xe_exec_compute_mode: Add workload subtests with suspend variants Thomas Hellström
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Thomas Hellström @ 2026-05-21 14:34 UTC (permalink / raw)
To: igt-dev
Cc: Thomas Hellström, Matthew Brost, Francois Dugast,
Matthew Auld, Rodrigo Vivi, Maarten Lankhorst
Enable preemption in the xe_spin used by lr-mode-workload by passing
.preempt = true to xe_spin_init_opts(). This allows the workload to be
preempted during the 30s stress run, which is needed to test LR mode
behavior under preemption (e.g. during suspend/resume).
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
tests/intel/xe_exec_compute_mode.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
index 438ea163f..869f8fbe1 100644
--- a/tests/intel/xe_exec_compute_mode.c
+++ b/tests/intel/xe_exec_compute_mode.c
@@ -324,7 +324,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
#define LR_SPINNER_TIME 30
/**
* SUBTEST: lr-mode-workload
- * Description: Stress LR mode workload for 30s.
+ * Description: Stress preemptible LR mode workload for 30s.
* Test category: functionality test
*/
static void lr_mode_workload(int fd)
@@ -368,7 +368,8 @@ static void lr_mode_workload(int fd)
xe_vm_bind_async(fd, vm, 0, bo, 0, spin_addr, bo_size, &sync, 1);
xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
- xe_spin_init_opts(spin, .addr = spin_addr, .write_timestamp = true);
+ xe_spin_init_opts(spin, .addr = spin_addr, .write_timestamp = true,
+ .preempt = true);
sync.addr = spin_addr + (char *)&spin->exec_sync - (char *)spin;
exec.exec_queue_id = exec_queue;
exec.address = spin_addr;
--
2.54.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t 2/3] tests/xe_exec_compute_mode: Add workload subtests with suspend variants
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 1/3] tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible Thomas Hellström
@ 2026-05-21 14:34 ` Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 3/3] tests/xe_exec_fault_mode: Add fault-mode " Thomas Hellström
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Thomas Hellström @ 2026-05-21 14:34 UTC (permalink / raw)
To: igt-dev
Cc: Thomas Hellström, Matthew Brost, Francois Dugast,
Matthew Auld, Rodrigo Vivi, Maarten Lankhorst
Refactor lr_mode_workload() into run_lr_workload() taking an
igt_suspend_state argument, using SUSPEND_STATE_NONE as a sentinel for
the no-suspend case. Register all variants from a single table:
lr-mode-workload (no suspend, 30s stress)
s2idle-lr-mode-workload (SUSPEND_STATE_FREEZE)
s3-lr-mode-workload (SUSPEND_STATE_S3)
s4-lr-mode-workload (SUSPEND_STATE_DISK)
The suspend variants perform a full suspend/resume cycle while the
preemptible spinner is running, then assert the workload resumes and can
be cleanly stopped.
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
tests/intel/xe_exec_compute_mode.c | 46 ++++++++++++++++++++++++++----
1 file changed, 40 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
index 869f8fbe1..8fc9bb912 100644
--- a/tests/intel/xe_exec_compute_mode.c
+++ b/tests/intel/xe_exec_compute_mode.c
@@ -322,12 +322,26 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
}
#define LR_SPINNER_TIME 30
+#define SUSPEND_STATE_NONE ((enum igt_suspend_state)-1)
+
/**
* SUBTEST: lr-mode-workload
* Description: Stress preemptible LR mode workload for 30s.
* Test category: functionality test
+ *
+ * SUBTEST: s2idle-lr-mode-workload
+ * Description: Suspend to idle (s2idle) with a preemptible LR mode workload running.
+ * Test category: functionality test
+ *
+ * SUBTEST: s3-lr-mode-workload
+ * Description: Suspend to RAM (s3) with a preemptible LR mode workload running.
+ * Test category: functionality test
+ *
+ * SUBTEST: s4-lr-mode-workload
+ * Description: Suspend to disk (s4) with a preemptible LR mode workload running.
+ * Test category: functionality test
*/
-static void lr_mode_workload(int fd)
+static void run_lr_workload(int fd, enum igt_suspend_state s_state)
{
struct drm_xe_sync sync = {
.type = DRM_XE_SYNC_TYPE_USER_FENCE,
@@ -376,8 +390,15 @@ static void lr_mode_workload(int fd)
xe_exec(fd, &exec);
xe_spin_wait_started(spin);
- /* Collect and check timestamps before stopping the spinner */
- sleep(LR_SPINNER_TIME);
+ if (s_state != SUSPEND_STATE_NONE) {
+ enum igt_suspend_test test = s_state == SUSPEND_STATE_DISK ?
+ SUSPEND_TEST_DEVICES : SUSPEND_TEST_NONE;
+ igt_system_suspend_autoresume(s_state, test);
+ } else {
+ sleep(LR_SPINNER_TIME);
+ }
+
+ /* Collect and check timestamps - workload should still be running */
ts_1 = spin->timestamp;
sleep(1);
ts_2 = spin->timestamp;
@@ -462,9 +483,22 @@ int igt_main()
s->flags);
}
- igt_subtest("lr-mode-workload")
- lr_mode_workload(fd);
-
+ {
+ static const struct {
+ const char *name;
+ enum igt_suspend_state state;
+ } suspend_states[] = {
+ { "", SUSPEND_STATE_NONE },
+ { "s2idle-", SUSPEND_STATE_FREEZE },
+ { "s3-", SUSPEND_STATE_S3 },
+ { "s4-", SUSPEND_STATE_DISK },
+ { NULL },
+ };
+
+ for (const __typeof__(*suspend_states) *s = suspend_states; s->name; s++)
+ igt_subtest_f("%slr-mode-workload", s->name)
+ run_lr_workload(fd, s->state);
+ }
igt_fixture()
drm_close_driver(fd);
--
2.54.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t 3/3] tests/xe_exec_fault_mode: Add fault-mode workload subtests with suspend variants
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 1/3] tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 2/3] tests/xe_exec_compute_mode: Add workload subtests with suspend variants Thomas Hellström
@ 2026-05-21 14:34 ` Thomas Hellström
2026-05-21 23:54 ` ✓ Xe.CI.BAT: success for xe: Test LR and fault mode workloads across suspend/resume (rev2) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Thomas Hellström @ 2026-05-21 14:34 UTC (permalink / raw)
To: igt-dev
Cc: Thomas Hellström, Matthew Brost, Francois Dugast,
Matthew Auld, Rodrigo Vivi, Maarten Lankhorst
Add run_fault_workload() using SUSPEND_STATE_NONE as a sentinel for the
no-suspend case. All variants are registered from a single table:
fault-mode-workload (no suspend, 30s stress)
s2idle-fault-mode-workload (SUSPEND_STATE_FREEZE)
s3-fault-mode-workload (SUSPEND_STATE_S3)
s4-fault-mode-workload (SUSPEND_STATE_DISK)
The suspend variants perform a full suspend/resume cycle while the
preemptible spinner is running on an LR+fault-mode VM, then assert the
workload resumes and can be cleanly stopped.
To support the new code, include xe/xe_spin.h and hoist USER_FENCE_VALUE
to file scope.
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
tests/intel/xe_exec_fault_mode.c | 123 ++++++++++++++++++++++++++++++-
1 file changed, 122 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
index 3e92dfbd9..c0a067f04 100644
--- a/tests/intel/xe_exec_fault_mode.c
+++ b/tests/intel/xe_exec_fault_mode.c
@@ -21,9 +21,11 @@
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
#include <string.h>
#define MAX_N_EXEC_QUEUES 16
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
#define USERPTR (0x1 << 0)
#define REBIND (0x1 << 1)
@@ -145,7 +147,6 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
uint32_t vm;
uint64_t addr = 0x1a0000;
uint64_t sync_addr = 0x101a0000;
-#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
struct drm_xe_sync sync[1] = {
{ .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
.timeline_value = USER_FENCE_VALUE },
@@ -453,6 +454,109 @@ test_exec_main(int fd, int n_exec_queues, int n_execs, unsigned int flags)
}
}
+#define SUSPEND_STATE_NONE ((enum igt_suspend_state)-1)
+
+/**
+ * SUBTEST: fault-mode-workload
+ * Description: Stress preemptible fault mode workload for 30s.
+ * Test category: functionality test
+ *
+ * SUBTEST: s2idle-fault-mode-workload
+ * Description: Suspend to idle (s2idle) with a preemptible fault mode workload running.
+ * Test category: functionality test
+ *
+ * SUBTEST: s3-fault-mode-workload
+ * Description: Suspend to RAM (s3) with a preemptible fault mode workload running.
+ * Test category: functionality test
+ *
+ * SUBTEST: s4-fault-mode-workload
+ * Description: Suspend to disk (s4) with a preemptible fault mode workload running.
+ * Test category: functionality test
+ */
+static void run_fault_workload(int fd, enum igt_suspend_state s_state)
+{
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE,
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ struct xe_spin *spin;
+ struct drm_xe_engine *engine;
+ uint64_t vm_sync;
+ size_t bo_size;
+ uint32_t vm;
+ uint32_t exec_queue;
+ uint64_t spin_addr;
+ uint64_t ahnd;
+ uint32_t bo;
+ uint32_t ts_1, ts_2;
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+ ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ bo_size = xe_bb_size(fd, sizeof(*spin));
+ engine = xe_find_engine_by_class(fd, DRM_XE_ENGINE_CLASS_COPY);
+ igt_assert(engine);
+
+ bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, engine->instance.gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ spin = xe_bo_map(fd, bo, bo_size);
+
+ exec_queue = xe_exec_queue_create(fd, vm, &engine->instance, 0);
+ spin_addr = intel_allocator_alloc_with_strategy(ahnd, bo, bo_size, 0,
+ ALLOC_STRATEGY_LOW_TO_HIGH);
+
+ sync.addr = to_user_pointer(&vm_sync);
+ xe_vm_bind_async(fd, vm, 0, bo, 0, spin_addr, bo_size, &sync, 1);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+
+ xe_spin_init_opts(spin, .addr = spin_addr, .write_timestamp = true,
+ .preempt = true);
+ sync.addr = spin_addr + (char *)&spin->exec_sync - (char *)spin;
+ exec.exec_queue_id = exec_queue;
+ exec.address = spin_addr;
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(spin);
+
+ if (s_state != SUSPEND_STATE_NONE) {
+ enum igt_suspend_test test = s_state == SUSPEND_STATE_DISK ?
+ SUSPEND_TEST_DEVICES : SUSPEND_TEST_NONE;
+ igt_system_suspend_autoresume(s_state, test);
+ } else {
+ sleep(30);
+ }
+
+ /* Collect and check timestamps - workload should still be running */
+ ts_1 = spin->timestamp;
+ sleep(1);
+ ts_2 = spin->timestamp;
+ igt_assert_neq_u32(ts_1, ts_2);
+
+ xe_spin_end(spin);
+ xe_wait_ufence(fd, &spin->exec_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+
+ /* Check timestamps to make sure spinner is stopped */
+ ts_1 = spin->timestamp;
+ sleep(1);
+ ts_2 = spin->timestamp;
+ igt_assert_eq_u32(ts_1, ts_2);
+
+ sync.addr = to_user_pointer(&vm_sync);
+ xe_vm_unbind_async(fd, vm, 0, 0, spin_addr, bo_size, &sync, 1);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+ munmap(spin, bo_size);
+ gem_close(fd, bo);
+
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+ put_ahnd(ahnd);
+}
+
int igt_main()
{
struct drm_xe_engine_class_instance *hwe;
@@ -589,6 +693,23 @@ int igt_main()
xe_for_each_engine(fd, hwe)
test_exec(fd, hwe, 1, 1, ENABLE_SCRATCH | INVALID_VA);
+ {
+ static const struct {
+ const char *name;
+ enum igt_suspend_state state;
+ } suspend_states[] = {
+ { "", SUSPEND_STATE_NONE },
+ { "s2idle-", SUSPEND_STATE_FREEZE },
+ { "s3-", SUSPEND_STATE_S3 },
+ { "s4-", SUSPEND_STATE_DISK },
+ { NULL },
+ };
+
+ for (const __typeof__(*suspend_states) *s = suspend_states; s->name; s++)
+ igt_subtest_f("%sfault-mode-workload", s->name)
+ run_fault_workload(fd, s->state);
+ }
+
igt_fixture() {
drm_close_driver(fd);
}
--
2.54.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for xe: Test LR and fault mode workloads across suspend/resume (rev2)
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
` (2 preceding siblings ...)
2026-05-21 14:34 ` [PATCH i-g-t 3/3] tests/xe_exec_fault_mode: Add fault-mode " Thomas Hellström
@ 2026-05-21 23:54 ` Patchwork
2026-05-22 0:06 ` ✗ i915.CI.BAT: failure " Patchwork
2026-05-22 6:56 ` ✓ Xe.CI.FULL: success " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-05-21 23:54 UTC (permalink / raw)
To: Thomas Hellstrom; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 795 bytes --]
== Series Details ==
Series: xe: Test LR and fault mode workloads across suspend/resume (rev2)
URL : https://patchwork.freedesktop.org/series/167026/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8933_BAT -> XEIGTPW_15223_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8933 -> IGTPW_15223
IGTPW_15223: 15223
IGT_8933: 8933
xe-5113-f103db97c610a41177720b08aa4a2a05f9b42d49: f103db97c610a41177720b08aa4a2a05f9b42d49
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/index.html
[-- Attachment #2: Type: text/html, Size: 1340 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.BAT: failure for xe: Test LR and fault mode workloads across suspend/resume (rev2)
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
` (3 preceding siblings ...)
2026-05-21 23:54 ` ✓ Xe.CI.BAT: success for xe: Test LR and fault mode workloads across suspend/resume (rev2) Patchwork
@ 2026-05-22 0:06 ` Patchwork
2026-05-22 6:56 ` ✓ Xe.CI.FULL: success " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-05-22 0:06 UTC (permalink / raw)
To: Thomas Hellstrom; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2228 bytes --]
== Series Details ==
Series: xe: Test LR and fault mode workloads across suspend/resume (rev2)
URL : https://patchwork.freedesktop.org/series/167026/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8933 -> IGTPW_15223
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15223 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15223, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15223/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15223:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@coherency:
- bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8933/bat-arlh-3/igt@i915_selftest@live@coherency.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15223/bat-arlh-3/igt@i915_selftest@live@coherency.html
Known issues
------------
Here are the changes found in IGTPW_15223 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][3] -> [INCOMPLETE][4] ([i915#16139])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8933/bat-arlh-3/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15223/bat-arlh-3/igt@i915_selftest@live.html
[i915#16139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16139
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8933 -> IGTPW_15223
CI-20190529: 20190529
CI_DRM_18537: f103db97c610a41177720b08aa4a2a05f9b42d49 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15223: 15223
IGT_8933: 8933
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15223/index.html
[-- Attachment #2: Type: text/html, Size: 2855 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for xe: Test LR and fault mode workloads across suspend/resume (rev2)
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
` (4 preceding siblings ...)
2026-05-22 0:06 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2026-05-22 6:56 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-05-22 6:56 UTC (permalink / raw)
To: Thomas Hellstrom; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 33941 bytes --]
== Series Details ==
Series: xe: Test LR and fault mode workloads across suspend/resume (rev2)
URL : https://patchwork.freedesktop.org/series/167026/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8933_FULL -> XEIGTPW_15223_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15223_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@xe_exec_compute_mode@s2idle-lr-mode-workload} (NEW):
- shard-bmg: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-9/igt@xe_exec_compute_mode@s2idle-lr-mode-workload.html
- shard-lnl: NOTRUN -> [FAIL][2] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@xe_exec_compute_mode@s2idle-lr-mode-workload.html
* {igt@xe_exec_compute_mode@s3-lr-mode-workload} (NEW):
- shard-bmg: NOTRUN -> [ABORT][3] +2 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-1/igt@xe_exec_compute_mode@s3-lr-mode-workload.html
* {igt@xe_exec_fault_mode@s2idle-fault-mode-workload} (NEW):
- shard-lnl: NOTRUN -> [ABORT][4] +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@xe_exec_fault_mode@s2idle-fault-mode-workload.html
* {igt@xe_exec_fault_mode@s3-fault-mode-workload} (NEW):
- shard-lnl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-1/igt@xe_exec_fault_mode@s3-fault-mode-workload.html
New tests
---------
New tests have been introduced between XEIGT_8933_FULL and XEIGTPW_15223_FULL:
### New IGT tests (7) ###
* igt@xe_exec_compute_mode@s2idle-lr-mode-workload:
- Statuses : 2 fail(s)
- Exec time: [2.01, 2.75] s
* igt@xe_exec_compute_mode@s3-lr-mode-workload:
- Statuses : 1 abort(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_compute_mode@s4-lr-mode-workload:
- Statuses : 1 abort(s) 1 fail(s)
- Exec time: [8.34, 8.70] s
* igt@xe_exec_fault_mode@fault-mode-workload:
- Statuses : 2 pass(s)
- Exec time: [32.01, 32.02] s
* igt@xe_exec_fault_mode@s2idle-fault-mode-workload:
- Statuses : 2 abort(s)
- Exec time: [2.50, 2.88] s
* igt@xe_exec_fault_mode@s3-fault-mode-workload:
- Statuses : 1 abort(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_fault_mode@s4-fault-mode-workload:
- Statuses : 2 fail(s)
- Exec time: [8.38, 8.67] s
Known issues
------------
Here are the changes found in XEIGTPW_15223_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-10/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321] / [Intel XE#7355])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1424])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#323] / [Intel XE#6035])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2286] / [Intel XE#6035])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][21] -> [DMESG-FAIL][22] ([Intel XE#5545] / [Intel XE#7774]) +1 other test dmesg-fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-dp2-hdmi-a3.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1421])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-rmfb@a-dp2:
- shard-bmg: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727]) +1 other test incomplete
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@a-dp2.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#656] / [Intel XE#7905]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#7905]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7865]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +9 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#7915]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-4/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7086] / [Intel XE#7390])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_lease@possible-crtcs-filtering:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#6703]) +44 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-4/igt@kms_lease@possible-crtcs-filtering.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_lease@possible-crtcs-filtering.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#6813])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-5/igt@kms_pm_rpm@package-g7.html
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6814] / [Intel XE#7428])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#4608])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#4608] / [Intel XE#7304])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1489]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-9/igt@kms_psr@fbc-pr-primary-render.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7636]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#6321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-cm:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6540] / [Intel XE#688])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-4/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7482])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-1/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1392]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7136])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm.html
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7136]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@exec-sanity:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6874])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@xe_exec_multi_queue@exec-sanity.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6874]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7866])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-dontunmap:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6703])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-dontunmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap:
- shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#6557] / [Intel XE#6703])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap.html
* igt@xe_exec_threads@threads-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7138])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-userptr.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#6569])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][68] -> [ABORT][69] ([Intel XE#8007])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-8/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-lnl: [FAIL][70] ([i915#4767]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-lnl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][72] ([Intel XE#301]) -> [PASS][73] +1 other test pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][74] ([Intel XE#7308]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][76] ([Intel XE#7915]) -> [PASS][77] +3 other tests pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [ABORT][78] ([Intel XE#5545] / [Intel XE#7774] / [Intel XE#7814]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@kms_plane_cursor@viewport.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-1/igt@kms_plane_cursor@viewport.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][80] ([Intel XE#7340]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][82] ([Intel XE#6321]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch:
- shard-bmg: [ABORT][84] ([Intel XE#7893]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch.html
* igt@xe_exec_system_allocator@twice-malloc-busy:
- shard-lnl: [ABORT][86] ([Intel XE#8007]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-lnl-7/igt@xe_exec_system_allocator@twice-malloc-busy.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-lnl-2/igt@xe_exec_system_allocator@twice-malloc-busy.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][88] ([Intel XE#2327]) -> [SKIP][89] ([Intel XE#6703])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][90] ([Intel XE#1124]) -> [SKIP][91] ([Intel XE#6703])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][92] ([Intel XE#2887]) -> [SKIP][93] ([Intel XE#6703])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-bmg: [SKIP][94] ([Intel XE#2252]) -> [SKIP][95] ([Intel XE#6703])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-bmg: [SKIP][96] ([Intel XE#4141]) -> [SKIP][97] ([Intel XE#6703])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][98] ([Intel XE#2311]) -> [SKIP][99] ([Intel XE#6703]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-blt.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][100] ([Intel XE#2313]) -> [SKIP][101] ([Intel XE#6703]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-bmg: [SKIP][102] ([Intel XE#7283]) -> [SKIP][103] ([Intel XE#6703])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_psr@pr-no-drrs:
- shard-bmg: [SKIP][104] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][105] ([Intel XE#6703])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-2/igt@kms_psr@pr-no-drrs.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@kms_psr@pr-no-drrs.html
* igt@xe_eudebug@basic-connect:
- shard-bmg: [SKIP][106] ([Intel XE#7636]) -> [SKIP][107] ([Intel XE#6703]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-5/igt@xe_eudebug@basic-connect.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_eudebug@basic-connect.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race:
- shard-bmg: [SKIP][108] ([Intel XE#7136]) -> [SKIP][109] ([Intel XE#6703]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr:
- shard-bmg: [SKIP][110] ([Intel XE#6874]) -> [SKIP][111] ([Intel XE#6703]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-bmg: [SKIP][112] ([Intel XE#7138]) -> [SKIP][113] ([Intel XE#6703]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][114] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][115] ([Intel XE#6703])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8933/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[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#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
Build changes
-------------
* IGT: IGT_8933 -> IGTPW_15223
IGTPW_15223: 15223
IGT_8933: 8933
xe-5113-f103db97c610a41177720b08aa4a2a05f9b42d49: f103db97c610a41177720b08aa4a2a05f9b42d49
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15223/index.html
[-- Attachment #2: Type: text/html, Size: 39482 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-05-22 6:56 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-21 14:34 [PATCH RESEND i-g-t 0/3] xe: Test LR and fault mode workloads across suspend/resume Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 1/3] tests/xe_exec_compute_mode: Make lr-mode-workload spinner preemptible Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 2/3] tests/xe_exec_compute_mode: Add workload subtests with suspend variants Thomas Hellström
2026-05-21 14:34 ` [PATCH i-g-t 3/3] tests/xe_exec_fault_mode: Add fault-mode " Thomas Hellström
2026-05-21 23:54 ` ✓ Xe.CI.BAT: success for xe: Test LR and fault mode workloads across suspend/resume (rev2) Patchwork
2026-05-22 0:06 ` ✗ i915.CI.BAT: failure " Patchwork
2026-05-22 6:56 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox