* [PATCH i-g-t v11] tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
@ 2026-07-03 6:08 Sobin Thomas
2026-07-03 6:57 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sobin Thomas @ 2026-07-03 6:08 UTC (permalink / raw)
To: igt-dev, nishit.sharma; +Cc: thomas.hellstrom, kamil.konieczny, Sobin Thomas
Previous coverage lacked a scenario combining multi-process bind
with VRAM oversubscription. This generates memory pressure with
multi-process VM Bind activity and concurrent submission, exercising
the bind pipeline under eviction pressure.
v7: Save errno immediately in create_test_bos before it can be clobbered.
Handle non-ENOMEM/ENOSPC failures in create_test_bos.
Remove dead code (retries == 0 check) in xe_exec_with_retry.
Add igt_skip when both vram and sram n_bufs are 0.
Add MAP_FAILED check on result_bo.ptr after xe_bo_map. (Nishit)
v8: Add error check while performing vmbind.
v9: Assert if vmbind fails for VRAM/ SRAM.
Moved wait fence for vm bind immediately after call.
v10:Add igt_debug() message when batch_bo bind fails with ENOMEM/ENOSPC
Added check for failed bind against ENOMEM/ENOSPC.
Removed xe_exec_with_retry() (Nishit)
v11: Added fix for some nits.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_vm.c | 445 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 435 insertions(+), 10 deletions(-)
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index 386a0981a..6a9ad45c3 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -21,6 +21,20 @@
#include "xe/xe_spin.h"
#include <string.h>
#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+#define GB(x) (1024ULL * 1024ULL * 1024ULL * (x))
+#define MIN_BUFS_PER_PROC 2
+#define MAX_PROCS 20
+/*
+ * Cap SRAM test usage on large-RAM platforms (e.g. PVC). On small-RAM
+ * platforms (e.g. BMG with ~32 GB RAM) 50% of RAM is ~16 GB which is
+ * below this cap, so behavior is unchanged. On large-RAM platforms
+ * 50% can be hundreds of GB; cap it to a bounded value that still
+ * provides meaningful memory pressure for the concurrent bind test.
+ */
+#define MAX_SRAM_TEST_SIZE GB(32)
+#define TIMEOUT_NS (30ULL * 1000000000ULL)
+#define INT_ADD_CNT 4
+#define GPR_RX_ADDR(x) (0x600 + (x) * 8)
enum overcommit_stage {
EXPECT_NONE,
@@ -29,6 +43,88 @@ enum overcommit_stage {
EXPECT_EXEC,
};
+struct gem_bo {
+ uint32_t handle;
+ uint64_t size;
+ int *ptr;
+ uint64_t addr;
+};
+
+struct xe_oversubscribe_ctx {
+ uint32_t vm_id;
+ uint32_t exec_queue_id;
+};
+
+struct mem_bind_sync {
+ struct gem_bo *bufs;
+ int n_bufs;
+ uint64_t *binds_ufence;
+};
+
+static void create_exec_queue(int fd, struct xe_oversubscribe_ctx *ctx)
+{
+ ctx->exec_queue_id = xe_exec_queue_create(fd, ctx->vm_id,
+ &xe_engine(fd, 0)->instance, 0);
+}
+
+static int xe_vm_bind_array_get_err(int fd, uint32_t vm,
+ struct drm_xe_vm_bind_op *bind_ops,
+ uint32_t num_bind, struct drm_xe_sync *sync,
+ uint32_t num_syncs)
+{
+ struct drm_xe_vm_bind bind = {
+ .vm_id = vm,
+ .num_binds = num_bind,
+ .vector_of_binds = (uintptr_t)bind_ops,
+ .num_syncs = num_syncs,
+ .syncs = (uintptr_t)sync,
+ .exec_queue_id = 0,
+ };
+
+ igt_assert(num_bind > 0);
+
+ if (igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind))
+ return -errno;
+
+ return 0;
+}
+
+static uint64_t *
+vm_bind_bo_batch(int fd, struct xe_oversubscribe_ctx *ctx, struct gem_bo *bos, int size,
+ int *out_err)
+{
+ uint64_t *ufence;
+ struct drm_xe_sync bind_sync;
+ struct drm_xe_vm_bind_op *binds;
+ int i;
+
+ binds = calloc(size, sizeof(*binds));
+ igt_assert(binds);
+
+ ufence = calloc(1, sizeof(*ufence));
+ igt_assert(ufence);
+ bind_sync = (struct drm_xe_sync) {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = to_user_pointer(ufence),
+ .timeline_value = 1,
+ };
+
+ for (i = 0; i < size; i++) {
+ binds[i] = (struct drm_xe_vm_bind_op) {
+ .obj = bos[i].handle,
+ .obj_offset = 0,
+ .range = bos[i].size,
+ .addr = bos[i].addr,
+ .op = DRM_XE_VM_BIND_OP_MAP,
+ .flags = 0,
+ };
+ }
+ *out_err = xe_vm_bind_array_get_err(fd, ctx->vm_id, binds, size, &bind_sync, 1);
+ free(binds);
+ return ufence;
+}
+
static uint32_t
addr_low(uint64_t addr)
{
@@ -1541,11 +1637,12 @@ static void *hammer_thread(void *tdata)
uint32_t data;
} *data = t->map;
uint32_t exec_queue = xe_exec_queue_create(t->fd, t->vm, t->eci, 0);
- int b;
+ int b, ret;
int i = 0;
sync[0].handle = syncobj_create(t->fd, 0);
- pthread_barrier_wait(t->barrier);
+ ret = pthread_barrier_wait(t->barrier);
+ igt_assert(ret == 0 || ret == PTHREAD_BARRIER_SERIAL_THREAD);
while (!*t->exit) {
uint64_t batch_offset = (char *)&data->batch - (char *)data;
@@ -1673,7 +1770,7 @@ test_munmap_style_unbind(int fd, struct drm_xe_engine_class_instance *eci,
uint32_t data;
} *data;
void *map;
- int i, b;
+ int i, b, ret;
int invalidate = 0;
struct thread_data t;
pthread_barrier_t barrier;
@@ -1739,9 +1836,10 @@ test_munmap_style_unbind(int fd, struct drm_xe_engine_class_instance *eci,
t.exit = &exit;
t.map = map + page_size / 2;
t.barrier = &barrier;
- pthread_barrier_init(&barrier, NULL, 2);
+ igt_assert_eq(pthread_barrier_init(&barrier, NULL, 2), 0);
pthread_create(&t.thread, 0, hammer_thread, &t);
- pthread_barrier_wait(&barrier);
+ ret = pthread_barrier_wait(&barrier);
+ igt_assert(ret == 0 || ret == PTHREAD_BARRIER_SERIAL_THREAD);
}
/* Verify we can use every page */
@@ -1912,7 +2010,7 @@ try_again_after_invalidate:
if (flags & MAP_FLAG_HAMMER_FIRST_PAGE) {
exit = 1;
pthread_join(t.thread, NULL);
- pthread_barrier_destroy(&barrier);
+ igt_assert_eq(pthread_barrier_destroy(&barrier), 0);
}
syncobj_destroy(fd, sync[0].handle);
@@ -1979,7 +2077,7 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci,
uint32_t data;
} *data;
void *map0, *map1;
- int i, b;
+ int i, b, ret;
struct thread_data t;
pthread_barrier_t barrier;
int exit = 0;
@@ -2047,9 +2145,10 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci,
t.exit = &exit;
t.map = map0 + PAGE_SIZE / 2;
t.barrier = &barrier;
- pthread_barrier_init(&barrier, NULL, 2);
+ igt_assert_eq(pthread_barrier_init(&barrier, NULL, 2), 0);
pthread_create(&t.thread, 0, hammer_thread, &t);
- pthread_barrier_wait(&barrier);
+ ret = pthread_barrier_wait(&barrier);
+ igt_assert(ret == 0 || ret == PTHREAD_BARRIER_SERIAL_THREAD);
}
/* Verify we can use every page */
@@ -2168,7 +2267,7 @@ test_mmap_style_bind(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & MAP_FLAG_HAMMER_FIRST_PAGE) {
exit = 1;
pthread_join(t.thread, NULL);
- pthread_barrier_destroy(&barrier);
+ igt_assert_eq(pthread_barrier_destroy(&barrier), 0);
}
syncobj_destroy(fd, sync[0].handle);
@@ -2664,6 +2763,8 @@ test_vm_overcommit(int fd, struct drm_xe_engine_class_instance *eci,
bind_err = __xe_vm_bind_lr_sync(fd, vm, batch_bo, 0, batch_addr, 0x1000, 0);
if (bind_err) {
if (errno == ENOMEM || errno == ENOSPC) {
+ igt_debug("batch_bo bind failed with %s, treating as expected bind failure\n",
+ strerror(errno));
actual_stage = EXPECT_BIND;
goto check_and_cleanup;
} else { /* Assert on any unexpected bind error */
@@ -3075,6 +3176,325 @@ static void test_get_property(int fd, void (*func)(int fd, uint32_t vm))
xe_vm_destroy(fd, vm);
}
+static int build_add_batch(struct gem_bo *batch_bo, struct gem_bo *integers_bo,
+ struct gem_bo *result_bo, int ints_to_add)
+{
+ int pos = 0;
+ uint64_t tmp_addr;
+
+ batch_bo->ptr[pos++] = MI_LOAD_REGISTER_MEM_CMD | MI_LRI_LRM_CS_MMIO | 2;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(0);
+ tmp_addr = integers_bo->addr + 0 * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+ for (int i = 1; i < ints_to_add; i++) {
+ /* r1 = integers_bo[i] */
+ batch_bo->ptr[pos++] = MI_LOAD_REGISTER_MEM_CMD | MI_LRI_LRM_CS_MMIO | 2;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(1);
+ tmp_addr = integers_bo->addr + i * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+ /* r0 = r0 + r1 */
+ batch_bo->ptr[pos++] = MI_MATH(4);
+ batch_bo->ptr[pos++] = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(0));
+ batch_bo->ptr[pos++] = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(1));
+ batch_bo->ptr[pos++] = MI_MATH_ADD;
+ batch_bo->ptr[pos++] = MI_MATH_STORE(MI_MATH_REG(0), MI_MATH_REG_ACCU);
+ }
+ /* result_bo[0] = r0 */
+ batch_bo->ptr[pos++] = MI_STORE_REGISTER_MEM_GEN8 | MI_LRI_LRM_CS_MMIO;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(0);
+ tmp_addr = result_bo->addr + 0 * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+
+ batch_bo->ptr[pos++] = MI_BATCH_BUFFER_END;
+ while (pos % 4 != 0)
+ batch_bo->ptr[pos++] = MI_NOOP;
+ return pos;
+}
+
+static void create_test_bos(int fd, struct xe_oversubscribe_ctx *ctx, struct mem_bind_sync *bind,
+ uint32_t placement, uint64_t *addr)
+{
+ const char *mem_type = (placement & vram_memory(fd, 0)) ? "VRAM" : "SRAM";
+ uint32_t ret;
+
+ for (int i = 0; i < bind->n_bufs; i++) {
+ struct gem_bo *bo = &bind->bufs[i];
+
+ bo->size = GB(1);
+ ret = __xe_bo_create_caching(fd, ctx->vm_id, bo->size, placement, 0,
+ DRM_XE_GEM_CPU_CACHING_WC, &bo->handle);
+ if (ret) {
+ int saved_errno = errno; /* capture before anything can clobber it */
+
+ bind->n_bufs = i;
+ if (saved_errno == ENOMEM || saved_errno == ENOSPC)
+ igt_debug("%s allocation failed at buffer %d (OOM)\n", mem_type, i);
+ else
+ igt_assert_f(false, "%s allocation failed at buffer %d: %s",
+ mem_type, i, strerror(saved_errno));
+ break;
+ }
+ bo->ptr = NULL;
+ bo->addr = *addr;
+ *addr += bo->size;
+ igt_debug("%s buffer %d created at 0x%016lx\n", mem_type, i, bo->addr);
+ }
+}
+
+static int fill_random_integers(struct gem_bo *int_bo, int ints_to_add)
+{
+ uint32_t expected_result = 0;
+ char expr[256];
+ int len = 0;
+
+ for (int i = 0; i < ints_to_add; i++) {
+ int random_int = rand() % 8;
+
+ int_bo->ptr[i] = random_int;
+ expected_result += random_int;
+
+ len += snprintf(expr + len, sizeof(expr) - len, "%s%d",
+ i ? " + " : "", random_int);
+ }
+ igt_debug("%s = %u\n", expr, expected_result);
+ return expected_result;
+}
+
+static void cleanup_bo_resources(int fd, struct gem_bo *bo)
+{
+ if (bo->ptr) {
+ igt_assert_eq(munmap(bo->ptr, bo->size), 0);
+ bo->ptr = NULL;
+ }
+ if (bo->handle)
+ gem_close(fd, bo->handle);
+}
+
+static void cleanup_sram_vram_objs(int fd, struct mem_bind_sync *vram_bind,
+ struct mem_bind_sync *sram_bind)
+{
+ for (int i = 0; i < vram_bind->n_bufs; i++)
+ gem_close(fd, vram_bind->bufs[i].handle);
+ for (int i = 0; i < sram_bind->n_bufs; i++)
+ gem_close(fd, sram_bind->bufs[i].handle);
+ free(vram_bind->bufs);
+ free(sram_bind->bufs);
+ if (vram_bind->n_bufs)
+ free(vram_bind->binds_ufence);
+ if (sram_bind->n_bufs)
+ free(sram_bind->binds_ufence);
+}
+
+/**
+ * SUBTEST: oversubscribe-concurrent-bind
+ * Description: Test for oversubscribing the VM with multiple processes
+ * doing binds at the same time, and ensure they all complete successfully.
+ * Functionality: This check is for a specific bug where if multiple processes
+ * oversubscribe the VM, some of the binds may fail with ENOMEM due to
+ * deadlock in the bind code.
+ * Test category: stress test
+ */
+static void test_vm_oversubscribe_concurrent_bind(int fd)
+{
+ int n_proc = 0, n_vram_bufs = 0, n_sram_bufs = 0;
+ uint64_t max_by_mem;
+ uint64_t total_vram_demand = 0;
+ uint64_t vram_size = xe_visible_available_vram_size(fd, 0);
+ uint64_t sram_avail = (uint64_t)igt_get_avail_ram_mb() << 20;
+ uint64_t target_vram = vram_size * 2;
+ uint64_t target_sram, total_vram_bufs, total_sram_bufs;
+ pthread_barrier_t *barrier;
+ pthread_barrierattr_t attr;
+ /*
+ * Dynamically cap VRAM oversubscription so the overflow into system
+ * RAM stays within 25% of available RAM. On small-VRAM platforms
+ * (e.g. BMG) the 2x target fits within the cap and behavior is
+ * unchanged; on large-VRAM platforms (e.g. PVC) this prevents OOM.
+ */
+ target_vram = min(target_vram, vram_size + sram_avail / 4);
+ target_sram = min_t(uint64_t, sram_avail * 50 / 100,
+ MAX_SRAM_TEST_SIZE);
+
+ total_vram_bufs = target_vram / GB(1);
+ total_sram_bufs = target_sram / GB(1);
+
+ /* determine concurrency from memory pressure */
+
+ max_by_mem = min(total_vram_bufs / MIN_BUFS_PER_PROC,
+ total_sram_bufs / MIN_BUFS_PER_PROC);
+ n_proc = min_t(uint32_t, max_by_mem, MAX_PROCS);
+ igt_require_f(n_proc > 0, "Not enough VRAM/RAM for oversubscription test\n");
+
+ n_vram_bufs = max_t(int, 2, total_vram_bufs / n_proc);
+ n_sram_bufs = max_t(int, 2, total_sram_bufs / n_proc);
+ total_vram_demand = (uint64_t)n_proc * n_vram_bufs * GB(1);
+
+ igt_debug("VRAM size: %" PRIu64 "MB, System RAM available: %" PRIu64 "MB\n",
+ vram_size >> 20, sram_avail >> 20);
+
+ igt_debug(" n_proc = %d\n", n_proc);
+ igt_debug("VRAM: %" PRIu64 "GB\n", vram_size >> 30);
+ igt_debug("VRAM demand: %" PRIu64 "MB (%.2fx oversubscription)\n",
+ total_vram_demand >> 20, (double)total_vram_demand / vram_size);
+ igt_debug("Processes=%d VRAM_bufs=%d SRAM_bufs=%d\n", n_proc,
+ n_vram_bufs, n_sram_bufs);
+
+ barrier = mmap(NULL, sizeof(pthread_barrier_t), PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(barrier != MAP_FAILED);
+ igt_assert_eq(pthread_barrierattr_init(&attr), 0);
+ igt_assert_eq(pthread_barrierattr_setpshared(&attr, PTHREAD_PROCESS_SHARED), 0);
+ igt_assert_eq(pthread_barrier_init(barrier, &attr, n_proc), 0);
+
+ igt_fork(child, n_proc) {
+ struct xe_oversubscribe_ctx ctx = {0};
+ int rc, ret;
+ uint64_t addr = 0x40000000;
+ int expected_result = 0;
+ struct gem_bo integers_bo, result_bo, batch_bo, *vram_bufs, *sram_bufs;
+ int pos = 0;
+ struct mem_bind_sync vram_bind = {0};
+ struct mem_bind_sync sram_bind = {0};
+ struct drm_xe_sync batch_syncs[1];
+ struct drm_xe_exec exec;
+ struct gem_bo ufence_bo = {0};
+ int vram_bind_err = 0, sram_bind_err = 0;
+
+ vram_bufs = calloc(n_vram_bufs, sizeof(*vram_bufs));
+ sram_bufs = calloc(n_sram_bufs, sizeof(*sram_bufs));
+ srand(child);
+
+ igt_assert(vram_bufs && sram_bufs);
+
+ ctx.vm_id = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE, 0);
+ create_exec_queue(fd, &ctx);
+ vram_bind.bufs = vram_bufs;
+ vram_bind.n_bufs = n_vram_bufs;
+ sram_bind.bufs = sram_bufs;
+ sram_bind.n_bufs = n_sram_bufs;
+
+ create_test_bos(fd, &ctx, &vram_bind, vram_memory(fd, 0), &addr);
+ create_test_bos(fd, &ctx, &sram_bind, system_memory(fd), &addr);
+
+ if (!vram_bind.n_bufs || !sram_bind.n_bufs) {
+ igt_info("No BOs allocated; VRAM/SRAM unavailable, skipping\n");
+ goto cleanup;
+ }
+
+ ret = pthread_barrier_wait(barrier);
+ igt_assert(ret == 0 || ret == PTHREAD_BARRIER_SERIAL_THREAD);
+
+ if (vram_bind.n_bufs) {
+ vram_bind.binds_ufence =
+ vm_bind_bo_batch(fd, &ctx, vram_bufs,
+ vram_bind.n_bufs, &vram_bind_err);
+ if (vram_bind_err) {
+ igt_assert_f(vram_bind_err == -ENOMEM || vram_bind_err == -ENOSPC,
+ "Unexpected VRAM bind error: %d (%s)\n",
+ vram_bind_err, strerror(-vram_bind_err));
+ igt_debug("VRAM bind failed with expected OOM (%s), skipping exec\n",
+ strerror(-vram_bind_err));
+ goto cleanup;
+ }
+ xe_wait_ufence(fd, vram_bind.binds_ufence, 1, 0, TIMEOUT_NS);
+ }
+
+ if (sram_bind.n_bufs) {
+ sram_bind.binds_ufence =
+ vm_bind_bo_batch(fd, &ctx, sram_bufs,
+ sram_bind.n_bufs, &sram_bind_err);
+ /* Assert if there is any bind error in SRAM */
+ if (sram_bind_err)
+ igt_assert_f(0, "Unexpected SRAM bind error: %d", sram_bind_err);
+ xe_wait_ufence(fd, sram_bind.binds_ufence, 1, 0, TIMEOUT_NS);
+ }
+
+ integers_bo.size = ALIGN(sizeof(int) * INT_ADD_CNT, 4096);
+ integers_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, integers_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+ integers_bo.ptr = (int *)xe_bo_map(fd, integers_bo.handle, integers_bo.size);
+ integers_bo.addr = 0x100000;
+
+ expected_result = fill_random_integers(&integers_bo, INT_ADD_CNT);
+ igt_debug("%d\n", expected_result);
+
+ result_bo.size = ALIGN(sizeof(int), 4096);
+ result_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, result_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+ result_bo.ptr = NULL;
+ result_bo.addr = 0x200000;
+
+ batch_bo.size = 4096;
+ batch_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, batch_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+
+ batch_bo.ptr = (int *)xe_bo_map(fd, batch_bo.handle, batch_bo.size);
+ batch_bo.addr = 0x300000;
+
+ pos = build_add_batch(&batch_bo, &integers_bo, &result_bo, INT_ADD_CNT);
+
+ igt_assert(pos * sizeof(int) <= batch_bo.size);
+
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, integers_bo.handle, 0, integers_bo.addr,
+ integers_bo.size, 0);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, result_bo.handle, 0, result_bo.addr,
+ result_bo.size, 0);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, batch_bo.handle, 0, batch_bo.addr,
+ batch_bo.size, 0);
+
+ ufence_bo.size = 4096;
+ ufence_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, ufence_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WB);
+ ufence_bo.ptr = (int *)xe_bo_map(fd, ufence_bo.handle, ufence_bo.size);
+ ufence_bo.addr = 0x400000;
+ memset(ufence_bo.ptr, 0, ufence_bo.size);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, ufence_bo.handle, 0, ufence_bo.addr,
+ ufence_bo.size, 0);
+
+ batch_syncs[0] = (struct drm_xe_sync){
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = ufence_bo.addr,
+ .timeline_value = 1,
+ };
+
+ exec = (struct drm_xe_exec) {
+ .exec_queue_id = ctx.exec_queue_id,
+ .num_syncs = 1,
+ .syncs = (uintptr_t)batch_syncs,
+ .address = batch_bo.addr,
+ .num_batch_buffer = 1,
+ };
+
+ rc = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec);
+ igt_assert_f(rc == 0, "xe_exec failed unexpectedly: %s (%d)\n",
+ strerror(errno), errno);
+ xe_wait_ufence(fd, (uint64_t *)ufence_bo.ptr, 1, ctx.exec_queue_id, TIMEOUT_NS);
+ result_bo.ptr = (int *)xe_bo_map(fd, result_bo.handle, result_bo.size);
+ igt_assert(result_bo.ptr != MAP_FAILED);
+ igt_assert_eq(result_bo.ptr[0], expected_result);
+cleanup:
+ cleanup_bo_resources(fd, &ufence_bo);
+ cleanup_bo_resources(fd, &result_bo);
+ cleanup_bo_resources(fd, &batch_bo);
+ cleanup_bo_resources(fd, &integers_bo);
+ cleanup_sram_vram_objs(fd, &vram_bind, &sram_bind);
+ xe_exec_queue_destroy(fd, ctx.exec_queue_id);
+ xe_vm_destroy(fd, ctx.vm_id);
+ }
+ igt_waitchildren();
+ igt_assert_eq(pthread_barrier_destroy(barrier), 0);
+ igt_assert_eq(pthread_barrierattr_destroy(&attr), 0);
+ igt_assert_eq(munmap(barrier, sizeof(pthread_barrier_t)), 0);
+}
+
int igt_main()
{
struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL;
@@ -3489,6 +3909,11 @@ int igt_main()
test_oom(fd);
}
+ igt_subtest("oversubscribe-concurrent-bind") {
+ igt_require(xe_has_vram(fd));
+ test_vm_oversubscribe_concurrent_bind(fd);
+ }
+
for (const struct vm_get_property *f = xe_vm_get_property_tests; f->name; f++) {
igt_subtest_f("vm-get-property-%s", f->name)
test_get_property(fd, f->test);
--
2.52.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
2026-07-03 6:08 [PATCH i-g-t v11] tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest Sobin Thomas
@ 2026-07-03 6:57 ` Patchwork
2026-07-03 7:05 ` ✗ i915.CI.BAT: failure " Patchwork
2026-07-03 21:03 ` ✓ Xe.CI.FULL: success " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-03 6:57 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1006 bytes --]
== Series Details ==
Series: tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/169728/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8990_BAT -> XEIGTPW_15465_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 11)
------------------------------
Missing (2): bat-bmg-2 bat-bmg-vm
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8990 -> IGTPW_15465
* Linux: xe-5331-4343c63c6acc14ed4d48dddaa56057663651d9e3 -> xe-5335-2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5
IGTPW_15465: 15465
IGT_8990: 8990
xe-5331-4343c63c6acc14ed4d48dddaa56057663651d9e3: 4343c63c6acc14ed4d48dddaa56057663651d9e3
xe-5335-2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5: 2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/index.html
[-- Attachment #2: Type: text/html, Size: 1565 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
2026-07-03 6:08 [PATCH i-g-t v11] tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-07-03 6:57 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-07-03 7:05 ` Patchwork
2026-07-03 21:03 ` ✓ Xe.CI.FULL: success " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-03 7:05 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1889 bytes --]
== Series Details ==
Series: tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/169728/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8990 -> IGTPW_15465
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15465 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15465, 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_15465/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15465:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlp-6: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8990/bat-adlp-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15465/bat-adlp-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8990 -> IGTPW_15465
* Linux: CI_DRM_18751 -> CI_DRM_18755
CI-20190529: 20190529
CI_DRM_18751: 4343c63c6acc14ed4d48dddaa56057663651d9e3 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18755: 2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15465: 15465
IGT_8990: 8990
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15465/index.html
[-- Attachment #2: Type: text/html, Size: 2506 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
2026-07-03 6:08 [PATCH i-g-t v11] tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-07-03 6:57 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-03 7:05 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2026-07-03 21:03 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-03 21:03 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 31298 bytes --]
== Series Details ==
Series: tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/169728/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8990_FULL -> XEIGTPW_15465_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8990_FULL and XEIGTPW_15465_FULL:
### New IGT tests (1) ###
* igt@xe_vm@oversubscribe-concurrent-bind:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.02, 1.77] s
Known issues
------------
Here are the changes found in XEIGTPW_15465_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1124])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#607] / [Intel XE#7361])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2252])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-3/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-8/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#6507])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2390] / [Intel XE#6974])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321] / [Intel XE#7355])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#4354] / [Intel XE#7386])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4354] / [Intel XE#7386])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-7/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#8265])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1421])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-3/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#301]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1397] / [Intel XE#7385])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6312] / [Intel XE#651])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-rte.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +15 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#656] / [Intel XE#7905]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6312])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +14 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7905]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6901])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6901])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2486])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7283])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7283])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#8399])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#4608])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#4608] / [Intel XE#7304])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1489]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#3904] / [Intel XE#7342])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7636]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-1/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7636]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-7/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6540] / [Intel XE#688])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-4/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8370])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-1/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#6321] / [Intel XE#8355])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7482]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-2/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1392]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#8374])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@xe_exec_fault_mode@many-multi-queue-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#8374]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#8364]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#8364]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_reset@multi-queue-close-execqueues:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#8369])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-7/igt@xe_exec_reset@multi-queue-close-execqueues.html
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8369])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@xe_exec_reset@multi-queue-close-execqueues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8378]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [PASS][65] -> [ABORT][66] ([Intel XE#8007])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6964]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-10/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7590])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7590] / [Intel XE#7772])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-4/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#7992])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#944]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7174])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-5/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#6569])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_vm@overcommit-nonfault-vram-no-lr:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7892]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-1/igt@xe_vm@overcommit-nonfault-vram-no-lr.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#5545])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][78] -> [ABORT][79] ([Intel XE#8007])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-1/igt@xe_wedged@wedged-mode-toggle.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-5/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][80] ([Intel XE#7571]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][82] ([Intel XE#301]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-linear-to-x:
- shard-bmg: [FAIL][84] -> [PASS][85] +3 other tests pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-10/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-linear-to-x.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-linear-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-4:
- shard-bmg: [DMESG-WARN][86] ([Intel XE#8300]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-10/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-4.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-4.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-linear:
- shard-bmg: [SKIP][88] -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-10/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-linear.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-linear.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-x:
- shard-bmg: [ABORT][90] ([Intel XE#7814] / [Intel XE#7893] / [Intel XE#8300]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-10/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-x.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-x-to-x.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][92] ([Intel XE#7308]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][94] ([Intel XE#8399]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_exec_system_allocator@twice-large-free-race:
- shard-lnl: [ABORT][96] ([Intel XE#8007]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-lnl-1/igt@xe_exec_system_allocator@twice-large-free-race.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-lnl-8/igt@xe_exec_system_allocator@twice-large-free-race.html
* igt@xe_fault_injection@vm-bind-fail-xe_sync_entry_parse:
- shard-bmg: [ABORT][98] ([Intel XE#8007]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_sync_entry_parse.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_sync_entry_parse.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][100] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][101] ([Intel XE#3544])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8990/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[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#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8300
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8990 -> IGTPW_15465
* Linux: xe-5331-4343c63c6acc14ed4d48dddaa56057663651d9e3 -> xe-5335-2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5
IGTPW_15465: 15465
IGT_8990: 8990
xe-5331-4343c63c6acc14ed4d48dddaa56057663651d9e3: 4343c63c6acc14ed4d48dddaa56057663651d9e3
xe-5335-2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5: 2bdb7ee737dfd4d699e9994ef8aec5c92ec2d4e5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15465/index.html
[-- Attachment #2: Type: text/html, Size: 35411 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-03 21:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-03 6:08 [PATCH i-g-t v11] tests/intel/xe_vm: Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-07-03 6:57 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-03 7:05 ` ✗ i915.CI.BAT: failure " Patchwork
2026-07-03 21:03 ` ✓ Xe.CI.FULL: success " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.