* [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
@ 2026-02-27 14:26 Jan Maslak
2026-02-27 14:26 ` [PATCH 1/1] " Jan Maslak
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jan Maslak @ 2026-02-27 14:26 UTC (permalink / raw)
To: igt-dev; +Cc: maciej.patelczyk, Jan Maslak
Jan Maslak (1):
tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
tests/intel/xe_eudebug.c | 144 +++++++++++++++++++++++++++++++++------
1 file changed, 124 insertions(+), 20 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
2026-02-27 14:26 [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test Jan Maslak
@ 2026-02-27 14:26 ` Jan Maslak
2026-05-07 8:52 ` Maciej Patelczyk
2026-02-27 20:55 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Jan Maslak @ 2026-02-27 14:26 UTC (permalink / raw)
To: igt-dev; +Cc: maciej.patelczyk, Jan Maslak
Add a test that verifies the kernel correctly blocks unbind operations
on VMAs whose VM_BIND ufence has not yet been ACKed by the debugger.
The test performs N vm_bind operations with user fences attached, then
partially acknowledges them: the first (N-2) ufences are ACKed
immediately, while the remaining 2 are withheld. It checks that:
- the ACKed ufences complete successfully,
- the un-ACKed ufences time out as blocked,
- unbind attempts on the un-ACKed VMAs are denied with -EBUSY,
- after the remaining ACKs are delivered, the blocked ufences complete
and the unbinds succeed.
Signed-off-by: Jan Maslak <jan.maslak@intel.com>
---
tests/intel/xe_eudebug.c | 144 +++++++++++++++++++++++++++++++++------
1 file changed, 124 insertions(+), 20 deletions(-)
diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
index 134f31766..c899316fb 100644
--- a/tests/intel/xe_eudebug.c
+++ b/tests/intel/xe_eudebug.c
@@ -66,6 +66,7 @@ static void test_sysfs_toggle(int fd)
#define VM_BIND_DELAY_UFENCE_ACK (1 << 8)
#define VM_BIND_UFENCE_RECONNECT (1 << 9)
#define VM_BIND_UFENCE_SIGINT_CLIENT (1 << 10)
+#define VM_BIND_UFENCE_NO_ACK (1 << 11)
#define TEST_FAULTABLE (1 << 30)
#define TEST_DISCOVERY (1 << 31)
@@ -1924,6 +1925,7 @@ static void test_metadata_attach(int fd, unsigned int flags, int num_clients)
}
#define STAGE_CLIENT_WAIT_ON_UFENCE_DONE 1337
+#define STAGE_NO_ACK_READY_FOR_PARTIAL_ACK 1338
#define UFENCE_EVENT_COUNT_EXPECTED 4
#define UFENCE_EVENT_COUNT_MAX 100
@@ -1973,6 +1975,72 @@ static void client_wait_ufences(struct xe_eudebug_client *c,
}
}
+#define NO_ACK_HELD_COUNT 2
+
+static void client_wait_ufences_no_ack(struct xe_eudebug_client *c,
+ int fd, uint32_t vm,
+ struct ufence_bind *binds, int count)
+{
+ const int64_t short_timeout_ns = 500 * NSEC_PER_MSEC;
+ const int64_t long_timeout_ns = XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * NSEC_PER_SEC;
+ int64_t timeout_ns;
+ int err;
+
+ igt_assert(count >= NO_ACK_HELD_COUNT);
+
+ /* Signal debugger that binds are done - it will ACK first (N-2) fences */
+ xe_eudebug_client_signal_stage(c, STAGE_NO_ACK_READY_FOR_PARTIAL_ACK);
+
+ /* First (count - NO_ACK_HELD_COUNT) fences should be ACKed already - expect success */
+ for (int i = 0; i < count - NO_ACK_HELD_COUNT; i++) {
+ struct ufence_bind *b = &binds[i];
+
+ timeout_ns = long_timeout_ns;
+ err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
+ 0, &timeout_ns);
+ igt_assert_eq(err, 0);
+ igt_assert_eq(b->fence_data->vm_sync, b->f.timeline_value);
+ igt_debug("no-ack: wait #%d completed (was ACKed)\n", i);
+ }
+
+ /* Last NO_ACK_HELD_COUNT fences should NOT be ACKed yet - expect timeout */
+ for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
+ struct ufence_bind *b = &binds[i];
+
+ timeout_ns = short_timeout_ns;
+ err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
+ 0, &timeout_ns);
+ igt_assert_eq(err, -ETIME);
+ igt_assert_neq(b->fence_data->vm_sync, b->f.timeline_value);
+ igt_debug("no-ack: wait #%d blocked as expected (not ACKed)\n", i);
+ }
+
+ /* Try to unbind un-ACKed VMAs - kernel should deny with -EBUSY */
+ for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
+ struct ufence_bind *b = &binds[i];
+
+ err = __xe_vm_bind(fd, vm, 0, 0, 0, b->addr, b->range,
+ DRM_XE_VM_BIND_OP_UNMAP, 0, NULL, 0, 0, 0, 0);
+ igt_assert_eq(err, -EBUSY);
+ igt_debug("no-ack: unbind #%d denied with -EBUSY as expected\n", i);
+ }
+
+ /* Signal debugger that we verified the blocked state - it will now send remaining ACKs */
+ xe_eudebug_client_signal_stage(c, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
+
+ /* Now last NO_ACK_HELD_COUNT fences should complete after debugger ACKs them */
+ for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
+ struct ufence_bind *b = &binds[i];
+
+ timeout_ns = long_timeout_ns;
+ err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
+ 0, &timeout_ns);
+ igt_assert_eq(err, 0);
+ igt_assert_eq(b->fence_data->vm_sync, b->f.timeline_value);
+ igt_debug("no-ack: wait #%d completed after delayed ACK\n", i);
+ }
+}
+
static struct ufence_bind *create_binds_with_ufence(int fd, int count)
{
struct ufence_bind *binds;
@@ -2024,7 +2092,10 @@ static void basic_ufence_client(struct xe_eudebug_client *c)
&b->f, 1, 0);
}
- client_wait_ufences(c, fd, binds, n);
+ if (c->flags & VM_BIND_UFENCE_NO_ACK)
+ client_wait_ufences_no_ack(c, fd, vm, binds, n);
+ else
+ client_wait_ufences(c, fd, binds, n);
for (int i = 0; i < n; i++) {
struct ufence_bind *b = &binds[i];
@@ -2147,6 +2218,13 @@ static int wait_for_ufence_events(struct ufence_priv *priv, int timeout_ms)
* Functionality: SIGINT
* Description:
* Give user fence in application, hold it, send SIGINT to client and check if anything breaks.
+ *
+ * SUBTEST: basic-vm-bind-ufence-no-ack
+ * Functionality: VM bind event
+ * Description:
+ * Verify that missing debugger ACK for VM_BIND ufence blocks the application.
+ * ACKs only the first (N-2) ufences immediately, verifies last 2 are blocked,
+ * then delivers remaining ACKs and confirms client unblocks.
*/
static void test_basic_ufence(int fd, unsigned int flags)
{
@@ -2169,26 +2247,49 @@ static void test_basic_ufence(int fd, unsigned int flags)
xe_eudebug_debugger_start_worker(d);
xe_eudebug_client_start(c);
- xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
- xe_eudebug_assert_f(d, wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * MSEC_PER_SEC) == 0,
- "missing ufence events\n");
-
- if (flags & VM_BIND_DELAY_UFENCE_ACK)
- sleep(XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * 4 / 5);
-
- if (flags & VM_BIND_UFENCE_SIGINT_CLIENT) {
- filter = XE_EUDEBUG_FILTER_ALL;
- kill(c->pid, SIGINT);
- c->pid = 0;
- c->done = 1;
- } else if (flags & VM_BIND_UFENCE_RECONNECT) {
- filter = XE_EUDEBUG_FILTER_EVENT_VM_BIND | XE_EUDEBUG_FILTER_EVENT_VM |
- XE_EUDEBUG_FILTER_EVENT_OPEN;
- xe_eudebug_debugger_detach(d);
- xe_eudebug_client_wait_done(c);
- igt_assert_eq(xe_eudebug_debugger_attach(d, c), 0);
+ if (flags & VM_BIND_UFENCE_NO_ACK) {
+ /* Wait for client to signal binds are done */
+ xe_eudebug_debugger_wait_stage(s, STAGE_NO_ACK_READY_FOR_PARTIAL_ACK);
+ xe_eudebug_assert_f(d,
+ wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC *
+ MSEC_PER_SEC) == 0,
+ "missing ufence events\n");
+
+ /* ACK only first (n-2) fences */
+ for (int i = 0; i < UFENCE_EVENT_COUNT_EXPECTED - NO_ACK_HELD_COUNT; i++)
+ xe_eudebug_ack_ufence(d->fd, &priv->ufence_events[i]);
+
+ /* Wait for client to verify blocked state and unbind attempts */
+ xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
+
+ /* ACK remaining fences */
+ for (int i = UFENCE_EVENT_COUNT_EXPECTED - NO_ACK_HELD_COUNT;
+ i < UFENCE_EVENT_COUNT_EXPECTED; i++)
+ xe_eudebug_ack_ufence(d->fd, &priv->ufence_events[i]);
} else {
- ack_fences(d);
+ xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
+ xe_eudebug_assert_f(d,
+ wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC *
+ MSEC_PER_SEC) == 0,
+ "missing ufence events\n");
+
+ if (flags & VM_BIND_DELAY_UFENCE_ACK)
+ sleep(XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * 4 / 5);
+
+ if (flags & VM_BIND_UFENCE_SIGINT_CLIENT) {
+ filter = XE_EUDEBUG_FILTER_ALL;
+ kill(c->pid, SIGINT);
+ c->pid = 0;
+ c->done = 1;
+ } else if (flags & VM_BIND_UFENCE_RECONNECT) {
+ filter = XE_EUDEBUG_FILTER_EVENT_VM_BIND | XE_EUDEBUG_FILTER_EVENT_VM |
+ XE_EUDEBUG_FILTER_EVENT_OPEN;
+ xe_eudebug_debugger_detach(d);
+ xe_eudebug_client_wait_done(c);
+ igt_assert_eq(xe_eudebug_debugger_attach(d, c), 0);
+ } else {
+ ack_fences(d);
+ }
}
xe_eudebug_client_wait_done(c);
@@ -2882,6 +2983,9 @@ int igt_main()
igt_subtest("basic-vm-bind-ufence-sigint-client")
test_basic_ufence(fd, VM_BIND_UFENCE_SIGINT_CLIENT);
+ igt_subtest("basic-vm-bind-ufence-no-ack")
+ test_basic_ufence(fd, VM_BIND_UFENCE_NO_ACK);
+
igt_subtest("basic-vm-bind-discovery")
test_basic_discovery(fd, VM_BIND, true);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
2026-02-27 14:26 [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test Jan Maslak
2026-02-27 14:26 ` [PATCH 1/1] " Jan Maslak
@ 2026-02-27 20:55 ` Patchwork
2026-02-27 20:57 ` ✗ i915.CI.BAT: failure " Patchwork
2026-02-28 10:22 ` ✗ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-27 20:55 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1956 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
URL : https://patchwork.freedesktop.org/series/162325/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8775_BAT -> XEIGTPW_14635_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 14)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14635_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-atsm-2: [TIMEOUT][2] ([Intel XE#6506]) -> [PASS][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-atsm-2/igt@xe_waitfence@abstime.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/bat-atsm-2/igt@xe_waitfence@abstime.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
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14635
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14635: ab5f5a0261dd8a34760af1774d886162e843d728 @ 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_14635/index.html
[-- Attachment #2: Type: text/html, Size: 2553 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
2026-02-27 14:26 [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test Jan Maslak
2026-02-27 14:26 ` [PATCH 1/1] " Jan Maslak
2026-02-27 20:55 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-02-27 20:57 ` Patchwork
2026-02-28 10:22 ` ✗ Xe.CI.FULL: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-27 20:57 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13034 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
URL : https://patchwork.freedesktop.org/series/162325/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8775 -> IGTPW_14635
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14635 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14635, 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_14635/index.html
Participating hosts (40 -> 41)
------------------------------
Additional (3): bat-dg2-8 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_14635:
### 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_14635/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in IGTPW_14635 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-atsm-1: NOTRUN -> [ABORT][2] ([i915#15759]) +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-atsm-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-engines@lmem0:
- bat-dg2-8: NOTRUN -> [ABORT][3] ([i915#15759]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
* igt@gem_mmap@basic:
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@gem_mmap@basic.html
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/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_14635/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4079])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@gem_render_tiled_blits@basic.html
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4079])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#15657])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#15657])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][12] -> [DMESG-WARN][13] ([i915#13400])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#11681] / [i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@i915_pm_rps@basic-api.html
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#11681] / [i915#6621])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: NOTRUN -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][17] -> [DMESG-FAIL][18] ([i915#12061]) +1 other test dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#4215] / [i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/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][23] ([i915#4212]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#4212]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#4103] / [i915#4213]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][27]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-9: NOTRUN -> [SKIP][28]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][29] -> [SKIP][30] ([i915#13030])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-8: NOTRUN -> [SKIP][31] ([i915#5354])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-9: NOTRUN -> [SKIP][32] ([i915#5354])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][33] +29 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][34] ([i915#1072] / [i915#9732]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-8: NOTRUN -> [SKIP][35] ([i915#1072] / [i915#9732]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#3555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][37] ([i915#3555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][38] ([i915#3708])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-9: NOTRUN -> [SKIP][39] ([i915#3708])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][40] ([i915#3708] / [i915#4077]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-8: NOTRUN -> [SKIP][41] ([i915#3708] / [i915#4077]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#3291] / [i915#3708]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][43] ([i915#3291] / [i915#3708]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic:
- bat-atsm-1: [ABORT][44] ([i915#15759]) -> [PASS][45] +1 other test pass
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-atsm-1/igt@gem_lmem_swapping@basic.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-atsm-1/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][46] ([i915#12061]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-mtlp-8/igt@i915_selftest@live.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14635/bat-mtlp-8/igt@i915_selftest@live.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#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[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_14635
* 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_14635: ab5f5a0261dd8a34760af1774d886162e843d728 @ 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_14635/index.html
[-- Attachment #2: Type: text/html, Size: 16609 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
2026-02-27 14:26 [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test Jan Maslak
` (2 preceding siblings ...)
2026-02-27 20:57 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2026-02-28 10:22 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-28 10:22 UTC (permalink / raw)
To: Jan Maslak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45735 bytes --]
== Series Details ==
Series: tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
URL : https://patchwork.freedesktop.org/series/162325/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8775_FULL -> XEIGTPW_14635_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14635_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14635_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_14635_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* {igt@xe_eudebug@basic-vm-bind-ufence-no-ack} (NEW):
- shard-lnl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_eudebug@basic-vm-bind-ufence-no-ack.html
- shard-bmg: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-no-ack.html
New tests
---------
New tests have been introduced between XEIGT_8775_FULL and XEIGTPW_14635_FULL:
### New IGT tests (1) ###
* igt@xe_eudebug@basic-vm-bind-ufence-no-ack:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14635_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#6054]) +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#2705] / [Intel XE#6819]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/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][10] ([Intel XE#2327]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1428])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1512])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-9/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][18] ([Intel XE#2652]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/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][19] ([Intel XE#3432])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/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][20] ([Intel XE#2887]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#306])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-9/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#6507])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][25] ([Intel XE#7305]) +9 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0.html
* igt@kms_content_protection@atomic:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3278] / [Intel XE#6973])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6974]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][29] ([Intel XE#3304])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2321])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1508])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2244]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1137])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1421]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#301]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1397] / [Intel XE#1745])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/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][41] ([Intel XE#1397])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/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][42] ([Intel XE#7178]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/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][43] ([Intel XE#7179])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/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][44] ([Intel XE#7178]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#352])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#6312]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2311]) +21 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7061]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/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][52] ([Intel XE#656]) +33 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/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][53] ([Intel XE#2313]) +18 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1470])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1503])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6911])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7130]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7283]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/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][59] ([Intel XE#7283]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#5020])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#870])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#7340]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2392])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893] / [Intel XE#4608])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-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][67] ([Intel XE#4608]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2893]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1128]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#4609])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-8/igt@kms_psr@psr-basic.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1127])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6503]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-9/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2426])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#362])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1091] / [Intel XE#2849])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4837]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4837]) +5 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-6/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/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_14635/shard-bmg-9/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_14635/shard-bmg-1/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_14635/shard-lnl-6/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6540] / [Intel XE#688]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#6321])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7140])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-7/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7482]) +11 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/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][91] ([Intel XE#2322]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1392]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#7136]) +12 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/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][94] ([Intel XE#7136]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/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][95] ([Intel XE#6874]) +19 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/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][96] ([Intel XE#6874]) +21 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6196])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][98] ([Intel XE#7166])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7138]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7138]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2833])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2229])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][103], [PASS][104], [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]) -> ([SKIP][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][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]) ([Intel XE#378])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-6/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-7/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/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-8/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/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-8/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-7/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#6964])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#6964]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#584])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#4650])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-8/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#4733])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-4/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#944]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-6/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#4273])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-4/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [FAIL][159] ([Intel XE#6078]) -> [PASS][160]
[159]: 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
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-7/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][161] ([Intel XE#4760]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][163] ([Intel XE#367]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][165] ([Intel XE#2029] / [Intel XE#7314]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][167] ([Intel XE#6569]) -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][169] ([Intel XE#3544]) -> [SKIP][170] ([Intel XE#3374] / [Intel XE#3544])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14635/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#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#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[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#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#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#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
[Intel XE#7314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7314
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14635
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14635: ab5f5a0261dd8a34760af1774d886162e843d728 @ 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_14635/index.html
[-- Attachment #2: Type: text/html, Size: 50960 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test
2026-02-27 14:26 ` [PATCH 1/1] " Jan Maslak
@ 2026-05-07 8:52 ` Maciej Patelczyk
0 siblings, 0 replies; 6+ messages in thread
From: Maciej Patelczyk @ 2026-05-07 8:52 UTC (permalink / raw)
To: Jan Maslak, igt-dev
On 27/02/2026 15:26, Jan Maslak wrote:
> Add a test that verifies the kernel correctly blocks unbind operations
> on VMAs whose VM_BIND ufence has not yet been ACKed by the debugger.
>
> The test performs N vm_bind operations with user fences attached, then
> partially acknowledges them: the first (N-2) ufences are ACKed
> immediately, while the remaining 2 are withheld. It checks that:
> - the ACKed ufences complete successfully,
> - the un-ACKed ufences time out as blocked,
> - unbind attempts on the un-ACKed VMAs are denied with -EBUSY,
> - after the remaining ACKs are delivered, the blocked ufences complete
> and the unbinds succeed.
>
> Signed-off-by: Jan Maslak <jan.maslak@intel.com>
> ---
> tests/intel/xe_eudebug.c | 144 +++++++++++++++++++++++++++++++++------
> 1 file changed, 124 insertions(+), 20 deletions(-)
>
> diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
> index 134f31766..c899316fb 100644
> --- a/tests/intel/xe_eudebug.c
> +++ b/tests/intel/xe_eudebug.c
> @@ -66,6 +66,7 @@ static void test_sysfs_toggle(int fd)
> #define VM_BIND_DELAY_UFENCE_ACK (1 << 8)
> #define VM_BIND_UFENCE_RECONNECT (1 << 9)
> #define VM_BIND_UFENCE_SIGINT_CLIENT (1 << 10)
> +#define VM_BIND_UFENCE_NO_ACK (1 << 11)
> #define TEST_FAULTABLE (1 << 30)
> #define TEST_DISCOVERY (1 << 31)
>
> @@ -1924,6 +1925,7 @@ static void test_metadata_attach(int fd, unsigned int flags, int num_clients)
> }
>
> #define STAGE_CLIENT_WAIT_ON_UFENCE_DONE 1337
> +#define STAGE_NO_ACK_READY_FOR_PARTIAL_ACK 1338
>
> #define UFENCE_EVENT_COUNT_EXPECTED 4
> #define UFENCE_EVENT_COUNT_MAX 100
> @@ -1973,6 +1975,72 @@ static void client_wait_ufences(struct xe_eudebug_client *c,
> }
> }
>
> +#define NO_ACK_HELD_COUNT 2
> +
> +static void client_wait_ufences_no_ack(struct xe_eudebug_client *c,
> + int fd, uint32_t vm,
> + struct ufence_bind *binds, int count)
> +{
> + const int64_t short_timeout_ns = 500 * NSEC_PER_MSEC;
> + const int64_t long_timeout_ns = XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * NSEC_PER_SEC;
> + int64_t timeout_ns;
> + int err;
> +
> + igt_assert(count >= NO_ACK_HELD_COUNT);
> +
> + /* Signal debugger that binds are done - it will ACK first (N-2) fences */
> + xe_eudebug_client_signal_stage(c, STAGE_NO_ACK_READY_FOR_PARTIAL_ACK);
> +
> + /* First (count - NO_ACK_HELD_COUNT) fences should be ACKed already - expect success */
> + for (int i = 0; i < count - NO_ACK_HELD_COUNT; i++) {
> + struct ufence_bind *b = &binds[i];
> +
> + timeout_ns = long_timeout_ns;
> + err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
> + 0, &timeout_ns);
> + igt_assert_eq(err, 0);
> + igt_assert_eq(b->fence_data->vm_sync, b->f.timeline_value);
> + igt_debug("no-ack: wait #%d completed (was ACKed)\n", i);
> + }
> +
> + /* Last NO_ACK_HELD_COUNT fences should NOT be ACKed yet - expect timeout */
> + for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
> + struct ufence_bind *b = &binds[i];
> +
> + timeout_ns = short_timeout_ns;
> + err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
> + 0, &timeout_ns);
> + igt_assert_eq(err, -ETIME);
> + igt_assert_neq(b->fence_data->vm_sync, b->f.timeline_value);
> + igt_debug("no-ack: wait #%d blocked as expected (not ACKed)\n", i);
> + }
> +
> + /* Try to unbind un-ACKed VMAs - kernel should deny with -EBUSY */
> + for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
> + struct ufence_bind *b = &binds[i];
> +
> + err = __xe_vm_bind(fd, vm, 0, 0, 0, b->addr, b->range,
> + DRM_XE_VM_BIND_OP_UNMAP, 0, NULL, 0, 0, 0, 0);
> + igt_assert_eq(err, -EBUSY);
> + igt_debug("no-ack: unbind #%d denied with -EBUSY as expected\n", i);
> + }
> +
Hi Janek,
I would feel much better if I saw that there is two way communication
between client and debugger/test.
Right now, as I read it, both are running simply in parallel not
synchronizing actions between (more or less).
This part should generally work even on very busy systems with a lot of
delay.
> + /* Signal debugger that we verified the blocked state - it will now send remaining ACKs */
> + xe_eudebug_client_signal_stage(c, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
> +
> + /* Now last NO_ACK_HELD_COUNT fences should complete after debugger ACKs them */
> + for (int i = count - NO_ACK_HELD_COUNT; i < count; i++) {
> + struct ufence_bind *b = &binds[i];
> +
> + timeout_ns = long_timeout_ns;
> + err = __xe_wait_ufence(fd, &b->fence_data->vm_sync, b->f.timeline_value,
> + 0, &timeout_ns);
> + igt_assert_eq(err, 0);
> + igt_assert_eq(b->fence_data->vm_sync, b->f.timeline_value);
> + igt_debug("no-ack: wait #%d completed after delayed ACK\n", i);
> + }
> +}
> +
but this part is something I fear may cause sporadic error.
What I would suggest is to add additional stages:
Debugger tells - done with acking ufences 1 and 2
This will synchronize the clients checks with debugger actions.
> static struct ufence_bind *create_binds_with_ufence(int fd, int count)
> {
> struct ufence_bind *binds;
> @@ -2024,7 +2092,10 @@ static void basic_ufence_client(struct xe_eudebug_client *c)
> &b->f, 1, 0);
> }
>
> - client_wait_ufences(c, fd, binds, n);
> + if (c->flags & VM_BIND_UFENCE_NO_ACK)
> + client_wait_ufences_no_ack(c, fd, vm, binds, n);
> + else
> + client_wait_ufences(c, fd, binds, n);
>
> for (int i = 0; i < n; i++) {
> struct ufence_bind *b = &binds[i];
> @@ -2147,6 +2218,13 @@ static int wait_for_ufence_events(struct ufence_priv *priv, int timeout_ms)
> * Functionality: SIGINT
> * Description:
> * Give user fence in application, hold it, send SIGINT to client and check if anything breaks.
> + *
> + * SUBTEST: basic-vm-bind-ufence-no-ack
> + * Functionality: VM bind event
> + * Description:
> + * Verify that missing debugger ACK for VM_BIND ufence blocks the application.
> + * ACKs only the first (N-2) ufences immediately, verifies last 2 are blocked,
> + * then delivers remaining ACKs and confirms client unblocks.
> */
> static void test_basic_ufence(int fd, unsigned int flags)
> {
> @@ -2169,26 +2247,49 @@ static void test_basic_ufence(int fd, unsigned int flags)
> xe_eudebug_debugger_start_worker(d);
> xe_eudebug_client_start(c);
>
> - xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
> - xe_eudebug_assert_f(d, wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * MSEC_PER_SEC) == 0,
> - "missing ufence events\n");
> -
> - if (flags & VM_BIND_DELAY_UFENCE_ACK)
> - sleep(XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * 4 / 5);
> -
> - if (flags & VM_BIND_UFENCE_SIGINT_CLIENT) {
> - filter = XE_EUDEBUG_FILTER_ALL;
> - kill(c->pid, SIGINT);
> - c->pid = 0;
> - c->done = 1;
> - } else if (flags & VM_BIND_UFENCE_RECONNECT) {
> - filter = XE_EUDEBUG_FILTER_EVENT_VM_BIND | XE_EUDEBUG_FILTER_EVENT_VM |
> - XE_EUDEBUG_FILTER_EVENT_OPEN;
> - xe_eudebug_debugger_detach(d);
> - xe_eudebug_client_wait_done(c);
> - igt_assert_eq(xe_eudebug_debugger_attach(d, c), 0);
> + if (flags & VM_BIND_UFENCE_NO_ACK) {
> + /* Wait for client to signal binds are done */
> + xe_eudebug_debugger_wait_stage(s, STAGE_NO_ACK_READY_FOR_PARTIAL_ACK);
> + xe_eudebug_assert_f(d,
> + wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC *
> + MSEC_PER_SEC) == 0,
> + "missing ufence events\n");
> +
> + /* ACK only first (n-2) fences */
> + for (int i = 0; i < UFENCE_EVENT_COUNT_EXPECTED - NO_ACK_HELD_COUNT; i++)
> + xe_eudebug_ack_ufence(d->fd, &priv->ufence_events[i]);
> +
xe_eudebug_debugger_signal_stage(s, STAGE_DBG_UFENCE_ACK_DONE_1);
> + /* Wait for client to verify blocked state and unbind attempts */
> + xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
> +
> + /* ACK remaining fences */
> + for (int i = UFENCE_EVENT_COUNT_EXPECTED - NO_ACK_HELD_COUNT;
> + i < UFENCE_EVENT_COUNT_EXPECTED; i++)
> + xe_eudebug_ack_ufence(d->fd, &priv->ufence_events[i]);
xe_eudebug_debugger_signal_stage(s, STAGE_DBG_UFENCE_ACK_DONE_2);
> } else {
> - ack_fences(d);
> + xe_eudebug_debugger_wait_stage(s, STAGE_CLIENT_WAIT_ON_UFENCE_DONE);
> + xe_eudebug_assert_f(d,
> + wait_for_ufence_events(priv, XE_EUDEBUG_DEFAULT_TIMEOUT_SEC *
> + MSEC_PER_SEC) == 0,
> + "missing ufence events\n");
> +
> + if (flags & VM_BIND_DELAY_UFENCE_ACK)
> + sleep(XE_EUDEBUG_DEFAULT_TIMEOUT_SEC * 4 / 5);
> +
> + if (flags & VM_BIND_UFENCE_SIGINT_CLIENT) {
> + filter = XE_EUDEBUG_FILTER_ALL;
> + kill(c->pid, SIGINT);
> + c->pid = 0;
> + c->done = 1;
> + } else if (flags & VM_BIND_UFENCE_RECONNECT) {
> + filter = XE_EUDEBUG_FILTER_EVENT_VM_BIND | XE_EUDEBUG_FILTER_EVENT_VM |
> + XE_EUDEBUG_FILTER_EVENT_OPEN;
> + xe_eudebug_debugger_detach(d);
> + xe_eudebug_client_wait_done(c);
> + igt_assert_eq(xe_eudebug_debugger_attach(d, c), 0);
> + } else {
> + ack_fences(d);
> + }
> }
>
> xe_eudebug_client_wait_done(c);
> @@ -2882,6 +2983,9 @@ int igt_main()
> igt_subtest("basic-vm-bind-ufence-sigint-client")
> test_basic_ufence(fd, VM_BIND_UFENCE_SIGINT_CLIENT);
>
> + igt_subtest("basic-vm-bind-ufence-no-ack")
> + test_basic_ufence(fd, VM_BIND_UFENCE_NO_ACK);
> +
> igt_subtest("basic-vm-bind-discovery")
> test_basic_discovery(fd, VM_BIND, true);
>
With that it's done.
Maciej
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-05-07 8:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-27 14:26 [PATCH 0/1] tests/intel/xe_eudebug: Add basic-vm-bind-ufence-no-ack test Jan Maslak
2026-02-27 14:26 ` [PATCH 1/1] " Jan Maslak
2026-05-07 8:52 ` Maciej Patelczyk
2026-02-27 20:55 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-02-27 20:57 ` ✗ i915.CI.BAT: failure " Patchwork
2026-02-28 10:22 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox