* [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
@ 2026-02-27 11:41 Jan Maslak
2026-02-27 11:41 ` [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync Jan Maslak
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jan Maslak @ 2026-02-27 11:41 UTC (permalink / raw)
To: igt-dev; +Cc: gwan-gyeong.mun, Jan Maslak
Fix sporadic failures in xe_eudebug_online pagefault tests caused by
fsync() on the debugger VM fd silently failing when the GPU cache flush
hardware is temporarily busy.
Jan Maslak (2):
tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync
tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd
tests/intel/xe_eudebug_online.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
@ 2026-02-27 11:41 ` Jan Maslak
2026-03-04 11:03 ` Maciej Patelczyk
2026-02-27 11:41 ` [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd Jan Maslak
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Jan Maslak @ 2026-02-27 11:41 UTC (permalink / raw)
To: igt-dev; +Cc: gwan-gyeong.mun, Jan Maslak
The vm_open_trigger() function opens a debugger VM fd via
DRM_XE_EUDEBUG_IOCTL_VM_OPEN leaving timeout_ns at zero. With a zero
timeout, fsync() on the fd may return -ETIMEDOUT immediately instead of
waiting for GPU cache invalidation to complete.
Set timeout_ns to DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS to allow
up to 10 seconds for cache invalidation to complete.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
---
tests/intel/xe_eudebug_online.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index 059f918a6..6009da4d6 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -904,6 +904,7 @@ static void vm_open_trigger(struct xe_eudebug_debugger *d,
struct drm_xe_eudebug_vm_open vo = {
.client_handle = vm->client_handle,
.vm_handle = vm->vm_handle,
+ .timeout_ns = DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS,
};
int fd;
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
2026-02-27 11:41 ` [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync Jan Maslak
@ 2026-02-27 11:41 ` Jan Maslak
2026-03-04 11:04 ` Maciej Patelczyk
2026-02-27 20:22 ` ✓ Xe.CI.BAT: success for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Jan Maslak @ 2026-02-27 11:41 UTC (permalink / raw)
To: igt-dev; +Cc: gwan-gyeong.mun, Jan Maslak
fsync() on a debugger VM fd triggers GPU cache invalidation, ensuring
that pwrite() and pread() operations observe a consistent memory state.
All call sites were silently ignoring the return value, allowing cache
flush failures to go undetected.
Wrap all fsync() calls with igt_assert_eq() so that a failure causes
an immediate abort.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
---
tests/intel/xe_eudebug_online.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index 6009da4d6..538fefc13 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -620,7 +620,7 @@ static bool set_breakpoint_once(struct xe_eudebug_debugger *d,
instr_usdw |= breakpoint_bit;
igt_assert_eq(pwrite(data->vm_fd, &instr_usdw, sz,
data->bb_offset + aip), sz);
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
breakpoint_set = true;
}
@@ -647,7 +647,7 @@ static void get_aips_offset_table(struct online_debug_data *data, int threads)
data->first_aip = first_aip;
data->aips_offset_table[table_index++] = 0;
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
for (int i = sz; i < data->target_size; i += sz) {
igt_assert_eq(pread(data->vm_fd, &aip, sz, data->target_offset + i), sz);
if (aip == first_aip)
@@ -667,7 +667,7 @@ static int get_stepped_threads_count(struct online_debug_data *data, int threads
size_t sz = sizeof(uint32_t);
uint32_t aip;
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
for (int i = 0; i < threads; i++) {
igt_assert_eq(pread(data->vm_fd, &aip, sz,
data->target_offset + data->aips_offset_table[i]), sz);
@@ -761,7 +761,7 @@ static void eu_attention_resume_trigger(struct xe_eudebug_debugger *d,
igt_assert_eq(pwrite(data->vm_fd, &val, sizeof(uint32_t),
data->target_offset + steering_offset(threads)),
sizeof(uint32_t));
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
}
pthread_mutex_unlock(&data->mutex);
@@ -856,7 +856,7 @@ static void eu_attention_resume_single_step_trigger(struct xe_eudebug_debugger *
igt_assert_eq(pwrite(data->vm_fd, &val, sz,
data->target_offset + steering_offset(threads)), sz);
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
data->last_eu_control_seqno = eu_ctl_resume(d->master_fd, d->fd, att->client_handle,
att->exec_queue_handle, att->lrc_handle,
@@ -987,7 +987,7 @@ static void overwrite_immediate_value_in_common_target_write(int vm_fd, uint64_t
igt_assert_eq(pread(vm_fd, &val, sizeof(uint32_t), addr),
sizeof(uint32_t));
igt_debug("val_before_fsync[%d]: %08x\n", vals_changed, val);
- fsync(vm_fd);
+ igt_assert_eq(fsync(vm_fd), 0);
igt_assert_eq(pread(vm_fd, &val, sizeof(uint32_t), addr),
sizeof(uint32_t));
igt_debug("val_after_fsync[%d]: %08x\n", vals_changed, val);
@@ -1042,7 +1042,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d,
data->bb_offset + *kernel_offset + shader_preamble->size * 4 +
shader_write_instr->size * 4 * *counter),
sizeof(instr_usdw));
- fsync(data->vm_fd);
+ igt_assert_eq(fsync(data->vm_fd), 0);
}
/* restore current instruction */
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
2026-02-27 11:41 ` [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync Jan Maslak
2026-02-27 11:41 ` [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd Jan Maslak
@ 2026-02-27 20:22 ` Patchwork
2026-02-27 20:23 ` ✗ i915.CI.BAT: failure " Patchwork
2026-02-28 8:48 ` ✗ Xe.CI.FULL: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-27 20:22 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3598 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
URL : https://patchwork.freedesktop.org/series/162288/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8775_BAT -> XEIGTPW_14634_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
Additional (1): bat-bmg-3
Missing (1): bat-atsm-2
Known issues
------------
Here are the changes found in XEIGTPW_14634_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [PASS][1] -> [ABORT][2] ([Intel XE#7249])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#7483])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@xe_module_load@load:
- bat-wcl-1: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#7487])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-wcl-1/igt@xe_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-wcl-1/igt@xe_module_load@load.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][7] ([Intel XE#6566]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][8] -> [TIMEOUT][9] ([Intel XE#6506])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-dg2-oem2/igt@xe_waitfence@abstime.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][10] ([Intel XE#7483]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#7487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7487
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14634
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14634: a1229ea4a137adf633535ff74751dba5faa6165c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8775: 8775
xe-4632-568403859ba7182ce2a59553664b34d58467adeb: 568403859ba7182ce2a59553664b34d58467adeb
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/index.html
[-- Attachment #2: Type: text/html, Size: 4382 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
` (2 preceding siblings ...)
2026-02-27 20:22 ` ✓ Xe.CI.BAT: success for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Patchwork
@ 2026-02-27 20:23 ` Patchwork
2026-02-28 8:48 ` ✗ Xe.CI.FULL: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-27 20:23 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8850 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
URL : https://patchwork.freedesktop.org/series/162288/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8775 -> IGTPW_14634
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14634 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14634, 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_14634/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (2): bat-dg2-9 fi-pnv-d510
Missing (2): bat-dg2-13 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14634:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- fi-pnv-d510: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in IGTPW_14634 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-dg2-9: NOTRUN -> [ABORT][2] ([i915#15759]) +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-dg1-6: [PASS][3] -> [ABORT][4] ([i915#15759]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-dg1-6/igt@gem_lmem_swapping@parallel-random-engines.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg1-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4079])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#15657])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#11681] / [i915#6621])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][10] -> [DMESG-FAIL][11] ([i915#12061]) +1 other test dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-atsm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4215] / [i915#5190])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#4212]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4103] / [i915#4213]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#5354])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][19] +29 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#1072] / [i915#9732]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3708])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#3291] / [i915#3708]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic:
- bat-atsm-1: [ABORT][25] ([i915#15759]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-atsm-1/igt@gem_lmem_swapping@basic.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/bat-atsm-1/igt@gem_lmem_swapping@basic.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8775 -> IGTPW_14634
* Linux: CI_DRM_18062 -> CI_DRM_18065
CI-20190529: 20190529
CI_DRM_18062: 568403859ba7182ce2a59553664b34d58467adeb @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18065: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14634: a1229ea4a137adf633535ff74751dba5faa6165c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8775: 8775
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14634/index.html
[-- Attachment #2: Type: text/html, Size: 10530 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
` (3 preceding siblings ...)
2026-02-27 20:23 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2026-02-28 8:48 ` Patchwork
2026-03-04 11:05 ` Maciej Patelczyk
4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-02-28 8:48 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 47284 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
URL : https://patchwork.freedesktop.org/series/162288/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8775_FULL -> XEIGTPW_14634_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14634_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14634_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_14634_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@device_reset@unbind-reset-rebind:
- shard-bmg: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@device_reset@unbind-reset-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@device_reset@unbind-reset-rebind.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: NOTRUN -> [ABORT][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
Known issues
------------
Here are the changes found in XEIGTPW_14634_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1428])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2191])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1512])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6983]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652]) +17 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3432])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#306])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6507])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][23] ([Intel XE#7305]) +9 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0.html
* igt@kms_content_protection@atomic:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3278] / [Intel XE#6973])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#3304])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6974])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#6707]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2320]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2321])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#6841]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#5354])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1508])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2244]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4422])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1137])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1421]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#1745])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/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][43] ([Intel XE#1397])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7178]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7179])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#352])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7061]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4141]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +16 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7061]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#656]) +31 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +17 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1470])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1503])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6911])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7283]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7283]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#5020])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2392])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1439] / [Intel XE#3141])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4608]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1128]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@kms_psr@psr-basic.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3414] / [Intel XE#3904])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1127])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12:
- shard-lnl: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#4537]) +1 other test dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6503]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#362])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1091] / [Intel XE#2849])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1062] / [Intel XE#7318])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4837]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-bind-extended:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4837]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-extended.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-4/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6665])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4518])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][86] -> [INCOMPLETE][87] ([Intel XE#6321])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6540] / [Intel XE#688]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7482]) +12 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2322]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1392]) +8 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7136]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#7136]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6874]) +20 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#6874]) +23 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#5625])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_threads@threads-bal-mixed-userptr-rebind:
- shard-bmg: [PASS][98] -> [ABORT][99] ([Intel XE#5545] / [Intel XE#6652])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#7166])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#7138]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#7138]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2833])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2229])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127]) -> ([PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [SKIP][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151]) ([Intel XE#378])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-6/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#6964])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#6964]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2284] / [Intel XE#366])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#579] / [Intel XE#7329])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#4650])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#4733])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#944]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#944]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][161] -> [FAIL][162] ([Intel XE#6569]) +1 other test fail
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#4273])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][164] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [FAIL][166] ([Intel XE#6078]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-lnl: [ABORT][168] ([Intel XE#4760]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@xe_pm_residency@aspm_link_residency:
- shard-bmg: [SKIP][170] ([Intel XE#7258]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@xe_pm_residency@aspm_link_residency.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][172] ([Intel XE#6569]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][174] ([Intel XE#3544]) -> [SKIP][175] ([Intel XE#3374] / [Intel XE#3544])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][176] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][177] ([Intel XE#5466])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[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#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[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#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
[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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[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#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#6983]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6983
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[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#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14634
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14634: a1229ea4a137adf633535ff74751dba5faa6165c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8775: 8775
xe-4632-568403859ba7182ce2a59553664b34d58467adeb: 568403859ba7182ce2a59553664b34d58467adeb
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/index.html
[-- Attachment #2: Type: text/html, Size: 52965 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync
2026-02-27 11:41 ` [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync Jan Maslak
@ 2026-03-04 11:03 ` Maciej Patelczyk
0 siblings, 0 replies; 9+ messages in thread
From: Maciej Patelczyk @ 2026-03-04 11:03 UTC (permalink / raw)
To: Jan Maslak, igt-dev; +Cc: gwan-gyeong.mun
On 27/02/2026 12:41, Jan Maslak wrote:
> The vm_open_trigger() function opens a debugger VM fd via
> DRM_XE_EUDEBUG_IOCTL_VM_OPEN leaving timeout_ns at zero. With a zero
> timeout, fsync() on the fd may return -ETIMEDOUT immediately instead of
> waiting for GPU cache invalidation to complete.
>
> Set timeout_ns to DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS to allow
> up to 10 seconds for cache invalidation to complete.
>
> Signed-off-by: Jan Maslak <jan.maslak@intel.com>
> ---
> tests/intel/xe_eudebug_online.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
> index 059f918a6..6009da4d6 100644
> --- a/tests/intel/xe_eudebug_online.c
> +++ b/tests/intel/xe_eudebug_online.c
> @@ -904,6 +904,7 @@ static void vm_open_trigger(struct xe_eudebug_debugger *d,
> struct drm_xe_eudebug_vm_open vo = {
> .client_handle = vm->client_handle,
> .vm_handle = vm->vm_handle,
> + .timeout_ns = DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS,
> };
> int fd;
>
Oh, good catch!
Reviewed-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd
2026-02-27 11:41 ` [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd Jan Maslak
@ 2026-03-04 11:04 ` Maciej Patelczyk
0 siblings, 0 replies; 9+ messages in thread
From: Maciej Patelczyk @ 2026-03-04 11:04 UTC (permalink / raw)
To: Jan Maslak, igt-dev; +Cc: gwan-gyeong.mun
On 27/02/2026 12:41, Jan Maslak wrote:
> fsync() on a debugger VM fd triggers GPU cache invalidation, ensuring
> that pwrite() and pread() operations observe a consistent memory state.
> All call sites were silently ignoring the return value, allowing cache
> flush failures to go undetected.
>
> Wrap all fsync() calls with igt_assert_eq() so that a failure causes
> an immediate abort.
>
> Signed-off-by: Jan Maslak <jan.maslak@intel.com>
> ---
> tests/intel/xe_eudebug_online.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
> index 6009da4d6..538fefc13 100644
> --- a/tests/intel/xe_eudebug_online.c
> +++ b/tests/intel/xe_eudebug_online.c
> @@ -620,7 +620,7 @@ static bool set_breakpoint_once(struct xe_eudebug_debugger *d,
> instr_usdw |= breakpoint_bit;
> igt_assert_eq(pwrite(data->vm_fd, &instr_usdw, sz,
> data->bb_offset + aip), sz);
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
>
> breakpoint_set = true;
> }
> @@ -647,7 +647,7 @@ static void get_aips_offset_table(struct online_debug_data *data, int threads)
> data->first_aip = first_aip;
> data->aips_offset_table[table_index++] = 0;
>
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
> for (int i = sz; i < data->target_size; i += sz) {
> igt_assert_eq(pread(data->vm_fd, &aip, sz, data->target_offset + i), sz);
> if (aip == first_aip)
> @@ -667,7 +667,7 @@ static int get_stepped_threads_count(struct online_debug_data *data, int threads
> size_t sz = sizeof(uint32_t);
> uint32_t aip;
>
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
> for (int i = 0; i < threads; i++) {
> igt_assert_eq(pread(data->vm_fd, &aip, sz,
> data->target_offset + data->aips_offset_table[i]), sz);
> @@ -761,7 +761,7 @@ static void eu_attention_resume_trigger(struct xe_eudebug_debugger *d,
> igt_assert_eq(pwrite(data->vm_fd, &val, sizeof(uint32_t),
> data->target_offset + steering_offset(threads)),
> sizeof(uint32_t));
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
> }
> pthread_mutex_unlock(&data->mutex);
>
> @@ -856,7 +856,7 @@ static void eu_attention_resume_single_step_trigger(struct xe_eudebug_debugger *
>
> igt_assert_eq(pwrite(data->vm_fd, &val, sz,
> data->target_offset + steering_offset(threads)), sz);
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
>
> data->last_eu_control_seqno = eu_ctl_resume(d->master_fd, d->fd, att->client_handle,
> att->exec_queue_handle, att->lrc_handle,
> @@ -987,7 +987,7 @@ static void overwrite_immediate_value_in_common_target_write(int vm_fd, uint64_t
> igt_assert_eq(pread(vm_fd, &val, sizeof(uint32_t), addr),
> sizeof(uint32_t));
> igt_debug("val_before_fsync[%d]: %08x\n", vals_changed, val);
> - fsync(vm_fd);
> + igt_assert_eq(fsync(vm_fd), 0);
> igt_assert_eq(pread(vm_fd, &val, sizeof(uint32_t), addr),
> sizeof(uint32_t));
> igt_debug("val_after_fsync[%d]: %08x\n", vals_changed, val);
> @@ -1042,7 +1042,7 @@ static void eu_attention_resume_caching_trigger(struct xe_eudebug_debugger *d,
> data->bb_offset + *kernel_offset + shader_preamble->size * 4 +
> shader_write_instr->size * 4 * *counter),
> sizeof(instr_usdw));
> - fsync(data->vm_fd);
> + igt_assert_eq(fsync(data->vm_fd), 0);
> }
>
> /* restore current instruction */
LGTM,
Reviewed-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors
2026-02-28 8:48 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-03-04 11:05 ` Maciej Patelczyk
0 siblings, 0 replies; 9+ messages in thread
From: Maciej Patelczyk @ 2026-03-04 11:05 UTC (permalink / raw)
To: igt-dev
[-- Attachment #1: Type: text/plain, Size: 50699 bytes --]
On 28/02/2026 09:48, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* tests/intel/xe_eudebug_online: Fix sporadic failures due to
> unhandled fsync errors
> *URL:* https://patchwork.freedesktop.org/series/162288/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/index.html
>
>
> CI Bug Log - changes from XEIGT_8775_FULL -> XEIGTPW_14634_FULL
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with XEIGTPW_14634_FULL absolutely need
> to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_14634_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_14634_FULL:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@device_reset@unbind-reset-rebind:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@device_reset@unbind-reset-rebind.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@device_reset@unbind-reset-rebind.html>
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-legacy:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html>
> *
>
> igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
>
> o shard-bmg: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html>
>
Not related to the change.
Maciej
> Known issues
>
> Here are the changes found in XEIGTPW_14634_FULL that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> (Intel XE#1407
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +3
> other tests skip
> *
>
> igt@kms_big_fb@linear-32bpp-rotate-270:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html>
> (Intel XE#2327
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +3
> other tests skip
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html>
> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +7
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html>
> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +6
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html>
> (Intel XE#1428
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428>)
> *
>
> igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html>
> (Intel XE#2191
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html>
> (Intel XE#1512
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>)
> *
>
> igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html>
> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> o shard-bmg: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html>
> (Intel XE#6983
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6983>) +1
> other test fail
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html>
> (Intel XE#3432
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html>
> (Intel XE#2652
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652>)
> +17 other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html>
> (Intel XE#3432
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html>
> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +8
> other tests skip
> *
>
> igt@kms_chamelium_color@ctm-negative:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html>
> (Intel XE#306
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
> *
>
> igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html>
> (Intel XE#373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +7
> other tests skip
> *
>
> igt@kms_chamelium_hpd@dp-hpd-storm:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html>
> (Intel XE#2252
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +4
> other tests skip
> *
>
> igt@kms_chamelium_sharpness_filter@filter-basic:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_chamelium_sharpness_filter@filter-basic.html>
> (Intel XE#6507
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507>)
> *
>
> igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0:
>
> o shard-lnl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0.html>
> (Intel XE#7305
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305>) +9
> other tests fail
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_content_protection@atomic.html>
> (Intel XE#3278
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278> /
> Intel XE#6973
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973>)
> *
>
> igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1:
>
> o shard-bmg: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1.html>
> (Intel XE#3304
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>)
> *
>
> igt@kms_content_protection@dp-mst-type-1-suspend-resume:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html>
> (Intel XE#6974
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974>)
> *
>
> igt@kms_content_protection@legacy:
>
> o shard-bmg: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_content_protection@legacy.html>
> (Intel XE#1178
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> /
> Intel XE#3304
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>) +2
> other tests fail
> *
>
> igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1:
>
> o shard-bmg: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html>
> (Intel XE#6707
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707>) +1
> other test fail
> *
>
> igt@kms_cursor_crc@cursor-offscreen-32x32:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html>
> (Intel XE#2320
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +3
> other tests skip
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x170:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html>
> (Intel XE#2321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
> *
>
> igt@kms_cursor_crc@cursor-random-64x21:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@kms_cursor_crc@cursor-random-64x21.html>
> (Intel XE#1424
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +3
> other tests skip
> *
>
> igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html>
> (Intel XE#6841
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841>) +1
> other test fail
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html>
> (Intel XE#309
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +3
> other tests skip
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html>
> (Intel XE#5354
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354>)
> *
>
> igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html>
> (Intel XE#1508
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>)
> *
>
> igt@kms_dsc@dsc-with-bpc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_dsc@dsc-with-bpc.html>
> (Intel XE#2244
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1
> other test skip
> *
>
> igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html>
> (Intel XE#4422
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422>)
> *
>
> igt@kms_feature_discovery@dp-mst:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_feature_discovery@dp-mst.html>
> (Intel XE#1137
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>)
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_flip@2x-plain-flip-fb-recreate.html>
> (Intel XE#1421
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html>
> (Intel XE#1397
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> /
> Intel XE#1745
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html>
> (Intel XE#1397
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html>
> (Intel XE#7178
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178>) +2
> other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html>
> (Intel XE#7179
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html>
> (Intel XE#7178
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178>)
> *
>
> igt@kms_force_connector_basic@force-edid:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_force_connector_basic@force-edid.html>
> (Intel XE#352
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>)
> *
>
> igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html>
> (Intel XE#6312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html>
> (Intel XE#6312
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312> /
> Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +4
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html>
> (Intel XE#7061
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061>) +2
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html>
> (Intel XE#4141
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +7
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html>
> (Intel XE#2311
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
> +16 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html>
> (Intel XE#7061
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061>) +1
> other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html>
> (Intel XE#656
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +31
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html>
> (Intel XE#2313
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>)
> +17 other tests skip
> *
>
> igt@kms_hdmi_inject@inject-4k:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html>
> (Intel XE#1470
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470>)
> *
>
> igt@kms_hdr@static-toggle:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_hdr@static-toggle.html>
> (Intel XE#1503
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>)
> *
>
> igt@kms_joiner@basic-ultra-joiner:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html>
> (Intel XE#6911
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911>)
> *
>
> igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html>
> (Intel XE#7283
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>) +1
> other test skip
> *
>
> igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html>
> (Intel XE#7283
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>) +1
> other test skip
> *
>
> igt@kms_plane_multiple@tiling-y:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html>
> (Intel XE#5020
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020>)
> *
>
> igt@kms_pm_dc@dc6-psr:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@kms_pm_dc@dc6-psr.html>
> (Intel XE#2392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392>)
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (Intel XE#1439
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> /
> Intel XE#3141
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>)
> *
>
> igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html>
> (Intel XE#2893
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893> /
> Intel XE#4608
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +1
> other test skip
> *
>
> igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html>
> (Intel XE#4608
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608>) +3
> other tests skip
> *
>
> igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html>
> (Intel XE#2893
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>)
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html>
> (Intel XE#1489
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +4
> other tests skip
> *
>
> igt@kms_psr2_su@frontbuffer-xrgb8888:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html>
> (Intel XE#1128
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128>) +1
> other test skip
> *
>
> igt@kms_psr@pr-cursor-plane-onoff:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@kms_psr@pr-cursor-plane-onoff.html>
> (Intel XE#1406
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +1
> other test skip
> *
>
> igt@kms_psr@psr-basic:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@kms_psr@psr-basic.html>
> (Intel XE#2234
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> /
> Intel XE#2850
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +8
> other tests skip
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html>
> (Intel XE#3414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> /
> Intel XE#3904
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (Intel XE#1127
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html>
> (Intel XE#3414
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> /
> Intel XE#3904
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1
> other test skip
> *
>
> igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html>
> (Intel XE#4537
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537>) +1
> other test dmesg-warn
> *
>
> igt@kms_sharpness_filter@filter-suspend:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@kms_sharpness_filter@filter-suspend.html>
> (Intel XE#6503
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>) +1
> other test skip
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (Intel XE#362
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)
> *
>
> igt@sriov_basic@enable-vfs-autoprobe-off:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html>
> (Intel XE#1091
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> /
> Intel XE#2849
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)
> *
>
> igt@xe_create@create-big-vram:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_create@create-big-vram.html>
> (Intel XE#1062
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062> /
> Intel XE#7318
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318>)
> *
>
> igt@xe_eudebug@basic-client-th:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_eudebug@basic-client-th.html>
> (Intel XE#4837
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +3
> other tests skip
> *
>
> igt@xe_eudebug@basic-vm-bind-extended:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-extended.html>
> (Intel XE#4837
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +3
> other tests skip
> *
>
> igt@xe_eudebug_online@basic-breakpoint:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_eudebug_online@basic-breakpoint.html>
> (Intel XE#4837
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837> /
> Intel XE#6665
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>) +3
> other tests skip
> *
>
> igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-4/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html>
> (Intel XE#4837
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837> /
> Intel XE#6665
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>) +2
> other tests skip
> *
>
> igt@xe_eudebug_online@pagefault-one-of-many:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_eudebug_online@pagefault-one-of-many.html>
> (Intel XE#6665
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>)
> *
>
> igt@xe_eudebug_sriov@deny-eudebug:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html>
> (Intel XE#4518
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518>)
> *
>
> igt@xe_evict@evict-beng-mixed-many-threads-small:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html>
> (Intel XE#6321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321>)
> *
>
> igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html>
> (Intel XE#6540
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540> /
> Intel XE#688
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +7
> other tests skip
> *
>
> igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html>
> (Intel XE#7482
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482>)
> +12 other tests skip
> *
>
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html>
> (Intel XE#2322
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +4
> other tests skip
> *
>
> igt@xe_exec_basic@multigpu-no-exec-userptr:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html>
> (Intel XE#1392
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +8
> other tests skip
> *
>
> igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm.html>
> (Intel XE#7136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>)
> +11 other tests skip
> *
>
> igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html>
> (Intel XE#7136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +7
> other tests skip
> *
>
> igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd.html>
> (Intel XE#6874
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>)
> +20 other tests skip
> *
>
> igt@xe_exec_multi_queue@two-queues-basic-smem:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-basic-smem.html>
> (Intel XE#6874
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>)
> +23 other tests skip
> *
>
> igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
>
> o shard-lnl: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html>
> (Intel XE#5625
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625>)
> *
>
> igt@xe_exec_threads@threads-bal-mixed-userptr-rebind:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-2/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html>
> (Intel XE#5545
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545> /
> Intel XE#6652
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652>)
> *
>
> igt@xe_exec_threads@threads-many-queues:
>
> o shard-bmg: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-6/igt@xe_exec_threads@threads-many-queues.html>
> (Intel XE#7166
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166>)
> *
>
> igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race.html>
> (Intel XE#7138
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +4
> other tests skip
> *
>
> igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html>
> (Intel XE#7138
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +3
> other tests skip
> *
>
> igt@xe_live_ktest@xe_eudebug:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-9/igt@xe_live_ktest@xe_eudebug.html>
> (Intel XE#2833
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833>)
> *
>
> igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html>
> (Intel XE#2229
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
> *
>
> igt@xe_module_load@load:
>
> o shard-lnl: (PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-6/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html>)
> -> (PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-2/igt@xe_module_load@load.html>,
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-1/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_module_load@load.html>,
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@xe_module_load@load.html>)
> (Intel XE#378
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
> *
>
> igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html>
> (Intel XE#6964
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964>)
> *
>
> igt@xe_multigpu_svm@mgpu-migration-basic:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_multigpu_svm@mgpu-migration-basic.html>
> (Intel XE#6964
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964>) +2
> other tests skip
> *
>
> igt@xe_pm@d3cold-basic-exec:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-6/igt@xe_pm@d3cold-basic-exec.html>
> (Intel XE#2284
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> /
> Intel XE#366
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
> *
>
> igt@xe_pm@s3-vm-bind-unbind-all:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_pm@s3-vm-bind-unbind-all.html>
> (Intel XE#584
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>)
> *
>
> igt@xe_pm@vram-d3cold-threshold:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-4/igt@xe_pm@vram-d3cold-threshold.html>
> (Intel XE#579
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/579> /
> Intel XE#7329
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329>)
> *
>
> igt@xe_pmu@all-fn-engine-activity-load:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-3/igt@xe_pmu@all-fn-engine-activity-load.html>
> (Intel XE#4650
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650>)
> *
>
> igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html>
> (Intel XE#4733
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733>)
> *
>
> igt@xe_query@multigpu-query-hwconfig:
>
> o shard-bmg: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@xe_query@multigpu-query-hwconfig.html>
> (Intel XE#944
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2
> other tests skip
> *
>
> igt@xe_query@multigpu-query-pxp-status:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html>
> (Intel XE#944
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1
> other test skip
> *
>
> igt@xe_sriov_flr@flr-twice:
>
> o shard-bmg: PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html>
> (Intel XE#6569
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569>) +1
> other test fail
> *
>
> igt@xe_sriov_flr@flr-vfs-parallel:
>
> o shard-lnl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-5/igt@xe_sriov_flr@flr-vfs-parallel.html>
> (Intel XE#4273
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273>)
>
>
> Possible fixes
>
> *
>
> igt@kms_async_flips@alternate-sync-async-flip-atomic:
>
> o shard-bmg: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html>
> (Intel XE#3718
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718> /
> Intel XE#6078
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html>
> +1 other test pass
> *
>
> igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
>
> o shard-bmg: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html>
> (Intel XE#6078
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html>
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-180:
>
> o shard-lnl: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html>
> (Intel XE#4760
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-lnl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html>
> *
>
> igt@xe_pm_residency@aspm_link_residency:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html>
> (Intel XE#7258
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-3/igt@xe_pm_residency@aspm_link_residency.html>
> *
>
> igt@xe_sriov_flr@flr-vfs-parallel:
>
> o shard-bmg: FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html>
> (Intel XE#6569
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html>
>
>
> Warnings
>
> *
>
> igt@kms_hdr@brightness-with-hdr:
>
> o shard-bmg: SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html>
> (Intel XE#3544
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html>
> (Intel XE#3374
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374> /
> Intel XE#3544
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
> *
>
> igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
>
> o shard-bmg: ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html>
> (Intel XE#5466
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466> /
> Intel XE#6652
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652>) ->
> ABORT
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14634/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html>
> (Intel XE#5466
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466>)
>
>
> Build changes
>
> * IGT: IGT_8775 -> IGTPW_14634
> * Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb ->
> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
>
> IGTPW_14634: a1229ea4a137adf633535ff74751dba5faa6165c @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8775: 8775
> xe-4632-568403859ba7182ce2a59553664b34d58467adeb:
> 568403859ba7182ce2a59553664b34d58467adeb
> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1:
> a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
>
[-- Attachment #2: Type: text/html, Size: 67785 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-03-04 11:05 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-27 11:41 [PATCH 0/2] tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Jan Maslak
2026-02-27 11:41 ` [PATCH 1/2] tests/intel/xe_eudebug_online: Set timeout for debugger VM fd sync Jan Maslak
2026-03-04 11:03 ` Maciej Patelczyk
2026-02-27 11:41 ` [PATCH 2/2] tests/intel/xe_eudebug_online: Assert fsync return on debugger VM fd Jan Maslak
2026-03-04 11:04 ` Maciej Patelczyk
2026-02-27 20:22 ` ✓ Xe.CI.BAT: success for tests/intel/xe_eudebug_online: Fix sporadic failures due to unhandled fsync errors Patchwork
2026-02-27 20:23 ` ✗ i915.CI.BAT: failure " Patchwork
2026-02-28 8:48 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-04 11:05 ` Maciej Patelczyk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox