* [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests
@ 2026-03-02 14:00 Sobin Thomas
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Sobin Thomas @ 2026-03-02 14:00 UTC (permalink / raw)
To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, Sobin Thomas
This series introduces support for No Overcommit flags in the xe_uapi
and adds IGT tests to validate overcommit behaviour across different
VM modes.
Patch 1 updates the drm-uapi/xe flags in IGT to align with the
kernel changes that introduced NO_VM_OVERCOMMIT.
Patch 2 increase coverage to xe_vm tests by adding tests for
- Over-commit test in fault and non fault mode
- No-Over-Commit tests in fault mode
Sobin Thomas (2):
drm-uapi/xe: Add support for No Overcommit flag
tests/intel/xe_vm: Add support for overcommit tests
include/drm-uapi/xe_drm.h | 2 +
tests/intel/xe_vm.c | 517 ++++++++++++++++++++++++++++++++++++++
2 files changed, 519 insertions(+)
--
2.52.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
@ 2026-03-02 14:00 ` Sobin Thomas
2026-03-03 4:01 ` Sharma, Nishit
2026-03-04 12:44 ` Kamil Konieczny
2026-03-02 14:00 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
` (4 subsequent siblings)
5 siblings, 2 replies; 10+ messages in thread
From: Sobin Thomas @ 2026-03-02 14:00 UTC (permalink / raw)
To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, Sobin Thomas
Align with kernel commit 369cc8804985 ("drm/xe/uapi: Introduce a flag to
disallow VM overcommit in fault mode"). This adds support for the No
Overcommit flag in IGT to match the kernel UAPI behavior.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
include/drm-uapi/xe_drm.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index 077e66a68..12a9da045 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -983,6 +983,8 @@ struct drm_xe_vm_create {
#define DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE (1 << 0)
#define DRM_XE_VM_CREATE_FLAG_LR_MODE (1 << 1)
#define DRM_XE_VM_CREATE_FLAG_FAULT_MODE (1 << 2)
+#define DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT (1 << 3)
+
/** @flags: Flags */
__u32 flags;
--
2.52.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 i-g-t 2/2] tests/intel/xe_vm: Add support for overcommit tests
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
@ 2026-03-02 14:00 ` Sobin Thomas
2026-03-03 13:50 ` ✓ i915.CI.BAT: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Sobin Thomas @ 2026-03-02 14:00 UTC (permalink / raw)
To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, Sobin Thomas
Current tests focus on VM creation with basic mode selection and do not
support overcommit scenarios.
This change adds tests to verify overcommit behavior across different VM
modes.
Non-fault mode tests:
- vram-lr-defer: DEFER_BACKING rejects overcommit at bind time
- vram-lr-external-nodefer: Long-running mode with defer backing
- vram-no-lr: Non-LR mode
Fault mode tests:
- vram-lr-fault: Fault handling allows graceful overcommit via page
faults
- vram-lr-fault-no-overcommit: Verifies NO_VM_OVERCOMMIT blocks same-VM
BO eviction during VM_BIND while still allowing eviction during
pagefault OOM
These tests validate that VMs handle memory pressure appropriately based
on their configuration—rejecting at bind, failing at exec, or handling
it gracefully via page faults.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_vm.c | 492 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 492 insertions(+)
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index ccff8f804..c865d05a2 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -2376,6 +2376,488 @@ static void invalid_vm_id(int fd)
do_ioctl_err(fd, DRM_IOCTL_XE_VM_DESTROY, &destroy, ENOENT);
}
+static int wait_fault(int fd, uint32_t exec_queue, void *sync_data,
+ int64_t *timeout)
+{
+ uint64_t *user_fence = sync_data;
+ int64_t wait_ns = timeout ? *timeout : INT64_MAX;
+ int res;
+ #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+ (void)exec_queue;
+
+ res = __xe_wait_ufence(fd, user_fence, USER_FENCE_VALUE, exec_queue, &wait_ns);
+
+ return res;
+}
+
+static int wait_nonfault(int fd, uint32_t exec_queue, void *sync_data,
+ int64_t *timeout)
+{
+ struct drm_xe_sync *exec_sync = sync_data;
+
+ (void)exec_queue;
+ (void)timeout;
+
+ if (!syncobj_wait(fd, &exec_sync[0].handle, 1, INT64_MAX, 0,
+ NULL))
+ return -1;
+
+ return 0;
+}
+
+static int
+vm_overcommit_create_bo(int fd, uint32_t vm, size_t bo_size, uint32_t bo_flags,
+ uint16_t gt_id, bool use_vram, bool external,
+ uint32_t *bo)
+{
+ uint32_t placement;
+
+ if (use_vram) {
+ placement = vram_memory(fd, gt_id) ?: system_memory(fd);
+ igt_debug("Using VRAM placement: 0x%x\n", placement);
+ } else {
+ igt_debug("Placement is in system memory\n");
+ placement = system_memory(fd);
+ igt_debug("Using system memory placement: 0x%x\n", placement);
+ }
+ igt_assert_f(placement != 0, "Invalid placement: system_memory(fd) returned 0\n");
+
+ return __xe_bo_create(fd, external ? 0 : vm, bo_size, placement,
+ bo_flags, NULL, bo);
+}
+
+/**
+ * SUBTEST: overcommit-fault-%s
+ * Description: Test VM overcommit behavior in fault mode with %arg[1] configuration
+ * Functionality: overcommit
+ * Test category: functionality test
+ *
+ * arg[1]:
+ *
+ * @vram-lr-fault:VRAM with LR and fault mode, expects exec to pass
+ * @vram-lr-fault-no-overcommit:VRAM with LR, fault and NO_VM_OVERCOMMIT, expects bind rejection
+ */
+
+/**
+ * SUBTEST: overcommit-nonfault-%s
+ * Description: Test VM overcommit behavior in nonfault mode with %arg[1] configuration
+ * Functionality: overcommit
+ * Test category: functionality test
+ *
+ * arg[1]:
+ *
+ * @vram-lr-defer:VRAM with LR and defer backing, expects bind rejection
+ * @vram-lr-external-nodefer:VRAM with LR and external BO without defer, expects exec fail
+ * @vram-no-lr:VRAM without LR mode, expects exec to fail
+ */
+struct vm_overcommit_case {
+ const char *name;
+ uint32_t vm_flags;
+ uint32_t bo_flags;
+ bool use_vram;
+ bool external;
+ uint64_t data_addr;
+ uint32_t pat_index;
+ double overcommit_mult;
+};
+
+static const struct vm_overcommit_case overcommit_cases[] = {
+ /* Case 1: DEFER_BACKING */
+ {
+ .name = "vram-lr-defer",
+ .vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE,
+ .bo_flags = DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING |
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ .external = false,
+ .use_vram = true,
+ .data_addr = 0x1a0000,
+ .pat_index = DEFAULT_PAT_INDEX,
+ .overcommit_mult = 2.0,
+ },
+ /* Case 1b: External BO without defer backing */
+ {
+ .name = "vram-lr-external-nodefer",
+ .vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE,
+ .bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ .external = true,
+ .use_vram = true,
+ .data_addr = 0x1a0000,
+ .pat_index = DEFAULT_PAT_INDEX,
+ .overcommit_mult = 2.0,
+ },
+ /* Case 2: LR + FAULT - should not fail on exec */
+ {
+ .name = "vram-lr-fault",
+ .vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE,
+ .bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ .external = false,
+ .use_vram = true,
+ .data_addr = 0x300000000,
+ .pat_index = 0,
+ .overcommit_mult = 2.0,
+ },
+ /* Case 3: !LR - overcommit should fail on exec */
+ {
+ .name = "vram-no-lr",
+ .vm_flags = 0,
+ .bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ .external = false,
+ .use_vram = true,
+ .data_addr = 0x300000000,
+ .pat_index = 0,
+ .overcommit_mult = 2.0,
+ },
+ /* Case 4: LR + FAULT + NO_VM_OVERCOMMIT */
+ {
+ .name = "vram-lr-fault-no-overcommit",
+ .vm_flags = DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT | DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE,
+ .bo_flags = DRM_XE_GEM_CREATE_FLAG_DEFER_BACKING |
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ .external = false,
+ .use_vram = true,
+ .data_addr = 0x300000000,
+ .pat_index = 0,
+ .overcommit_mult = 2.0,
+ },
+ { }
+};
+
+static void
+test_vm_overcommit(int fd, struct drm_xe_engine_class_instance *eci,
+ const struct vm_overcommit_case *c,
+ uint64_t system_size, uint64_t vram_size)
+{
+ uint64_t overcommit_size;
+ uint32_t vm;
+ uint32_t *bos;
+ int num_bos;
+ uint64_t off;
+ size_t nf_bo_size = 64 * 1024 * 1024; // 64MB per BO
+ uint32_t batch_bo;
+ size_t sync_size;
+ uint32_t bind_exec_queue;
+ uint64_t sync_addr = 0x101a0000;
+ uint64_t batch_addr = 0x200000000;
+ uint64_t data_addr;
+ uint32_t exec_queue;
+ uint64_t stride = 1024 * 1024;
+ int64_t timeout = 20 * NSEC_PER_SEC;
+ int i, b;
+ int create_ret;
+ int64_t ret;
+ int bind_err;
+ int res;
+ uint64_t base_size;
+ bool overcommit_detected = false;
+ bool is_fault_mode = (c->vm_flags & DRM_XE_VM_CREATE_FLAG_FAULT_MODE) != 0;
+ bool is_lr_mode = (c->vm_flags & DRM_XE_VM_CREATE_FLAG_LR_MODE) != 0;
+ uint64_t lr_vm_sync = 0;
+ struct drm_xe_sync bind_sync[1] = {
+ {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE
+ },
+ };
+ struct drm_xe_sync lr_sync[1] = {
+ {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE,
+ .addr = to_user_pointer(&lr_vm_sync),
+ },
+ };
+
+ #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+
+ /* For fault mode: user fence, for non-fault mode: syncobj */
+ struct drm_xe_sync exec_sync[1] = {
+ {
+ .type = (is_fault_mode || is_lr_mode) ?
+ DRM_XE_SYNC_TYPE_USER_FENCE : DRM_XE_SYNC_TYPE_SYNCOBJ,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = (is_fault_mode || is_lr_mode) ? USER_FENCE_VALUE : 0,
+ },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(exec_sync),
+ };
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ uint64_t vm_sync;
+ } *batch_data;
+ uint64_t *user_fence_sync = NULL;
+
+ data_addr = c->data_addr;
+
+ base_size = c->use_vram ? vram_size : system_size;
+ overcommit_size = (uint64_t)(base_size * c->overcommit_mult);
+ overcommit_size = ALIGN(overcommit_size, 4096);
+ if (overcommit_size > system_size) {
+ igt_debug("Limiting overcommit size from %llu MB to %llu MB\n",
+ (unsigned long long)(overcommit_size >> 20),
+ (unsigned long long)(system_size >> 20));
+ overcommit_size = ALIGN(system_size, 4096);
+ }
+
+ num_bos = (overcommit_size / nf_bo_size) + 1;
+ bos = calloc(num_bos, sizeof(*bos));
+ igt_assert(bos);
+
+ igt_debug("Overcommit test: allocating %d BOs of %llu MB each",
+ num_bos, (unsigned long long)(nf_bo_size >> 20));
+ igt_debug(" total=%llu MB, vram=%llu MB\n",
+ (unsigned long long)(num_bos * nf_bo_size >> 20),
+ (unsigned long long)(vram_size >> 20));
+ /* Create VM with appropriate flags */
+ vm = xe_vm_create(fd, c->vm_flags, 0);
+ igt_assert(vm);
+ bind_exec_queue = xe_bind_exec_queue_create(fd, vm, 0);
+ /* For fault mode: create user fence sync area */
+ if (is_fault_mode) {
+ sync_size = sizeof(uint64_t) * num_bos;
+ sync_size = xe_bb_size(fd, sync_size);
+ user_fence_sync = mmap(NULL, sync_size, PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(user_fence_sync != MAP_FAILED);
+ memset(user_fence_sync, 0, sync_size);
+ }
+ /* Create and bind BOs */
+ for (i = 0; i < num_bos; i++) {
+ struct {
+ uint64_t vm_sync;
+ } *data;
+
+ /* Create BO using the case's create function */
+ create_ret = vm_overcommit_create_bo(fd, vm, nf_bo_size, c->bo_flags,
+ eci->gt_id, c->use_vram, c->external, &bos[i]);
+
+ if (create_ret) {
+ igt_debug("BO create failed at %d/%d with error %d (%s)\n",
+ i, num_bos, -create_ret, strerror(-create_ret));
+ igt_assert_f(create_ret == -ENOMEM || create_ret == -ENOSPC ||
+ create_ret == -E2BIG || create_ret == -EPERM,
+ "Unexpected error %d (%s)\n",
+ -create_ret, strerror(-create_ret));
+ overcommit_detected = true;
+ num_bos = i;
+ break;
+ }
+
+ /* Map and bind BO */
+ data = xe_bo_map(fd, bos[i], 4096);
+ memset(data, 0, 4096);
+ bind_sync[0].addr = to_user_pointer(&data->vm_sync);
+
+ bind_err = __xe_vm_bind(fd, vm, bind_exec_queue, bos[i], 0,
+ data_addr + (i * nf_bo_size), nf_bo_size,
+ DRM_XE_VM_BIND_OP_MAP, 0, bind_sync, 1, 0,
+ c->pat_index, 0);
+
+ if (bind_err) {
+ igt_debug("Bind failed at %d/%d with error %d (%s)\n",
+ i, num_bos, -bind_err, strerror(-bind_err));
+ igt_assert_f(bind_err == -ENOMEM || bind_err == -ENOSPC ||
+ bind_err == -EPERM,
+ "Unexpected bind error %d (%s)\n",
+ -bind_err, strerror(-bind_err));
+ munmap(data, 4096);
+ gem_close(fd, bos[i]);
+ bos[i] = 0;
+ overcommit_detected = true;
+ num_bos = i;
+ break;
+ }
+
+ xe_wait_ufence(fd, &data->vm_sync, USER_FENCE_VALUE,
+ bind_exec_queue, 20 * NSEC_PER_SEC);
+ munmap(data, 4096);
+
+ igt_debug("Created and bound BO %d/%d at 0x%llx\n",
+ i + 1, num_bos,
+ (unsigned long long)(data_addr + (i * nf_bo_size)));
+ }
+ if (overcommit_detected) {
+ igt_debug("\nOvercommit correctly rejected at BO creation/bind (created %d BOs)\n",
+ num_bos);
+ goto cleanup;
+ }
+
+ /* Create batch buffer */
+ batch_bo = xe_bo_create(fd, vm, 0x1000, vram_memory(fd, eci->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ igt_debug("\n Mapping the created BO");
+ batch_data = xe_bo_map(fd, batch_bo, 0x1000);
+ memset(batch_data, 0, 0x1000);
+
+ /* Bind batch buffer and sync areas */
+ if (is_fault_mode) {
+ batch_data[0].vm_sync = 0;
+ bind_sync[0].addr = to_user_pointer(&batch_data[0].vm_sync);
+
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queue, to_user_pointer(user_fence_sync),
+ sync_addr, sync_size, bind_sync, 1);
+ xe_wait_ufence(fd, &batch_data[0].vm_sync, USER_FENCE_VALUE, bind_exec_queue,
+ NSEC_PER_SEC);
+
+ xe_vm_bind_async(fd, vm, bind_exec_queue, batch_bo, 0, batch_addr, 0x1000,
+ bind_sync, 1);
+ xe_wait_ufence(fd, &batch_data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queue, NSEC_PER_SEC);
+ } else if (is_lr_mode) {
+ /* LR mode without fault - bind batch using user fence */
+ lr_vm_sync = 0; /* Reset before use */
+ lr_sync[0].addr = to_user_pointer(&lr_vm_sync);
+ bind_err = __xe_vm_bind(fd, vm, 0, batch_bo, 0, batch_addr, 0x1000,
+ DRM_XE_VM_BIND_OP_MAP, 0, lr_sync, 1, 0, c->pat_index, 0);
+ if (bind_err) {
+ igt_debug("Batch buffer bind failed with error %d (%s) - skipping GPU test\n",
+ -bind_err, strerror(-bind_err));
+ goto cleanup;
+ }
+ xe_wait_ufence(fd, &lr_vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+ } else {
+ igt_debug("\n Going for vm bind sync");
+ xe_vm_bind_sync(fd, vm, batch_bo, 0, batch_addr, 0x1000);
+ }
+
+ igt_debug("VM binds done - batch_bo at 0x%llx\n", (unsigned long long)batch_addr);
+ /* Create exec queue */
+ exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
+
+ /* Setup sync for exec */
+ if (is_fault_mode) {
+ exec_sync[0].addr = sync_addr;
+ } else if (is_lr_mode) {
+ /* LR mode - use batch_data->vm_sync (GPU accessible memory) */
+ batch_data->vm_sync = 0;
+ exec_sync[0].addr = to_user_pointer(&batch_data->vm_sync);
+ } else {
+ exec_sync[0].handle = syncobj_create(fd, 0);
+ }
+
+ /* Use GPU to write to each BO */
+ for (i = 0; i < num_bos; i++) {
+ igt_debug("Writing to BO %d/%d via GPU\n", i + 1, num_bos);
+
+ for (off = 0; off < nf_bo_size; off += stride) {
+ uint64_t target_addr = data_addr + (i * nf_bo_size) + off;
+
+ b = 0;
+ batch_data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ batch_data->batch[b++] = target_addr & 0xFFFFFFFF;
+ batch_data->batch[b++] = (target_addr >> 32) & 0xFFFFFFFF;
+ batch_data->batch[b++] = 0xBB;
+ batch_data->batch[b++] = MI_BATCH_BUFFER_END;
+
+ /* Reset sync for next exec */
+ if (is_fault_mode) {
+ user_fence_sync[0] = 0;
+ } else if (is_lr_mode) {
+ batch_data->vm_sync = 0;
+ } else {
+ if (off != 0 || i != 0) {
+ igt_assert(syncobj_wait(fd, &exec_sync[0].handle,
+ 1, INT64_MAX, 0, NULL));
+ }
+ syncobj_reset(fd, &exec_sync[0].handle, 1);
+ }
+
+ /* Submit batch */
+ exec.exec_queue_id = exec_queue;
+ exec.address = batch_addr;
+
+ res = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec);
+ if (res != 0) {
+ if (errno == ENOMEM || errno == ENOSPC) {
+ igt_debug("Expected fault/error: %d (%s)\n",
+ errno, strerror(errno));
+ goto gpu_done;
+ }
+ igt_assert_f(0, "Unexpected exec error: %d\n", errno);
+ }
+
+ /* Wait for completion using appropriate method */
+ if (is_fault_mode) {
+ ret = wait_fault(fd, exec_queue, &user_fence_sync[0], &timeout);
+ } else if (is_lr_mode) {
+ timeout = 5 * NSEC_PER_SEC;
+ ret = __xe_wait_ufence(fd, &batch_data->vm_sync, USER_FENCE_VALUE,
+ exec_queue, &timeout);
+ } else {
+ ret = wait_nonfault(fd, exec_queue, &exec_sync[0].handle, &timeout);
+ }
+
+ if (ret != 0) {
+ igt_debug("Batch wait failed at BO %d offset 0x%lx\n",
+ i, off);
+ goto gpu_done;
+ }
+ }
+
+ igt_debug("Accessed BO %d/%d via GPU\n", i + 1, num_bos);
+ }
+
+ igt_debug("All batches completed successfully\n");
+ /* Verify GPU writes */
+ igt_debug("Verifying GPU writes to BOs...\n");
+ for (i = 0; i < num_bos; i++) {
+ uint32_t *verify_data;
+ int errors = 0;
+
+ verify_data = xe_bo_map(fd, bos[i], nf_bo_size);
+
+ for (off = 0; off < nf_bo_size; off += stride) {
+ uint32_t expected = 0xBB;
+ uint32_t actual = verify_data[off / 4];
+
+ if (actual != expected) {
+ if (errors < 5)
+ igt_debug("Mismatch at BO %d offset 0x%llx\n",
+ i, (unsigned long long)off);
+ errors++;
+ }
+ }
+
+ munmap(verify_data, nf_bo_size);
+
+ if (errors == 0)
+ igt_debug("BO %d/%d verified successfully\n", i + 1, num_bos);
+ else
+ igt_debug("BO %d/%d had %d errors\n", i + 1, num_bos, errors);
+ }
+
+gpu_done:
+ igt_debug("Overcommit test completed\n");
+
+ /* Cleanup */
+ if (!is_fault_mode && !is_lr_mode)
+ syncobj_destroy(fd, exec_sync[0].handle);
+
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_exec_queue_destroy(fd, bind_exec_queue);
+ munmap(batch_data, 0x1000);
+ gem_close(fd, batch_bo);
+
+cleanup:
+ if (is_fault_mode && user_fence_sync)
+ munmap(user_fence_sync, sync_size);
+
+ for (i = 0; i < num_bos; i++) {
+ if (bos[i])
+ gem_close(fd, bos[i]);
+ }
+
+ free(bos);
+ xe_vm_destroy(fd, vm);
+}
+
/**
* SUBTEST: out-of-memory
* Description: Test if vm_bind ioctl results in oom
@@ -2850,6 +3332,16 @@ int igt_main()
test_oom(fd);
}
+ for (int i = 0; overcommit_cases[i].name; i++) {
+ const struct vm_overcommit_case *c = &overcommit_cases[i];
+ const char *mode = (c->vm_flags & DRM_XE_VM_CREATE_FLAG_FAULT_MODE) ?
+ "fault" : "nonfault";
+ igt_subtest_f("overcommit-%s-%s", mode, c->name) {
+ test_vm_overcommit(fd, hwe, c, (igt_get_avail_ram_mb() << 20),
+ xe_visible_vram_size(fd, 0));
+ }
+ }
+
igt_fixture()
drm_close_driver(fd);
}
--
2.52.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
@ 2026-03-03 4:01 ` Sharma, Nishit
2026-03-04 12:44 ` Kamil Konieczny
1 sibling, 0 replies; 10+ messages in thread
From: Sharma, Nishit @ 2026-03-03 4:01 UTC (permalink / raw)
To: Sobin Thomas, igt-dev, thomas.hellstrom
[-- Attachment #1: Type: text/plain, Size: 1202 bytes --]
On 3/2/2026 7:30 PM, Sobin Thomas wrote:
> Align with kernel commit 369cc8804985 ("drm/xe/uapi: Introduce a flag to
> disallow VM overcommit in fault mode"). This adds support for the No
> Overcommit flag in IGT to match the kernel UAPI behavior.
>
> Signed-off-by: Sobin Thomas<sobin.thomas@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index 077e66a68..12a9da045 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -983,6 +983,8 @@ struct drm_xe_vm_create {
> #define DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE (1 << 0)
> #define DRM_XE_VM_CREATE_FLAG_LR_MODE (1 << 1)
> #define DRM_XE_VM_CREATE_FLAG_FAULT_MODE (1 << 2)
> +#define DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT (1 << 3)
> +
> /** @flags: Flags */
> __u32 flags;
> Hi
You need to use kernel header *include/drm-uapi/xe_drm.h* in your IGT.
Using that you don't need to add any Macro or struct explicitly in that.
Align with <commit-id> means KMD header used in IGT
to have proper alignment with KMD. Macro
DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT already available in xe_drm.h
[-- Attachment #2: Type: text/html, Size: 1736 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
2026-03-02 14:00 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
@ 2026-03-03 13:50 ` Patchwork
2026-03-03 13:52 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-03 13:50 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3110 bytes --]
== Series Details ==
Series: test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
URL : https://patchwork.freedesktop.org/series/161557/
State : success
== Summary ==
CI Bug Log - changes from IGT_8777 -> IGTPW_14644
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/index.html
Participating hosts (39 -> 35)
------------------------------
Additional (1): fi-pnv-d510
Missing (5): bat-dg2-8 bat-atsm-1 bat-dg1-6 bat-dg2-13 bat-arls-5
Known issues
------------
Here are the changes found in IGTPW_14644 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- fi-pnv-d510: NOTRUN -> [ABORT][1] ([i915#15780])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][2] -> [DMESG-FAIL][3] ([i915#12061]) +1 other test dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-mtlp-8/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- fi-pnv-d510: NOTRUN -> [SKIP][6] +29 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/fi-pnv-d510/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15780]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15780
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14644
* Linux: CI_DRM_18075 -> CI_DRM_18082
CI-20190529: 20190529
CI_DRM_18075: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18082: 3594e3a9ce7d4ad237f43ff907e9744446108603 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14644: 43a879a6a0ea96a31910b9d4140989eb91bda70c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/index.html
[-- Attachment #2: Type: text/html, Size: 3992 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
` (2 preceding siblings ...)
2026-03-03 13:50 ` ✓ i915.CI.BAT: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2) Patchwork
@ 2026-03-03 13:52 ` Patchwork
2026-03-03 22:04 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-03 22:33 ` ✓ Xe.CI.FULL: success " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-03 13:52 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6085 bytes --]
== Series Details ==
Series: test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
URL : https://patchwork.freedesktop.org/series/161557/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8777_BAT -> XEIGTPW_14644_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 14)
------------------------------
Additional (1): bat-atsm-2
Known issues
------------
Here are the changes found in XEIGTPW_14644_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-atsm-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][2] ([i915#6077]) +30 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@basic:
- bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#829] / [i915#1836]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_prop_blob@basic:
- bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#780])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-primary-page-flip:
- bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_huc_copy@huc_copy:
- bat-atsm-2: NOTRUN -> [SKIP][11] ([Intel XE#255])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#2229])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: NOTRUN -> [SKIP][13] ([Intel XE#977])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-atsm-2: NOTRUN -> [SKIP][14] ([Intel XE#2838] / [Intel XE#979])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-atsm-2: NOTRUN -> [SKIP][15] ([Intel XE#979])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14644
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4651-17ea88b18f33a355595d94c8ee60269cc7ac7f1d
IGTPW_14644: 43a879a6a0ea96a31910b9d4140989eb91bda70c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4651-17ea88b18f33a355595d94c8ee60269cc7ac7f1d: 17ea88b18f33a355595d94c8ee60269cc7ac7f1d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/index.html
[-- Attachment #2: Type: text/html, Size: 7477 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
` (3 preceding siblings ...)
2026-03-03 13:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-03 22:04 ` Patchwork
2026-03-03 22:33 ` ✓ Xe.CI.FULL: success " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-03 22:04 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 160460 bytes --]
== Series Details ==
Series: test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
URL : https://patchwork.freedesktop.org/series/161557/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18082_full -> IGTPW_14644_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14644_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14644_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14644_full:
### IGT changes ###
#### Possible regressions ####
* igt@api_intel_bb@crc32@vecs0-lmem0:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-7/igt@api_intel_bb@crc32@vecs0-lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@api_intel_bb@crc32@vecs0-lmem0.html
Known issues
------------
Here are the changes found in IGTPW_14644_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32@vecs0-smem0:
- shard-dg2: [PASS][3] -> [INCOMPLETE][4] ([i915#15759])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-7/igt@api_intel_bb@crc32@vecs0-smem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@api_intel_bb@crc32@vecs0-smem0.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#3281]) +9 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#3281]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-17/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#3936])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3936])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3936])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_caching@writes.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#13008])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#12392])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#4771])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4812]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][21] ([i915#11713])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#6334]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#6334]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#6344])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_create@madvise:
- shard-dg1: NOTRUN -> [ABORT][29] ([i915#15759]) +1 other test abort
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@gem_exec_create@madvise.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +9 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613] / [i915#7582])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +8 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#12193])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4565])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3282]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#8289])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-16/igt@gem_mmap_gtt@basic-wc.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-3/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#3282]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][58] ([i915#2658])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][61] ([i915#2658])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][62] ([i915#2658])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#13717])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#13398])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#13398])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][71] -> [INCOMPLETE][72] ([i915#13809])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk5/igt@gem_softpin@noreloc-s3.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk1/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#15656])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][82] ([i915#13356] / [i915#14586])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk11/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356]) +2 other tests incomplete
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk4/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#11527]) +7 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14073]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#15479]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][94] ([i915#15342]) +1 other test abort
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][95] ([i915#15342]) +1 other test abort
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#15479]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][97] -> [DMESG-WARN][98] ([i915#13029] / [i915#14545])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-19/igt@i915_module_load@reload-no-display.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][101] -> [WARN][102] ([i915#13790] / [i915#2681]) +1 other test warn
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#15365])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-8/igt@i915_pm_rps@waitboost.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@i915_pm_rps@waitboost.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#14544] / [i915#7984])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#5723])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#5723])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5723])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live:
- shard-dg1: [PASS][109] -> [DMESG-FAIL][110] ([i915#15560])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-16/igt@i915_selftest@live.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@i915_selftest@live.html
- shard-mtlp: [PASS][111] -> [DMESG-FAIL][112] ([i915#12061] / [i915#15560])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-6/igt@i915_selftest@live.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: [PASS][113] -> [DMESG-FAIL][114] ([i915#15433])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-16/igt@i915_selftest@live@gem_contexts.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][115] -> [DMESG-FAIL][116] ([i915#12061])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][117] ([i915#4817] / [i915#7443])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][118] ([i915#4817])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk11/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk10: NOTRUN -> [INCOMPLETE][119] ([i915#4817])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#7707])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4212]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#12761]) +1 other test incomplete
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][126] ([i915#5956])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][132] +13 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2: NOTRUN -> [ABORT][133] ([i915#15759])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#5190]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6187])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][138] +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +29 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#6095]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][144] +97 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +69 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#6095]) +49 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#6095]) +75 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#6095]) +39 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#14098] / [i915#6095]) +49 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][151] ([i915#14694] / [i915#15582]) +1 other test incomplete
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +48 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#6095]) +151 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-snb: NOTRUN -> [SKIP][157] +105 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-snb1/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][158] +387 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544] / [i915#3742])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +5 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#14544] / [i915#7828])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +10 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#12655] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_color@deep-color.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#12655] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#9979])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-plane-2:
- shard-mtlp: NOTRUN -> [FAIL][171] ([i915#15733]) +12 other tests fail
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-plane-2.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7118] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#7118] / [i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#6944])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#14544] / [i915#15330] / [i915#3116])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3299])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#15330])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#6944] / [i915#7116] / [i915#7118])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#13049])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][186] -> [FAIL][187] ([i915#13566]) +3 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#13049]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: NOTRUN -> [FAIL][189] ([i915#13566]) +4 other tests fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8814]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][191] ([i915#13566]) +1 other test fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#13049])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13049])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][196] ([i915#13566]) +1 other test fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8814])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12358] / [i915#14152] / [i915#7882])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk3/igt@kms_cursor_crc@cursor-suspend.html
- shard-rkl: [PASS][201] -> [ABORT][202] ([i915#15132])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#12358] / [i915#14152])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [ABORT][204] ([i915#15132])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend@pipe-c-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][205] +22 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][206] +42 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#14544])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#4103]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#9809]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#13046] / [i915#5354]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][212] ([i915#15768])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#9067])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9067])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9067])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9067])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9067])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#4103])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4213])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#9723])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#9723])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3804])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#1257])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#13749])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#13748])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8812])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#14544] / [i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#3840])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#3955])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#1839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#1839])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#658])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#658])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#9934]) +7 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9934]) +4 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3637] / [i915#9934]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3637] / [i915#9934]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#9934])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3637] / [i915#9934]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8381])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][244] -> [TIMEOUT][245] ([i915#14033] / [i915#14350])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][246] -> [TIMEOUT][247] ([i915#14033])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9934]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#9934]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][250] -> [INCOMPLETE][251] ([i915#6113]) +1 other test incomplete
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-4/igt@kms_flip@flip-vs-suspend.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#12745] / [i915#4839])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][253] ([i915#12745])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#15643]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#15643]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#15643]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#15643]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15643]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15643]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15643] / [i915#5190]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +38 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#5354]) +22 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#8708]) +9 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][265] ([i915#10056])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#10055]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15102]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15102]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#15102] / [i915#3023]) +18 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#8708]) +10 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15102] / [i915#3458]) +15 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15102] / [i915#3458]) +10 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#14544] / [i915#1825]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +19 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][276] +37 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#10055]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15102])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15102]) +14 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15102]) +17 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][283] ([i915#15436]) +1 other test incomplete
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#12713])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#12713])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#1187] / [i915#12713])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12713] / [i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15460])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15459])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#15459])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#15459])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#15458])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15638] / [i915#15722])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15638] / [i915#15722])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#6301])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-3/igt@kms_panel_fitting@legacy.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#6301])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#6301])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#6301])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][302] +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][303] -> [INCOMPLETE][304] ([i915#12756] / [i915#13476])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][305] -> [INCOMPLETE][306] ([i915#13476])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][307] ([i915#13409] / [i915#13476])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#14712])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#15709]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#15709]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#15709]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#15709]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#15608]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-linear-modifier:
- shard-dg2: [PASS][314] -> [ABORT][315] ([i915#15759]) +6 other tests abort
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-3/igt@kms_plane@pixel-format-linear-modifier.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_plane@pixel-format-linear-modifier.html
- shard-dg1: [PASS][316] -> [ABORT][317] ([i915#15759]) +4 other tests abort
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_plane@pixel-format-linear-modifier.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_plane@pixel-format-linear-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#15709]) +4 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#15709]) +2 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#15608]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#15608]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#15608]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#15608]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg1: [PASS][324] -> [DMESG-WARN][325] ([i915#4423]) +9 other tests dmesg-warn
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-19/igt@kms_plane@plane-panning-bottom-right-suspend.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][326] -> [INCOMPLETE][327] ([i915#14412]) +1 other test incomplete
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13026]) +1 other test incomplete
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][329] ([i915#12178])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][330] ([i915#7862]) +1 other test fail
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk10: NOTRUN -> [FAIL][331] ([i915#10647] / [i915#12169])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][332] ([i915#10647]) +1 other test fail
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#11614] / [i915#3582]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#8821])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#13958]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#13958])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#13958])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#13958])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#14259])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#6953])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#15329] / [i915#3555])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#15329]) +3 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#15329]) +9 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#15329]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9685])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#3828])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#3828]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#3828])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#3828])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3828])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#9685]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9685])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#3828])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#8430])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][356] -> [SKIP][357] ([i915#15073])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#15073])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#15073])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][360] -> [SKIP][361] ([i915#15073])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][362] -> [SKIP][363] ([i915#15073]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#15403])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][365] ([i915#11520]) +18 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#11520] / [i915#4423])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9808]) +4 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#11520]) +7 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][369] ([i915#11520])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][370] ([i915#11520]) +3 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#11520]) +7 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][372] ([i915#11520]) +3 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-snb6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#11520]) +5 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#12316]) +4 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#11520]) +5 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#11520]) +8 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9683]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#4348])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-glk10: NOTRUN -> [SKIP][379] +89 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk10/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#9732]) +13 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9688]) +12 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +18 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_psr@pr-cursor-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#1072] / [i915#9732]) +9 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#9732]) +12 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#1072] / [i915#9732]) +12 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#9685])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#9685])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][389] ([i915#15492])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#5289])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#12755] / [i915#5190]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#5289])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#5289])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][394] ([i915#5289]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#12755])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#12755]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][397] ([i915#13179]) +1 other test abort
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-9/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][398] ([i915#13179]) +1 other test abort
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][399] -> [FAIL][400] ([i915#15106]) +2 other tests fail
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-tglu-8/igt@kms_setmode@basic.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#3555]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][402] -> [FAIL][403] ([i915#15106]) +2 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-dg2: [PASS][404] -> [FAIL][405] ([i915#15106]) +2 other tests fail
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-5/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#3555] / [i915#8809])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#8623])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][408] ([i915#10959])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][409] ([i915#12276]) +1 other test incomplete
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk4/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][410] ([i915#9906])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#3555] / [i915#9906])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-10/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][412] ([i915#9906])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#2434])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][414] ([i915#2433])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][415] ([i915#8516])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][416] ([i915#8516])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][417] ([i915#9917]) +2 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7:
- shard-tglu-1: NOTRUN -> [FAIL][418] ([i915#12910]) +9 other tests fail
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][419] ([i915#9917])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg1: NOTRUN -> [SKIP][420] ([i915#9917]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][421] ([i915#12910]) +9 other tests fail
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-mtlp: NOTRUN -> [FAIL][422] ([i915#12910]) +9 other tests fail
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [FAIL][423] ([i915#15454]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [INCOMPLETE][425] ([i915#13356]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg2: [FAIL][427] ([i915#15734]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-4/igt@gem_lmem_swapping@smem-oom.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [CRASH][429] ([i915#5493]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [SKIP][431] ([i915#4270]) -> [PASS][432] +1 other test pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_pxp@display-protected-crc.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][433] ([i915#13809]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][435] ([i915#7984]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-4/igt@i915_power@sanity.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-2/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: [ABORT][437] ([i915#15131]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][439] ([i915#5956]) -> [PASS][440] +1 other test pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][441] ([i915#15733] / [i915#5138]) -> [PASS][442]
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][443] ([i915#13566]) -> [PASS][444] +1 other test pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][445] ([i915#13566]) -> [PASS][446] +2 other tests pass
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-mtlp: [FAIL][447] ([i915#10826]) -> [PASS][448]
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@b-edp1:
- shard-mtlp: [FAIL][449] -> [PASS][450]
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check@b-edp1.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@b-edp1.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [SKIP][451] ([i915#15672]) -> [PASS][452]
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [FAIL][453] ([i915#15389] / [i915#6880]) -> [PASS][454]
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][455] ([i915#15725]) -> [PASS][456]
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][457] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][458]
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
- shard-dg1: [ABORT][459] ([i915#15759]) -> [PASS][460] +3 other tests pass
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-14/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#15073]) -> [PASS][462]
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][463] ([i915#15073]) -> [PASS][464]
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][465] ([i915#15073]) -> [PASS][466]
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][467] ([i915#14419]) -> [PASS][468]
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-dg2: [ABORT][469] ([i915#15759]) -> [PASS][470]
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][471] ([i915#4349]) -> [PASS][472] +3 other tests pass
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][473] ([i915#11078]) -> [SKIP][474] ([i915#11078] / [i915#14544])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@device_reset@cold-reset-bound.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][475] ([i915#8562]) -> [SKIP][476] ([i915#14544] / [i915#8562])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][477] ([i915#280]) -> [SKIP][478] ([i915#14544] / [i915#280])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][479] ([i915#4525]) -> [SKIP][480] ([i915#14544] / [i915#4525])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][481] ([i915#14544] / [i915#6344]) -> [SKIP][482] ([i915#6344])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-rkl: [SKIP][483] ([i915#3281]) -> [SKIP][484] ([i915#14544] / [i915#3281]) +2 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#3281]) -> [SKIP][486] ([i915#3281]) +4 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#4613]) -> [SKIP][488] ([i915#4613])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#284]) -> [SKIP][490] ([i915#284])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_media_vme.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#3282]) -> [SKIP][492] ([i915#3282])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-rkl: [SKIP][493] ([i915#3282]) -> [SKIP][494] ([i915#14544] / [i915#3282]) +2 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-8/igt@gem_tiled_partial_pwrite_pread@writes.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#3297]) -> [SKIP][496] ([i915#3297])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#2527]) -> [SKIP][498] ([i915#2527]) +2 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][499] ([i915#14498] / [i915#14544]) -> [SKIP][500] ([i915#14498])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#6245]) -> [SKIP][502] ([i915#6245])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@i915_query@hwconfig_table.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][504] ([i915#1769] / [i915#3555])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][505] ([i915#14544] / [i915#5286]) -> [SKIP][506] ([i915#5286]) +2 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][507] ([i915#5286]) -> [SKIP][508] ([i915#14544] / [i915#5286]) +3 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#3828]) -> [SKIP][510] ([i915#3828])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][511] ([i915#14544]) -> [SKIP][512] +3 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][513] ([i915#12313] / [i915#14544]) -> [SKIP][514] ([i915#12313])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][515] ([i915#6095]) -> [SKIP][516] ([i915#14544] / [i915#6095]) +3 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][517] ([i915#14098] / [i915#6095]) -> [SKIP][518] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: [INCOMPLETE][519] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][520] ([i915#15582])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: [INCOMPLETE][521] ([i915#14694]) -> [INCOMPLETE][522] ([i915#15582])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-rkl: [SKIP][523] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][524] ([i915#14098] / [i915#6095]) +2 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][525] ([i915#11151] / [i915#7828]) -> [SKIP][526] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: [SKIP][527] ([i915#11151] / [i915#7828]) -> [SKIP][528] ([i915#11151] / [i915#4423] / [i915#7828])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-rkl: [SKIP][529] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][530] ([i915#11151] / [i915#7828]) +2 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: [SKIP][531] ([i915#6944] / [i915#9424]) -> [SKIP][532] ([i915#4423] / [i915#6944] / [i915#9424])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-19/igt@kms_content_protection@lic-type-0.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][533] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][534] ([i915#6944] / [i915#9424])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_content_protection@mei-interface.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][535] ([i915#6944] / [i915#9424]) -> [SKIP][536] ([i915#9433])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#6944] / [i915#7118]) -> [SKIP][538] ([i915#6944] / [i915#7118])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_content_protection@srm.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: [SKIP][539] ([i915#13049]) -> [SKIP][540] ([i915#13049] / [i915#4423])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: [SKIP][541] ([i915#3555]) -> [SKIP][542] ([i915#3555] / [i915#4423])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#4103]) -> [SKIP][544] ([i915#4103])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][545] -> [SKIP][546] ([i915#14544]) +6 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][547] ([i915#14544] / [i915#9723]) -> [SKIP][548] ([i915#9723])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][549] ([i915#13749] / [i915#14544]) -> [SKIP][550] ([i915#13749])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][551] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][552] ([i915#3555] / [i915#3840])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: [SKIP][553] ([i915#9934]) -> [SKIP][554] ([i915#14544] / [i915#9934])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#9934]) -> [SKIP][556] ([i915#9934]) +4 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][557] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][558] ([i915#12314] / [i915#12745] / [i915#4839])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk5/igt@kms_flip@flip-vs-suspend.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][559] ([i915#12314] / [i915#12745] / [i915#6113]) -> [INCOMPLETE][560] ([i915#12314] / [i915#12745])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: [SKIP][561] ([i915#15643]) -> [SKIP][562] ([i915#15643] / [i915#4423])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-rkl: [SKIP][563] ([i915#15643]) -> [SKIP][564] ([i915#14544] / [i915#15643])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: [SKIP][565] ([i915#14544] / [i915#15643]) -> [SKIP][566] ([i915#15643])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][567] ([i915#15102]) -> [SKIP][568] ([i915#14544] / [i915#15102])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [SKIP][569] ([i915#15102] / [i915#3458]) -> [SKIP][570] ([i915#10433] / [i915#15102] / [i915#3458])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][571] ([i915#15102] / [i915#3023]) -> [SKIP][572] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][573] ([i915#15102] / [i915#3458]) -> [SKIP][574] ([i915#15102] / [i915#3458] / [i915#4423])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][575] ([i915#14544] / [i915#1825]) -> [SKIP][576] ([i915#1825]) +13 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: [SKIP][577] -> [SKIP][578] ([i915#4423]) +3 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][579] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][580] ([i915#15102] / [i915#3023]) +6 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][581] ([i915#5439]) -> [SKIP][582] ([i915#14544] / [i915#5439])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
- shard-rkl: [SKIP][583] ([i915#14544] / [i915#15102]) -> [SKIP][584] ([i915#15102])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg1: [SKIP][585] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][586] ([i915#15102] / [i915#3458])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][587] ([i915#1825]) -> [SKIP][588] ([i915#14544] / [i915#1825]) +9 other tests skip
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][589] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][590] ([i915#15102] / [i915#3458]) +3 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: [SKIP][591] ([i915#8708]) -> [SKIP][592] ([i915#4423] / [i915#8708]) +1 other test skip
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][593] ([i915#14544] / [i915#3555] / [i915#8228]) -> [SKIP][594] ([i915#3555] / [i915#8228])
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg1: [SKIP][595] ([i915#3555] / [i915#8228]) -> [SKIP][596] ([i915#3555] / [i915#4423] / [i915#8228])
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-12/igt@kms_hdr@static-toggle.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][597] ([i915#15458]) -> [SKIP][598] ([i915#14544] / [i915#15458])
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][599] ([i915#15459]) -> [SKIP][600] ([i915#14544] / [i915#15459])
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][601] ([i915#14544] / [i915#14712]) -> [SKIP][602] ([i915#14712])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][603] ([i915#14544] / [i915#15709]) -> [SKIP][604] ([i915#15709])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][605] ([i915#15709]) -> [SKIP][606] ([i915#14544] / [i915#15709]) +1 other test skip
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][607] ([i915#14259] / [i915#14544]) -> [SKIP][608] ([i915#14259])
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][609] ([i915#12343]) -> [SKIP][610] ([i915#12343] / [i915#14544])
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][611] ([i915#15739]) -> [SKIP][612] ([i915#14544] / [i915#15739])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][613] ([i915#3828]) -> [SKIP][614] ([i915#9340])
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg1: [SKIP][615] ([i915#11520] / [i915#4423]) -> [SKIP][616] ([i915#11520])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg1: [SKIP][617] ([i915#11520]) -> [SKIP][618] ([i915#11520] / [i915#4423])
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-17/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][619] ([i915#11520] / [i915#14544]) -> [SKIP][620] ([i915#11520]) +3 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][621] ([i915#11520]) -> [SKIP][622] ([i915#11520] / [i915#14544]) +5 other tests skip
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][623] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][624] ([i915#1072] / [i915#9732]) +10 other tests skip
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg1: [SKIP][625] ([i915#1072] / [i915#9732]) -> [SKIP][626] ([i915#1072] / [i915#4423] / [i915#9732])
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-14/igt@kms_psr@psr2-cursor-blt.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-13/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-dpms:
- shard-dg1: [SKIP][627] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][628] ([i915#1072] / [i915#9732])
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-dg1-12/igt@kms_psr@psr2-dpms.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-dg1-14/igt@kms_psr@psr2-dpms.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][629] ([i915#1072] / [i915#9732]) -> [SKIP][630] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-4/igt@kms_psr@psr2-primary-mmap-gtt.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][631] ([i915#14544] / [i915#8623]) -> [SKIP][632] ([i915#8623])
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][633] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][634] ([i915#3555] / [i915#9906])
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-rkl-6/igt@kms_vrr@negative-basic.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-rkl-7/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [ABORT][635] ([i915#15778]) -> [INCOMPLETE][636] ([i915#13520])
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18082/shard-mtlp-1/igt@perf_pmu@module-unload.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/shard-mtlp-8/igt@perf_pmu@module-unload.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14644
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18082: 3594e3a9ce7d4ad237f43ff907e9744446108603 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14644: 43a879a6a0ea96a31910b9d4140989eb91bda70c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14644/index.html
[-- Attachment #2: Type: text/html, Size: 214673 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
` (4 preceding siblings ...)
2026-03-03 22:04 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-03 22:33 ` Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-03 22:33 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 21800 bytes --]
== Series Details ==
Series: test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2)
URL : https://patchwork.freedesktop.org/series/161557/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8777_FULL -> XEIGTPW_14644_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14644_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@xe_vm@overcommit-nonfault-vram-lr-defer} (NEW):
- shard-lnl: NOTRUN -> [FAIL][1] +4 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-2/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html
New tests
---------
New tests have been introduced between XEIGT_8777_FULL and XEIGTPW_14644_FULL:
### New IGT tests (5) ###
* igt@xe_vm@overcommit-fault-vram-lr-fault:
- Statuses : 1 fail(s)
- Exec time: [0.29] s
* igt@xe_vm@overcommit-fault-vram-lr-fault-no-overcommit:
- Statuses : 1 fail(s)
- Exec time: [0.14] s
* igt@xe_vm@overcommit-nonfault-vram-lr-defer:
- Statuses : 1 fail(s)
- Exec time: [0.30] s
* igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
- Statuses : 1 fail(s)
- Exec time: [0.37] s
* igt@xe_vm@overcommit-nonfault-vram-no-lr:
- Statuses : 1 fail(s)
- Exec time: [0.23] s
Known issues
------------
Here are the changes found in XEIGTPW_14644_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#3658] / [Intel XE#7360])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1467] / [Intel XE#7367])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#367] / [Intel XE#7354])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3432])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#306] / [Intel XE#7358])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#6973])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2321] / [Intel XE#7355])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#701] / [Intel XE#7359])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1421]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7178] / [Intel XE#7351])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#656]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#6312])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7283])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1406] / [Intel XE#7345])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1406] / [Intel XE#4609])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][19] ([Intel XE#6390] / [Intel XE#7461]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-6/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-8/igt@xe_configfs@survivability-mode.html
* igt@xe_eudebug@multigpu-basic-client-many:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#4837]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@xe_eudebug@multigpu-basic-client-many.html
* igt@xe_eudebug_online@pagefault-write:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#4837] / [Intel XE#6665])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-7/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-6/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_balancer@once-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7482]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@xe_exec_balancer@once-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1392]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7136]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6874]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#7138]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#584] / [Intel XE#7369])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#944])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-8/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][32] ([Intel XE#6054] / [Intel XE#7509]) -> [PASS][33] +3 other tests pass
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][34] ([Intel XE#7340]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][36] ([Intel XE#5625]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
#### Warnings ####
* igt@xe_module_load@load:
- shard-bmg: ([DMESG-WARN][38], [DMESG-WARN][39], [DMESG-WARN][40], [DMESG-WARN][41], [DMESG-WARN][42], [DMESG-WARN][43], [DMESG-WARN][44], [DMESG-WARN][45], [DMESG-WARN][46], [DMESG-WARN][47], [DMESG-WARN][48], [DMESG-WARN][49], [DMESG-WARN][50], [DMESG-WARN][51], [DMESG-WARN][52], [DMESG-WARN][53], [DMESG-WARN][54], [DMESG-WARN][55], [PASS][56], [PASS][57], [DMESG-WARN][58], [DMESG-WARN][59], [DMESG-WARN][60], [DMESG-WARN][61], [DMESG-WARN][62]) ([Intel XE#7433]) -> ([DMESG-WARN][63], [DMESG-WARN][64], [DMESG-WARN][65], [DMESG-WARN][66], [DMESG-WARN][67], [DMESG-WARN][68], [DMESG-WARN][69], [DMESG-WARN][70], [DMESG-WARN][71], [DMESG-WARN][72], [DMESG-WARN][73], [DMESG-WARN][74], [DMESG-WARN][75], [DMESG-WARN][76], [DMESG-WARN][77], [DMESG-WARN][78], [DMESG-WARN][79], [DMESG-WARN][80], [DMESG-WARN][81], [DMESG-WARN][82], [DMESG-WARN][83], [DMESG-WARN][84], [DMESG-WARN][85], [DMESG-WARN][86], [DMESG-WARN][87]) ([Intel XE#7433])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-5/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-8/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-8/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-8/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-3/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-3/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-3/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-6/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-6/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-1/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-1/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-1/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-7/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-7/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-7/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-9/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-9/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-9/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-2/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-2/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-2/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-4/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-4/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-4/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/shard-bmg-5/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[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#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[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#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
[Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455
[Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7509
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14644
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4651-17ea88b18f33a355595d94c8ee60269cc7ac7f1d
IGTPW_14644: 43a879a6a0ea96a31910b9d4140989eb91bda70c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4651-17ea88b18f33a355595d94c8ee60269cc7ac7f1d: 17ea88b18f33a355595d94c8ee60269cc7ac7f1d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14644/index.html
[-- Attachment #2: Type: text/html, Size: 23667 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests
@ 2026-03-04 11:04 Sobin Thomas
0 siblings, 0 replies; 10+ messages in thread
From: Sobin Thomas @ 2026-03-04 11:04 UTC (permalink / raw)
To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, Sobin Thomas
This series introduces support for No Overcommit flags in the xe_uapi
and adds IGT tests to validate overcommit behaviour across different
VM modes.
Patch 1 sync the drm-uapi/xe header with kernel.
Patch 2 increase coverage to xe_vm tests by adding tests for
- Over-commit test in fault and non fault mode
- No-Over-Commit tests in fault mode
Sobin Thomas (2):
drm-uapi/xe: Add support for No Overcommit flag
tests/intel/xe_vm: Add support for overcommit tests
include/drm-uapi/xe_drm.h | 2 +
tests/intel/xe_vm.c | 517 ++++++++++++++++++++++++++++++++++++++
2 files changed, 519 insertions(+)
--
2.52.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
2026-03-03 4:01 ` Sharma, Nishit
@ 2026-03-04 12:44 ` Kamil Konieczny
1 sibling, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2026-03-04 12:44 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev, thomas.hellstrom, nishit.sharma
Hi Sobin,
On 2026-03-02 at 14:00:09 +0000, Sobin Thomas wrote:
> Align with kernel commit 369cc8804985 ("drm/xe/uapi: Introduce a flag to
> disallow VM overcommit in fault mode"). This adds support for the No
> Overcommit flag in IGT to match the kernel UAPI behavior.
>
> Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index 077e66a68..12a9da045 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -983,6 +983,8 @@ struct drm_xe_vm_create {
> #define DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE (1 << 0)
> #define DRM_XE_VM_CREATE_FLAG_LR_MODE (1 << 1)
> #define DRM_XE_VM_CREATE_FLAG_FAULT_MODE (1 << 2)
> +#define DRM_XE_VM_CREATE_FLAG_NO_VM_OVERCOMMIT (1 << 3)
> +
> /** @flags: Flags */
As Nishit said, you should in drm-tip checkout into that commit, do
make INSTALL_HDR_PATH=~/tmp/ headers_install
and then
cp ~/tmp/include/drm/xe_drm.h include/drm-uapi/
There are a little more changes than that, so also please mension
them with additional commit hash and name.
Regards,
Kamil
> __u32 flags;
>
> --
> 2.52.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-04 12:44 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-02 14:00 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
2026-03-02 14:00 ` [PATCH v2 i-g-t 1/2] drm-uapi/xe: Add support for No Overcommit flag Sobin Thomas
2026-03-03 4:01 ` Sharma, Nishit
2026-03-04 12:44 ` Kamil Konieczny
2026-03-02 14:00 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_vm: Add support for overcommit tests Sobin Thomas
2026-03-03 13:50 ` ✓ i915.CI.BAT: success for test/intel/xe_vm: Add overcommit and no‑overcommit handling tests (rev2) Patchwork
2026-03-03 13:52 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-03 22:04 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-03 22:33 ` ✓ Xe.CI.FULL: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2026-03-04 11:04 [PATCH i-g-t v2 0/2] test/intel/xe_vm: Add overcommit and no‑overcommit handling tests Sobin Thomas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox