* [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
@ 2025-01-24 11:31 Francois Dugast
2025-01-24 18:37 ` ✓ i915.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2) Patchwork
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Francois Dugast @ 2025-01-24 11:31 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
When Xe is used, create the VM in LR mode as this is what the
compute UMD does to run compute kernels. This makes those tests
more representative of real world scenarios. A side effect is
that user fences must be used.
v2: Minimize changes, stick to xe_vm_bind_userptr_async()
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
1 file changed, 81 insertions(+), 17 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index f1520aad4..a7d5d3e0d 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -27,6 +27,7 @@
#define SIZE_BATCH 0x1000
#define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
#define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
+#define ADDR_SYNC 0x010000ULL
#define ADDR_BATCH 0x100000ULL
#define ADDR_INPUT 0x200000ULL
#define ADDR_OUTPUT 0x300000ULL
@@ -43,6 +44,8 @@
#define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
#define OFFSET_STATE_SIP 0xFFFF0000
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+
/*
* TGP - ThreadGroup Preemption
* WMTP - Walker Mid Thread Preemption
@@ -58,6 +61,10 @@ struct bo_dict_entry {
uint32_t handle;
};
+struct bo_sync {
+ uint64_t sync;
+};
+
struct bo_execenv {
int fd;
enum intel_driver driver;
@@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
execenv->driver = get_intel_driver(fd);
if (execenv->driver == INTEL_DRIVER_XE) {
- execenv->vm = xe_vm_create(fd, 0, 0);
+ execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
if (eci) {
execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm,
@@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct bo_execenv *execenv)
igt_assert(execenv);
if (execenv->driver == INTEL_DRIVER_XE) {
- xe_vm_destroy(execenv->fd, execenv->vm);
xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
+ xe_vm_destroy(execenv->fd, execenv->vm);
}
}
@@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
if (execenv->driver == INTEL_DRIVER_XE) {
uint32_t vm = execenv->vm;
+ uint32_t exec_queue = execenv->exec_queue;
uint64_t alignment = xe_get_default_alignment(fd);
- struct drm_xe_sync sync = { 0 };
-
- sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
- sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
- sync.handle = syncobj_create(fd, 0);
+ struct bo_sync *bo_sync;
+ size_t bo_size = sizeof(*bo_sync);
+ uint32_t bo = 0;
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE,
+ };
+
+ bo_size = xe_bb_size(fd, bo_size);
+ bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ bo_sync = xe_bo_map(fd, bo, bo_size);
+ sync.addr = to_user_pointer(&bo_sync->sync);
for (int i = 0; i < entries; i++) {
+ bo_sync->sync = 0;
bo_dict[i].data = aligned_alloc(alignment, bo_dict[i].size);
xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data),
bo_dict[i].addr, bo_dict[i].size, &sync, 1);
- syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
+ xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
+ NSEC_PER_SEC);
memset(bo_dict[i].data, 0, bo_dict[i].size);
igt_debug("[i: %2d name: %20s] data: %p, addr: %16llx, size: %llx\n",
@@ -139,7 +158,8 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
(long long)bo_dict[i].size);
}
- syncobj_destroy(fd, sync.handle);
+ munmap(bo_sync, bo_size);
+ gem_close(fd, bo);
} else {
struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
struct drm_i915_gem_exec_object2 *obj;
@@ -177,19 +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
if (execenv->driver == INTEL_DRIVER_XE) {
uint32_t vm = execenv->vm;
- struct drm_xe_sync sync = { 0 };
-
- sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
- sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
- sync.handle = syncobj_create(fd, 0);
+ uint32_t exec_queue = execenv->exec_queue;
+ struct bo_sync *bo_sync;
+ size_t bo_size = sizeof(*bo_sync);
+ uint32_t bo = 0;
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE,
+ };
+
+ bo_size = xe_bb_size(fd, bo_size);
+ bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ bo_sync = xe_bo_map(fd, bo, bo_size);
+ sync.addr = to_user_pointer(&bo_sync->sync);
for (int i = 0; i < entries; i++) {
+ bo_sync->sync = 0;
xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
- syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
+ xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
+ NSEC_PER_SEC);
free(bo_dict[i].data);
}
- syncobj_destroy(fd, sync.handle);
+ munmap(bo_sync, bo_size);
+ gem_close(fd, bo);
} else {
for (int i = 0; i < entries; i++) {
gem_close(fd, bo_dict[i].handle);
@@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
int fd = execenv->fd;
if (execenv->driver == INTEL_DRIVER_XE) {
- xe_exec_wait(fd, execenv->exec_queue, start_addr);
+ uint32_t exec_queue = execenv->exec_queue;
+ struct bo_sync *bo_sync;
+ size_t bo_size = sizeof(*bo_sync);
+ uint32_t bo = 0;
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE,
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ .exec_queue_id = exec_queue,
+ .address = start_addr,
+ };
+
+ bo_size = xe_bb_size(fd, bo_size);
+ bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ bo_sync = xe_bo_map(fd, bo, bo_size);
+ sync.addr = to_user_pointer(&bo_sync->sync);
+ xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC, bo_size, &sync, 1);
+ xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
+
+ sync.addr = ADDR_SYNC;
+ bo_sync->sync = 0;
+ xe_exec(fd, &exec);
+ xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
+
+ munmap(bo_sync, bo_size);
+ gem_close(fd, bo);
} else {
struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
struct drm_i915_gem_exec_object2 *obj = execenv->obj;
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2)
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
@ 2025-01-24 18:37 ` Patchwork
2025-01-24 19:07 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-24 18:37 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3538 bytes --]
== Series Details ==
Series: lib/intel_compute: Use LR mode for compute when using Xe (rev2)
URL : https://patchwork.freedesktop.org/series/143899/
State : success
== Summary ==
CI Bug Log - changes from IGT_8209 -> IGTPW_12492
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/index.html
Participating hosts (38 -> 37)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12492 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_create@basic-files:
- fi-pnv-d510: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/fi-pnv-d510/igt@gem_ctx_create@basic-files.html
* igt@gem_exec_gttfill@basic:
- fi-pnv-d510: NOTRUN -> [ABORT][2] ([i915#13169])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
* igt@i915_selftest@live@gt_mocs:
- bat-adlp-9: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/bat-adlp-9/igt@i915_selftest@live@gt_mocs.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/bat-adlp-9/igt@i915_selftest@live@gt_mocs.html
#### Possible fixes ####
* igt@i915_module_load@load:
- fi-pnv-d510: [ABORT][5] ([i915#13203]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/fi-pnv-d510/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- {bat-mtlp-9}: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13169
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8209 -> IGTPW_12492
* Linux: CI_DRM_16017 -> CI_DRM_16018
CI-20190529: 20190529
CI_DRM_16017: 897537fb818365733977947214c799d61675895f @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16018: b36df02c99e3246ba2a90e951c71797327374db7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12492: ac23feb0d8ee729438a8b78a56cd35d892618655 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/index.html
[-- Attachment #2: Type: text/html, Size: 4358 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2)
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
2025-01-24 18:37 ` ✓ i915.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2) Patchwork
@ 2025-01-24 19:07 ` Patchwork
2025-01-25 1:32 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-24 19:07 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3292 bytes --]
== Series Details ==
Series: lib/intel_compute: Use LR mode for compute when using Xe (rev2)
URL : https://patchwork.freedesktop.org/series/143899/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8209_BAT -> XEIGTPW_12492_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 6)
------------------------------
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_12492_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_exec_basic@twice-bindexecqueue-rebind:
- bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8209 -> IGTPW_12492
* Linux: xe-2548-897537fb818365733977947214c799d61675895f -> xe-2549-b36df02c99e3246ba2a90e951c71797327374db7
IGTPW_12492: ac23feb0d8ee729438a8b78a56cd35d892618655 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2548-897537fb818365733977947214c799d61675895f: 897537fb818365733977947214c799d61675895f
xe-2549-b36df02c99e3246ba2a90e951c71797327374db7: b36df02c99e3246ba2a90e951c71797327374db7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/index.html
[-- Attachment #2: Type: text/html, Size: 4254 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for lib/intel_compute: Use LR mode for compute when using Xe (rev2)
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
2025-01-24 18:37 ` ✓ i915.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2) Patchwork
2025-01-24 19:07 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-25 1:32 ` Patchwork
2025-01-25 7:23 ` ✗ i915.CI.Full: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-25 1:32 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 132361 bytes --]
== Series Details ==
Series: lib/intel_compute: Use LR mode for compute when using Xe (rev2)
URL : https://patchwork.freedesktop.org/series/143899/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8209_full -> XEIGTPW_12492_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12492_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12492_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12492_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_content_protection@lic-type-0.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-bmg: [PASS][2] -> [FAIL][3] +5 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@xe_compute_preempt@compute-preempt-many.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute:
- shard-lnl: [PASS][4] -> [FAIL][5] +5 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-1/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
Known issues
------------
Here are the changes found in XEIGTPW_12492_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@basic:
- shard-dg2-set2: [PASS][6] -> [FAIL][7] ([Intel XE#3440])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@core_getversion@basic.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@core_getversion@basic.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: NOTRUN -> [FAIL][8] ([Intel XE#3249])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#3453])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@kms_3d:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2423]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_3d.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3157])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#911]) +3 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2423] / [i915#2575]) +46 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3279])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2370])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1477])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +6 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1512]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#3442])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3433]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#3862])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +167 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#314]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#314]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#306]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#306])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#307])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#3278]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][56] ([Intel XE#4132])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#1188])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423] / [i915#2575]) +53 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#308])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2321])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2321])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-dg2-set2: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#1033]) +16 other tests dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [ABORT][67] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4083])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#323])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1340])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#701])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1138])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1138])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#3098]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_flip@basic-flip-vs-wf_vblank.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@dpms-off-confusion-interruptible@d-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][77] ([Intel XE#1033]) +9 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_flip@dpms-off-confusion-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#3149] / [Intel XE#886])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +4 other tests fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301] / [Intel XE#3321])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#2136]) +20 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2380]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#455]) +16 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +8 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4141]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +17 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2311]) +10 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +20 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#653]) +20 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +14 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][99] ([Intel XE#1033]) +6 other tests dmesg-warn
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1450] / [Intel XE#2568])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1450]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2934])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2925])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#616]) +2 other tests fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2493])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +19 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-bmg: NOTRUN -> [DMESG-WARN][108] ([Intel XE#1033] / [Intel XE#2566])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#3007]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2391])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#2029])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#2446]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_pm_rpm@i2c.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2446]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2136]) +28 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-plane-move.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2351])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#3414]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2330])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1127])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1435])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#1729])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#362])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2426])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1500])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][137] -> [FAIL][138] ([Intel XE#899]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1499])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_vrr@flip-suspend.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1123])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#1033]) +70 other tests dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2905]) +9 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-3/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#3889])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_eudebug_online@single-step-one:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +9 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-small-external-cm:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#688]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@xe_evict@evict-small-external-cm.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][149] -> [SKIP][150] ([Intel XE#1130]) +117 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1130]) +73 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@many-rebind:
- shard-bmg: [PASS][152] -> [SKIP][153] ([Intel XE#1130]) +9 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_exec_basic@many-rebind.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_exec_basic@many-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2322]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1392]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-userptr-rebind:
- shard-dg2-set2: [PASS][156] -> [SKIP][157] ([Intel XE#1392]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_exec_basic@multigpu-once-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +17 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1192])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2229])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][162] -> [SKIP][163] ([Intel XE#1192])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_live_ktest@xe_dma_buf.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][164] -> [FAIL][165] ([Intel XE#3546])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_module_load@many-reload.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: NOTRUN -> [FAIL][166] ([Intel XE#3546])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#977])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-5/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2245])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2427])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-2/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#584]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#1033] / [Intel XE#569])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][176] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][177] -> [ABORT][178] ([Intel XE#1358] / [Intel XE#1794])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#944]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#944])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-3/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#944])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#1130])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html
#### Possible fixes ####
* igt@fbdev@read:
- shard-dg2-set2: [SKIP][183] ([Intel XE#2134]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@fbdev@read.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@fbdev@read.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [SKIP][185] ([Intel XE#2423] / [i915#2575]) -> [PASS][186] +63 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-lnl: [INCOMPLETE][187] ([Intel XE#3225]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][189] ([Intel XE#1033]) -> [PASS][190] +13 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][191] ([Intel XE#829]) -> [PASS][192] +2 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][193] ([Intel XE#3007]) -> [PASS][194] +1 other test pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [SKIP][195] -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_flip@2x-busy-flip@cd-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][197] ([Intel XE#1033]) -> [PASS][198] +80 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_flip@2x-busy-flip@cd-dp2-hdmi-a3.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_flip@2x-busy-flip@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [FAIL][199] ([Intel XE#3098]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: [FAIL][201] ([Intel XE#3321]) -> [PASS][202] +4 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_flip@flip-vs-panning:
- shard-dg2-set2: [INCOMPLETE][203] ([Intel XE#2049]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_flip@flip-vs-panning.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_flip@flip-vs-panning.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][205] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][206] +1 other test pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-lnl: [FAIL][207] ([Intel XE#886]) -> [PASS][208] +2 other tests pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: [SKIP][209] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][210] +7 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-bmg: [SKIP][211] ([Intel XE#540]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_force_connector_basic@force-connector-state.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][213] ([Intel XE#2136]) -> [PASS][214] +23 other tests pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [ABORT][215] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4080]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [FAIL][217] -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_plane_cursor@viewport.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [SKIP][219] ([Intel XE#4108]) -> [PASS][220] +6 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][221] ([Intel XE#718]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2446]) -> [PASS][224] +2 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prop_blob@blob-prop-lifetime:
- shard-bmg: [SKIP][225] ([Intel XE#780]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_prop_blob@blob-prop-lifetime.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_prop_blob@blob-prop-lifetime.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][227] ([Intel XE#2159]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-bmg: [SKIP][229] ([Intel XE#1130]) -> [PASS][230] +9 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_copy_basic@mem-copy-linear-0x369.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_exec_basic@no-exec-basic-defer-bind:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1130]) -> [PASS][232] +129 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_basic@no-exec-basic-defer-bind.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_exec_basic@no-exec-basic-defer-bind.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [SKIP][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258]) ([Intel XE#378]) -> ([PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][280] ([Intel XE#3546]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [DMESG-WARN][282] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@s3-exec-after.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][284] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][285] +2 other tests pass
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_pm@s3-vm-bind-prefetch.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][286] ([Intel XE#1033] / [Intel XE#2280]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_pm@s4-mocs.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@fbdev@write:
- shard-dg2-set2: [DMESG-WARN][288] ([Intel XE#1033]) -> [SKIP][289] ([Intel XE#2134])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@fbdev@write.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@fbdev@write.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: [SKIP][290] ([Intel XE#4108]) -> [SKIP][291] ([Intel XE#873])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: [SKIP][292] ([Intel XE#3768]) -> [SKIP][293] ([Intel XE#2423] / [i915#2575])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_async_flips@invalid-async-flip-atomic.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][294] ([Intel XE#316]) -> [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: [SKIP][296] ([Intel XE#2327]) -> [SKIP][297] ([Intel XE#2136] / [Intel XE#2231])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][298] ([Intel XE#316]) -> [SKIP][299] ([Intel XE#2136])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-90.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][301] ([Intel XE#316]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][302] ([Intel XE#1124]) -> [SKIP][303] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#610]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][306] ([Intel XE#1124]) -> [SKIP][307] ([Intel XE#2136]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][309] ([Intel XE#1124])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-bmg: [SKIP][310] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][311] ([Intel XE#1124])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][312] ([Intel XE#1124]) -> [SKIP][313] ([Intel XE#2136] / [Intel XE#2231])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][314] ([Intel XE#829]) -> [SKIP][315] ([Intel XE#1124])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#1124]) +5 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][318] ([Intel XE#4108]) -> [SKIP][319] ([Intel XE#367])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: [SKIP][320] ([Intel XE#367]) -> [SKIP][321] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: [SKIP][322] ([Intel XE#367]) -> [SKIP][323] ([Intel XE#3007])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#367]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][327] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#2907])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][332] ([Intel XE#1033]) -> [SKIP][333] ([Intel XE#2136] / [Intel XE#2351])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][334] ([Intel XE#2136]) -> [INCOMPLETE][335] ([Intel XE#3862])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][336] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][337] ([Intel XE#2887]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][338] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][339] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][340] ([Intel XE#2907]) -> [SKIP][341] ([Intel XE#2136])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][342] -> [SKIP][343] ([Intel XE#2887]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][344] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][345] ([Intel XE#2136]) +10 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: [SKIP][346] ([Intel XE#3007]) -> [SKIP][347] ([Intel XE#2325])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_chamelium_color@ctm-0-75.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#306])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][350] ([Intel XE#306]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_chamelium_color@gamma.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][352] ([Intel XE#4108]) -> [SKIP][353] ([Intel XE#2252]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-bmg: [SKIP][354] ([Intel XE#2252]) -> [SKIP][355] ([Intel XE#3007])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: [SKIP][356] ([Intel XE#3007]) -> [SKIP][357] ([Intel XE#2252]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][358] ([Intel XE#373]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][360] ([Intel XE#2423] / [i915#2575]) -> [SKIP][361] ([Intel XE#373]) +6 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [DMESG-FAIL][362] ([Intel XE#1033]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][364] ([Intel XE#1033]) -> [FAIL][365] ([Intel XE#1178]) +1 other test fail
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][366] ([Intel XE#307]) -> [SKIP][367] ([Intel XE#2423] / [i915#2575])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][368] ([Intel XE#4108]) -> [SKIP][369] ([Intel XE#2390])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [FAIL][371] ([Intel XE#1188])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_content_protection@uevent.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2423] / [i915#2575]) -> [SKIP][373] ([Intel XE#308]) +3 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [SKIP][374] ([Intel XE#2423] / [i915#2575]) -> [ABORT][375] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4083])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][376] ([Intel XE#323]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2136]) +5 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([Intel XE#1137])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][382] ([Intel XE#3321]) -> [DMESG-WARN][383] ([Intel XE#1033])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank.html
- shard-dg2-set2: [SKIP][384] ([Intel XE#2423] / [i915#2575]) -> [FAIL][385] ([Intel XE#301])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-lnl: [FAIL][386] ([Intel XE#886]) -> [FAIL][387] ([Intel XE#3149] / [Intel XE#886])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_event_leak@basic:
- shard-dg2-set2: [SKIP][388] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][389] ([Intel XE#1033])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip_event_leak@basic.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_flip_event_leak@basic.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][390] ([Intel XE#2136]) -> [SKIP][391] ([Intel XE#455]) +5 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][392] ([Intel XE#455]) -> [SKIP][393] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][394] ([Intel XE#651]) -> [SKIP][395] ([Intel XE#2136]) +13 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][396] ([Intel XE#4108]) -> [SKIP][397] ([Intel XE#2311]) +3 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][398] ([Intel XE#2311]) -> [SKIP][399] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][400] ([Intel XE#2311]) -> [INCOMPLETE][401] ([Intel XE#2050] / [Intel XE#2594])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][403] ([Intel XE#651]) +10 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2-set2: [DMESG-WARN][404] ([Intel XE#1033]) -> [SKIP][405] ([Intel XE#2136])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][406] ([Intel XE#4141]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2231])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [INCOMPLETE][408] ([Intel XE#2050]) -> [SKIP][409] ([Intel XE#4141])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2136]) -> [DMESG-WARN][411] ([Intel XE#1033])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][412] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][413] ([Intel XE#4141])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [SKIP][414] ([Intel XE#4108]) -> [SKIP][415] ([Intel XE#4141])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][417] ([Intel XE#658])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][418] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][419] ([Intel XE#2311]) +2 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2136]) -> [SKIP][421] ([Intel XE#651]) +17 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][422] ([Intel XE#651]) -> [SKIP][423] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: [SKIP][424] ([Intel XE#2313]) -> [SKIP][425] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][426] ([Intel XE#658]) -> [SKIP][427] ([Intel XE#2136] / [Intel XE#2351])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][428] ([Intel XE#653]) -> [SKIP][429] ([Intel XE#2136]) +17 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][430] ([Intel XE#653]) -> [SKIP][431] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][433] ([Intel XE#653]) +8 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][434] ([Intel XE#4108]) -> [SKIP][435] ([Intel XE#2313]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#653]) +20 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][438] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][439] ([Intel XE#2313]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][440] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][441] ([Intel XE#3544])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][442] ([Intel XE#346]) -> [SKIP][443] ([Intel XE#2136])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][444] ([Intel XE#2136]) -> [SKIP][445] ([Intel XE#2927])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#346])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][448] ([Intel XE#356]) -> [SKIP][449] ([Intel XE#2423] / [i915#2575])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: [SKIP][450] ([Intel XE#455]) -> [SKIP][451] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_panel_fitting@atomic-fastset.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2423] / [i915#2575]) -> [FAIL][453] ([Intel XE#616])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_plane_cursor@primary.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][454] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][455] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][456] ([Intel XE#2136]) -> [SKIP][457] ([Intel XE#870]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#1129])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][460] ([Intel XE#3309]) -> [SKIP][461] ([Intel XE#2136])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: [SKIP][462] ([Intel XE#3309]) -> [SKIP][463] ([Intel XE#2136] / [Intel XE#2231])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][464] ([Intel XE#2136]) -> [SKIP][465] ([Intel XE#908])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [DMESG-WARN][466] ([Intel XE#1033]) -> [SKIP][467] ([Intel XE#2446])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][468] ([Intel XE#2136]) -> [SKIP][469] ([Intel XE#1489]) +4 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][470] ([Intel XE#1489]) -> [SKIP][471] ([Intel XE#2136]) +4 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][472] ([Intel XE#1489]) -> [SKIP][473] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][474] ([Intel XE#4108]) -> [SKIP][475] ([Intel XE#1489])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: [SKIP][476] ([Intel XE#4108]) -> [SKIP][477] ([Intel XE#2234] / [Intel XE#2850])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_psr@fbc-pr-basic.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-2/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][478] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][479] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][480] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][481] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][482] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][483] ([Intel XE#2136]) +8 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-render:
- shard-bmg: [SKIP][486] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][487] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_psr@pr-primary-render.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@psr-cursor-blt:
- shard-bmg: [SKIP][488] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][489] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_psr@psr-cursor-blt.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_psr@psr-cursor-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2136]) -> [SKIP][491] ([Intel XE#2939])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][492] ([Intel XE#3414]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-180:
- shard-dg2-set2: [DMESG-WARN][494] ([Intel XE#1033]) -> [SKIP][495] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-180.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][496] ([Intel XE#2423] / [i915#2575]) -> [SKIP][497] ([Intel XE#1127])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][498] ([Intel XE#1127]) -> [SKIP][499] ([Intel XE#2423] / [i915#2575])
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][500] ([Intel XE#1729]) -> [SKIP][501] ([Intel XE#2426])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2-set2: [SKIP][502] ([Intel XE#2423] / [i915#2575]) -> [SKIP][503] ([Intel XE#455]) +5 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_vrr@flip-basic-fastset.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: [SKIP][504] ([Intel XE#4108]) -> [SKIP][505] ([Intel XE#1499])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-vrr.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][506] ([Intel XE#756]) -> [SKIP][507] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@testdisplay:
- shard-dg2-set2: [SKIP][508] ([Intel XE#2423]) -> [DMESG-WARN][509] ([Intel XE#2705])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@testdisplay.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-433/igt@testdisplay.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][511] ([Intel XE#1130])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][512] ([Intel XE#1130]) -> [SKIP][513] ([Intel XE#1123])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#1126])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][516] ([Intel XE#1126]) -> [SKIP][517] ([Intel XE#1130])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#2905]) +8 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_eudebug@basic-close.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][520] ([Intel XE#2905]) -> [SKIP][521] ([Intel XE#1130]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-dg2-set2: [SKIP][522] ([Intel XE#3889]) -> [SKIP][523] ([Intel XE#1130])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#3889])
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: [SKIP][526] ([Intel XE#2905]) -> [SKIP][527] ([Intel XE#1130]) +7 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2905]) +1 other test skip
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-3/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-dg2-set2: [DMESG-WARN][530] ([Intel XE#1033]) -> [SKIP][531] ([Intel XE#1130]) +1 other test skip
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-dg2-set2: [SKIP][532] ([Intel XE#1130]) -> [SKIP][533] ([Intel XE#1392])
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#288]) +22 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_fault_mode@twice-invalid-fault.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][536] ([Intel XE#288]) -> [SKIP][537] ([Intel XE#1130]) +18 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#2360]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][540] ([Intel XE#2360]) -> [SKIP][541] ([Intel XE#1130])
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [DMESG-WARN][543] ([Intel XE#1033]) +1 other test dmesg-warn
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_exec_threads@threads-hang-shared-vm-userptr-invalidate-race.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][544] ([Intel XE#560]) -> [SKIP][545] ([Intel XE#1130])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_media_fill@media-fill.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_media_fill@media-fill.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [SKIP][547] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_oa@invalid-create-userspace-config.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-432/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][548] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][549] ([Intel XE#1130]) +6 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][550] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][551] ([Intel XE#1130]) +1 other test skip
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@s3-basic-exec.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [DMESG-WARN][552] ([Intel XE#1033] / [Intel XE#2280]) -> [SKIP][553] ([Intel XE#1130])
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@s4-mocs.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_pm@s4-mocs.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [SKIP][555] ([Intel XE#944]) +2 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: [SKIP][556] ([Intel XE#944]) -> [SKIP][557] ([Intel XE#1130])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_query@multigpu-query-gt-list.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][558] ([Intel XE#944]) -> [SKIP][559] ([Intel XE#1130]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_query@multigpu-query-topology.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][560] ([Intel XE#1130]) -> [SKIP][561] ([Intel XE#4130])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_sriov_auto_provisioning@fair-allocation.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][562] ([Intel XE#3342]) -> [SKIP][563] ([Intel XE#1130])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_sriov_flr@flr-vf1-clear.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: [SKIP][564] ([Intel XE#3342]) -> [SKIP][565] ([Intel XE#1130])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4080]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4080
[Intel XE#4083]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4083
[Intel XE#4108]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4132
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8209 -> IGTPW_12492
* Linux: xe-2548-897537fb818365733977947214c799d61675895f -> xe-2549-b36df02c99e3246ba2a90e951c71797327374db7
IGTPW_12492: ac23feb0d8ee729438a8b78a56cd35d892618655 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2548-897537fb818365733977947214c799d61675895f: 897537fb818365733977947214c799d61675895f
xe-2549-b36df02c99e3246ba2a90e951c71797327374db7: b36df02c99e3246ba2a90e951c71797327374db7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12492/index.html
[-- Attachment #2: Type: text/html, Size: 169821 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for lib/intel_compute: Use LR mode for compute when using Xe (rev2)
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
` (2 preceding siblings ...)
2025-01-25 1:32 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-25 7:23 ` Patchwork
2025-01-27 4:12 ` [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Dandamudi, Priyanka
2025-01-27 5:13 ` Zbigniew Kempczyński
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-01-25 7:23 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100283 bytes --]
== Series Details ==
Series: lib/intel_compute: Use LR mode for compute when using Xe (rev2)
URL : https://patchwork.freedesktop.org/series/143899/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16018_full -> IGTPW_12492_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12492_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12492_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_12492/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12492_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling:
- shard-dg1: NOTRUN -> [FAIL][1] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html
New tests
---------
New tests have been introduced between CI_DRM_16018_full and IGTPW_12492_full:
### New IGT tests (3) ###
* igt@gem_exercise_blt@fast-copy@xmajor-lmem0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@gem_exercise_blt@fast-copy@xmajor-lmem0-smem:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@gem_exercise_blt@fast-copy@xmajor-smem-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in IGTPW_12492_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +11 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4873])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@gem_caching@writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#13008])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#7297])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-7/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#12392] / [i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-5/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-7/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-9/igt@gem_create@create-ext-set-pat.html
* igt@gem_cs_tlb@engines@rcs0:
- shard-rkl: [PASS][23] -> [DMESG-WARN][24] ([i915#12964]) +42 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-7/igt@gem_cs_tlb@engines@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@gem_cs_tlb@engines@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb5/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_eio@hibernate:
- shard-mtlp: NOTRUN -> [ABORT][27] ([i915#7975])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][28] ([i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-5/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13390])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk1/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-tglu: NOTRUN -> [DMESG-WARN][30] ([i915#13363])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][31] ([i915#12714] / [i915#5784])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#8555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [ABORT][38] ([i915#11713])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +14 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [PASS][48] -> [ABORT][49] ([i915#7975] / [i915#8213]) +1 other test abort
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#2190])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#2190])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][54] ([i915#2190])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613] / [i915#7582])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#12193])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +12 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][65] -> [ABORT][66] ([i915#10729]) +1 other test abort
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@gem_mmap_wc@bad-object.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@gem_pread@display.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][73] ([i915#2658])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][74] ([i915#2658])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) +3 other tests timeout
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-1/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4885])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [DMESG-FAIL][82] ([i915#12964])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][89] +440 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb2/igt@gem_vm_create@invalid-create.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][90] -> [DMESG-FAIL][91] ([i915#12964])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
- shard-glk: [PASS][92] -> [INCOMPLETE][93] ([i915#13356])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [ABORT][100] ([i915#12817] / [i915#9820])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#8399]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#6590]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][103] -> [FAIL][104] ([i915#12942]) +1 other test fail
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#11681] / [i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][108] -> [SKIP][109] ([i915#7984])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-6/igt@i915_power@sanity.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5723])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5723])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][113] -> [DMESG-FAIL][114] ([i915#12061]) +1 other test dmesg-fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][115] ([i915#9311]) +1 other test dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb7/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) +1 other test dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) +1 other test dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk6/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) +1 other test dmesg-warn
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][119] ([i915#9311]) +1 other test dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [PASS][120] -> [INCOMPLETE][121] ([i915#4817])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-glk7/igt@i915_suspend@fence-restore-tiled2untiled.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#4817])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk7/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#7707])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4212])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#5190])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4215])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#8709]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#8709]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10333])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#9531])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition:
- shard-glk: NOTRUN -> [FAIL][134] ([i915#12238])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk8/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: NOTRUN -> [FAIL][135] ([i915#11859])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][137] ([i915#1769]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#5286])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#5286]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6187])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][147] +14 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][149] +20 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +186 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12313]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +29 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +58 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +34 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12805])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#12805])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][161] ([i915#12796]) +2 other tests incomplete
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#6095]) +7 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#6095]) +44 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#12313]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#10307] / [i915#6095]) +141 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][168] +349 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3742]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#7213] / [i915#9010])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][171] +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +6 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +6 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +6 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#7116])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#7116] / [i915#9424]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#6944] / [i915#9424])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#9424]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8814]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][189] -> [FAIL][190] ([i915#13566]) +3 other tests fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#13049])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][194] ([i915#13566]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8814]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3555])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#13046] / [i915#5354]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9809]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9067])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#9067])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#9067])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9723])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#8588])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1257])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3840] / [i915#9688])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3469])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3955])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3469]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#1839])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#1839]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#9337])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#4881])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637]) +6 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8381]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#4839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9934]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3637]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#9934]) +7 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12745] / [i915#4839]) +1 other test incomplete
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12745])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
- shard-dg1: [PASS][231] -> [FAIL][232] ([i915#11989]) +1 other test fail
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg1-13/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check:
- shard-tglu: [PASS][233] -> [FAIL][234] ([i915#11989]) +1 other test fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-7/igt@kms_flip@plain-flip-ts-check.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-snb: [PASS][235] -> [FAIL][236] ([i915#11989]) +2 other tests fail
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-snb2/igt@kms_flip@wf_vblank-ts-check.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb7/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#8813]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +5 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/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][241] ([i915#2587] / [i915#2672] / [i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#2672]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#8708]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][251] +68 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][252] +38 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][253] +54 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3458]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#1825]) +22 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#5354]) +12 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8708]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#8708]) +16 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#3023]) +26 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#1825]) +41 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#3458]) +22 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12713])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#12713])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#12713])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#12713])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#10656])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#12339])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#12388])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#12394] / [i915#13522])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#12394] / [i915#13522])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#10656] / [i915#13522])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#6301])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-6/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#6301])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][276] ([i915#10647] / [i915#12177])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][277] ([i915#10647]) +1 other test fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#3555]) +7 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8806])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555]) +8 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#6953])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#12247]) +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#12247]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-rkl: [PASS][284] -> [DMESG-WARN][285] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#12247]) +13 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#6953])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#12247]) +14 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-rkl: [PASS][289] -> [DMESG-WARN][290] ([i915#12964] / [i915#1982])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-7/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#5354]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#12343])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#3828])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#3361])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][295] ([i915#12912])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#9685])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#9685])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#3828])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#8430])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][300] -> [SKIP][301] ([i915#9519]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#9519]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#9519])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#9519]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#9519])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#6524])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +8 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#9808]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][309] ([i915#11520]) +12 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12316]) +8 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#11520]) +9 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][312] ([i915#11520]) +12 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#11520]) +6 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#11520]) +12 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11520]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9683])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#9683])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#9683]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9683])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#4348])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#9732]) +12 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#9732]) +14 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-7/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#9732]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9688]) +19 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +24 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +23 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-3/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#9685]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#9685])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#4884])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#4235])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#4235])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#5289])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: NOTRUN -> [DMESG-WARN][333] ([i915#12964]) +19 other tests dmesg-warn
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12755]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-90.html
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#12755])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#5289])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#5030] / [i915#9041])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#5030]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#5030] / [i915#9041])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][340] ([i915#13179]) +1 other test abort
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][341] ([i915#5465]) +2 other tests fail
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb5/igt@kms_setmode@basic.html
- shard-tglu: [PASS][342] -> [FAIL][343] ([i915#5465]) +2 other tests fail
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-7/igt@kms_setmode@basic.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-6/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][344] -> [FAIL][345] ([i915#5465]) +2 other tests fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8809])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8623])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#9196]) +1 other test fail
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][350] ([i915#12276]) +1 other test incomplete
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8808]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-3/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#9906]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#8808] / [i915#9906])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#2437] / [i915#9412])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#2437] / [i915#9412])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][356] ([i915#2437]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf_pmu@module-unload:
- shard-snb: [PASS][357] -> [ABORT][358] ([i915#11703] / [i915#13559])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-snb7/igt@perf_pmu@module-unload.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-snb7/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#8516]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html
* igt@prime_busy@hang:
- shard-rkl: NOTRUN -> [DMESG-WARN][360] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@prime_busy@hang.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#3291] / [i915#3708]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#3708] / [i915#4077]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-13/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#3708])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#9917]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- shard-tglu: NOTRUN -> [FAIL][365] ([i915#12910]) +9 other tests fail
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-tglu: [ABORT][366] ([i915#13010]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-8/igt@core_getversion@all-cards.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-4/igt@core_getversion@all-cards.html
* igt@gem_eio@kms:
- shard-mtlp: [ABORT][368] ([i915#13193]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-7/igt@gem_eio@kms.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-5/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][370] ([i915#12543] / [i915#5784]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-3/igt@gem_eio@reset-stress.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@gem_eio@reset-stress.html
* igt@gem_eio@wait-1us:
- shard-mtlp: [ABORT][372] -> [PASS][373] +2 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-7/igt@gem_eio@wait-1us.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-1/igt@gem_eio@wait-1us.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][374] ([i915#7975] / [i915#8213]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][376] ([i915#5138]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][378] ([i915#12796]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][380] ([i915#13566]) -> [PASS][381] +1 other test pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
- shard-rkl: [FAIL][382] ([i915#13566]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [FAIL][384] ([i915#11989]) -> [PASS][385] +5 other tests pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-4/igt@kms_flip@blocking-wf_vblank.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@modeset-vs-vblank-race@a-edp1:
- shard-mtlp: [FAIL][386] -> [PASS][387] +2 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-8/igt@kms_flip@modeset-vs-vblank-race@a-edp1.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-7/igt@kms_flip@modeset-vs-vblank-race@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-dg2: [FAIL][388] ([i915#11989]) -> [PASS][389] +2 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-8/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
- shard-tglu: [FAIL][390] ([i915#11989]) -> [PASS][391] +4 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][392] ([i915#13030]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][394] ([i915#3555] / [i915#8228]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_cursor@overlay:
- shard-dg1: [DMESG-WARN][396] ([i915#4423]) -> [PASS][397] +3 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg1-12/igt@kms_plane_cursor@overlay.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-18/igt@kms_plane_cursor@overlay.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][398] ([i915#9295]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [SKIP][400] ([i915#9519]) -> [PASS][401] +1 other test pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][402] ([i915#9519]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@perf@polling@0-rcs0:
- shard-rkl: [DMESG-WARN][404] ([i915#12964]) -> [PASS][405] +30 other tests pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-4/igt@perf@polling@0-rcs0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-5/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][406] ([i915#4349]) -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs0:
- shard-dg2: [FAIL][408] ([i915#4349]) -> [PASS][409] +10 other tests pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-7/igt@perf_pmu@render-node-busy-idle@vcs0.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-10/igt@perf_pmu@render-node-busy-idle@vcs0.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: [FAIL][410] ([i915#4349]) -> [PASS][411] +7 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: [TIMEOUT][412] ([i915#12917] / [i915#12964]) -> [SKIP][413] ([i915#4270])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: [TIMEOUT][414] ([i915#12964]) -> [SKIP][415] ([i915#4270])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [SKIP][416] ([i915#4270]) -> [TIMEOUT][417] ([i915#12917] / [i915#12964])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-rkl-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-rkl-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][418] ([i915#9820]) -> [DMESG-WARN][419] ([i915#13475])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][420] ([i915#10131] / [i915#13493] / [i915#9820]) -> [ABORT][421] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: [FAIL][422] ([i915#3591]) -> [WARN][423] ([i915#2681])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][424] ([i915#12739] / [i915#3591]) -> [WARN][425] ([i915#2681])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][426] ([i915#4423] / [i915#8708]) -> [SKIP][427] ([i915#8708])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][428] ([i915#3458]) -> [SKIP][429] ([i915#10433] / [i915#3458]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][430] ([i915#10433] / [i915#3458]) -> [SKIP][431] ([i915#3458])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16018/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12492/index.html
[-- Attachment #2: Type: text/html, Size: 110107 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
` (3 preceding siblings ...)
2025-01-25 7:23 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-27 4:12 ` Dandamudi, Priyanka
2025-01-28 10:37 ` Francois Dugast
2025-01-27 5:13 ` Zbigniew Kempczyński
5 siblings, 1 reply; 10+ messages in thread
From: Dandamudi, Priyanka @ 2025-01-27 4:12 UTC (permalink / raw)
To: Dugast, Francois, igt-dev@lists.freedesktop.org; +Cc: Dugast, Francois
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Francois
> Dugast
> Sent: 24 January 2025 05:02 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Dugast, Francois <francois.dugast@intel.com>
> Subject: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when
> using Xe
>
> When Xe is used, create the VM in LR mode as this is what the compute UMD
> does to run compute kernels. This makes those tests more representative of
> real world scenarios. A side effect is that user fences must be used.
>
> v2: Minimize changes, stick to xe_vm_bind_userptr_async()
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
> 1 file changed, 81 insertions(+), 17 deletions(-)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c index
> f1520aad4..a7d5d3e0d 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -27,6 +27,7 @@
> #define SIZE_BATCH 0x1000
> #define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA,
> 0x1000)
> #define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA,
> 0x1000)
> +#define ADDR_SYNC 0x010000ULL
> #define ADDR_BATCH 0x100000ULL
> #define ADDR_INPUT 0x200000ULL
> #define ADDR_OUTPUT 0x300000ULL
> @@ -43,6 +44,8 @@
> #define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
> #define OFFSET_STATE_SIP 0xFFFF0000
>
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +
> /*
> * TGP - ThreadGroup Preemption
> * WMTP - Walker Mid Thread Preemption
> @@ -58,6 +61,10 @@ struct bo_dict_entry {
> uint32_t handle;
> };
>
> +struct bo_sync {
> + uint64_t sync;
> +};
> +
> struct bo_execenv {
> int fd;
> enum intel_driver driver;
> @@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv
> *execenv,
> execenv->driver = get_intel_driver(fd);
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - execenv->vm = xe_vm_create(fd, 0, 0);
> + execenv->vm = xe_vm_create(fd,
> DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
>
> if (eci) {
> execenv->exec_queue = xe_exec_queue_create(fd,
> execenv->vm, @@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct
> bo_execenv *execenv)
> igt_assert(execenv);
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - xe_vm_destroy(execenv->fd, execenv->vm);
> xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
> + xe_vm_destroy(execenv->fd, execenv->vm);
> }
> }
>
> @@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv
> *execenv,
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> uint32_t vm = execenv->vm;
> + uint32_t exec_queue = execenv->exec_queue;
> uint64_t alignment = xe_get_default_alignment(fd);
> - struct drm_xe_sync sync = { 0 };
> -
> - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> - sync.handle = syncobj_create(fd, 0);
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size,
> vram_if_possible(fd, 0),
> +
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
>
> for (int i = 0; i < entries; i++) {
> + bo_sync->sync = 0;
> bo_dict[i].data = aligned_alloc(alignment,
> bo_dict[i].size);
> xe_vm_bind_userptr_async(fd, vm, 0,
> to_user_pointer(bo_dict[i].data),
> bo_dict[i].addr,
> bo_dict[i].size, &sync, 1);
> - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0,
> NULL);
> + xe_wait_ufence(fd, &bo_sync->sync,
> USER_FENCE_VALUE, exec_queue,
> + NSEC_PER_SEC);
> memset(bo_dict[i].data, 0, bo_dict[i].size);
>
> igt_debug("[i: %2d name: %20s] data: %p, addr:
> %16llx, size: %llx\n", @@ -139,7 +158,8 @@ static void
> bo_execenv_bind(struct bo_execenv *execenv,
> (long long)bo_dict[i].size);
> }
>
> - syncobj_destroy(fd, sync.handle);
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> struct drm_i915_gem_execbuffer2 *execbuf = &execenv-
> >execbuf;
> struct drm_i915_gem_exec_object2 *obj; @@ -177,19
> +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> uint32_t vm = execenv->vm;
> - struct drm_xe_sync sync = { 0 };
> -
> - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> - sync.handle = syncobj_create(fd, 0);
> + uint32_t exec_queue = execenv->exec_queue;
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size,
> vram_if_possible(fd, 0),
> +
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
>
> for (int i = 0; i < entries; i++) {
> + bo_sync->sync = 0;
> xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr,
> bo_dict[i].size, &sync, 1);
> - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0,
> NULL);
> + xe_wait_ufence(fd, &bo_sync->sync,
> USER_FENCE_VALUE, exec_queue,
> + NSEC_PER_SEC);
> free(bo_dict[i].data);
> }
>
> - syncobj_destroy(fd, sync.handle);
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> for (int i = 0; i < entries; i++) {
> gem_close(fd, bo_dict[i].handle);
> @@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv
> *execenv, uint64_t start_addr)
> int fd = execenv->fd;
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - xe_exec_wait(fd, execenv->exec_queue, start_addr);
> + uint32_t exec_queue = execenv->exec_queue;
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + .exec_queue_id = exec_queue,
> + .address = start_addr,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size,
> vram_if_possible(fd, 0),
> +
> DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
> + xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC,
> bo_size, &sync, 1);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE,
> exec_queue,
> +NSEC_PER_SEC);
> +
> + sync.addr = ADDR_SYNC;
> + bo_sync->sync = 0;
> + xe_exec(fd, &exec);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE,
> exec_queue,
> +NSEC_PER_SEC);
> +
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> struct drm_i915_gem_execbuffer2 *execbuf = &execenv-
> >execbuf;
> struct drm_i915_gem_exec_object2 *obj = execenv->obj;
> --
> 2.43.0
All functions use bo_execenv_exec except xe2lpg_compute_preempt_exec where it uses xe_exec_sync and wait independently. So, that also needs to be updated. Until this it looks good.
Please check if xe_compute_preempt@compute-preempt passes with this change or not before merging.
LGTM,
Reviewed-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
` (4 preceding siblings ...)
2025-01-27 4:12 ` [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Dandamudi, Priyanka
@ 2025-01-27 5:13 ` Zbigniew Kempczyński
2025-01-28 10:44 ` Francois Dugast
5 siblings, 1 reply; 10+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 5:13 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Fri, Jan 24, 2025 at 12:31:40PM +0100, Francois Dugast wrote:
> When Xe is used, create the VM in LR mode as this is what the
> compute UMD does to run compute kernels. This makes those tests
> more representative of real world scenarios. A side effect is
> that user fences must be used.
>
> v2: Minimize changes, stick to xe_vm_bind_userptr_async()
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
> 1 file changed, 81 insertions(+), 17 deletions(-)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> index f1520aad4..a7d5d3e0d 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -27,6 +27,7 @@
> #define SIZE_BATCH 0x1000
> #define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> #define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> +#define ADDR_SYNC 0x010000ULL
> #define ADDR_BATCH 0x100000ULL
> #define ADDR_INPUT 0x200000ULL
> #define ADDR_OUTPUT 0x300000ULL
> @@ -43,6 +44,8 @@
> #define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
> #define OFFSET_STATE_SIP 0xFFFF0000
>
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +
> /*
> * TGP - ThreadGroup Preemption
> * WMTP - Walker Mid Thread Preemption
> @@ -58,6 +61,10 @@ struct bo_dict_entry {
> uint32_t handle;
> };
>
> +struct bo_sync {
> + uint64_t sync;
> +};
> +
> struct bo_execenv {
> int fd;
> enum intel_driver driver;
> @@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
> execenv->driver = get_intel_driver(fd);
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - execenv->vm = xe_vm_create(fd, 0, 0);
> + execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
>
> if (eci) {
> execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm,
> @@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct bo_execenv *execenv)
> igt_assert(execenv);
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - xe_vm_destroy(execenv->fd, execenv->vm);
> xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
> + xe_vm_destroy(execenv->fd, execenv->vm);
> }
What's for this reorder?
--
Zbigniew
> }
>
> @@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> uint32_t vm = execenv->vm;
> + uint32_t exec_queue = execenv->exec_queue;
> uint64_t alignment = xe_get_default_alignment(fd);
> - struct drm_xe_sync sync = { 0 };
> -
> - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> - sync.handle = syncobj_create(fd, 0);
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
>
> for (int i = 0; i < entries; i++) {
> + bo_sync->sync = 0;
> bo_dict[i].data = aligned_alloc(alignment, bo_dict[i].size);
> xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data),
> bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> + NSEC_PER_SEC);
> memset(bo_dict[i].data, 0, bo_dict[i].size);
>
> igt_debug("[i: %2d name: %20s] data: %p, addr: %16llx, size: %llx\n",
> @@ -139,7 +158,8 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
> (long long)bo_dict[i].size);
> }
>
> - syncobj_destroy(fd, sync.handle);
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> struct drm_i915_gem_exec_object2 *obj;
> @@ -177,19 +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> uint32_t vm = execenv->vm;
> - struct drm_xe_sync sync = { 0 };
> -
> - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> - sync.handle = syncobj_create(fd, 0);
> + uint32_t exec_queue = execenv->exec_queue;
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
>
> for (int i = 0; i < entries; i++) {
> + bo_sync->sync = 0;
> xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> + NSEC_PER_SEC);
> free(bo_dict[i].data);
> }
>
> - syncobj_destroy(fd, sync.handle);
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> for (int i = 0; i < entries; i++) {
> gem_close(fd, bo_dict[i].handle);
> @@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
> int fd = execenv->fd;
>
> if (execenv->driver == INTEL_DRIVER_XE) {
> - xe_exec_wait(fd, execenv->exec_queue, start_addr);
> + uint32_t exec_queue = execenv->exec_queue;
> + struct bo_sync *bo_sync;
> + size_t bo_size = sizeof(*bo_sync);
> + uint32_t bo = 0;
> + struct drm_xe_sync sync = {
> + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + .timeline_value = USER_FENCE_VALUE,
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + .exec_queue_id = exec_queue,
> + .address = start_addr,
> + };
> +
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + bo_sync = xe_bo_map(fd, bo, bo_size);
> + sync.addr = to_user_pointer(&bo_sync->sync);
> + xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC, bo_size, &sync, 1);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> +
> + sync.addr = ADDR_SYNC;
> + bo_sync->sync = 0;
> + xe_exec(fd, &exec);
> + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> +
> + munmap(bo_sync, bo_size);
> + gem_close(fd, bo);
> } else {
> struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> struct drm_i915_gem_exec_object2 *obj = execenv->obj;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
2025-01-27 4:12 ` [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Dandamudi, Priyanka
@ 2025-01-28 10:37 ` Francois Dugast
0 siblings, 0 replies; 10+ messages in thread
From: Francois Dugast @ 2025-01-28 10:37 UTC (permalink / raw)
To: Dandamudi, Priyanka; +Cc: igt-dev@lists.freedesktop.org
On Mon, Jan 27, 2025 at 05:12:24AM +0100, Dandamudi, Priyanka wrote:
>
>
> > -----Original Message-----
> > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Francois
> > Dugast
> > Sent: 24 January 2025 05:02 PM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Dugast, Francois <francois.dugast@intel.com>
> > Subject: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when
> > using Xe
> >
> > When Xe is used, create the VM in LR mode as this is what the compute UMD
> > does to run compute kernels. This makes those tests more representative of
> > real world scenarios. A side effect is that user fences must be used.
> >
> > v2: Minimize changes, stick to xe_vm_bind_userptr_async()
> >
> > Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> > ---
> > lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
> > 1 file changed, 81 insertions(+), 17 deletions(-)
> >
> > diff --git a/lib/intel_compute.c b/lib/intel_compute.c index
> > f1520aad4..a7d5d3e0d 100644
> > --- a/lib/intel_compute.c
> > +++ b/lib/intel_compute.c
> > @@ -27,6 +27,7 @@
> > #define SIZE_BATCH 0x1000
> > #define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA,
> > 0x1000)
> > #define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA,
> > 0x1000)
> > +#define ADDR_SYNC 0x010000ULL
> > #define ADDR_BATCH 0x100000ULL
> > #define ADDR_INPUT 0x200000ULL
> > #define ADDR_OUTPUT 0x300000ULL
> > @@ -43,6 +44,8 @@
> > #define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
> > #define OFFSET_STATE_SIP 0xFFFF0000
> >
> > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> > +
> > /*
> > * TGP - ThreadGroup Preemption
> > * WMTP - Walker Mid Thread Preemption
> > @@ -58,6 +61,10 @@ struct bo_dict_entry {
> > uint32_t handle;
> > };
> >
> > +struct bo_sync {
> > + uint64_t sync;
> > +};
> > +
> > struct bo_execenv {
> > int fd;
> > enum intel_driver driver;
> > @@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv
> > *execenv,
> > execenv->driver = get_intel_driver(fd);
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - execenv->vm = xe_vm_create(fd, 0, 0);
> > + execenv->vm = xe_vm_create(fd,
> > DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> >
> > if (eci) {
> > execenv->exec_queue = xe_exec_queue_create(fd,
> > execenv->vm, @@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct
> > bo_execenv *execenv)
> > igt_assert(execenv);
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - xe_vm_destroy(execenv->fd, execenv->vm);
> > xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
> > + xe_vm_destroy(execenv->fd, execenv->vm);
> > }
> > }
> >
> > @@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv
> > *execenv,
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > uint32_t vm = execenv->vm;
> > + uint32_t exec_queue = execenv->exec_queue;
> > uint64_t alignment = xe_get_default_alignment(fd);
> > - struct drm_xe_sync sync = { 0 };
> > -
> > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > - sync.handle = syncobj_create(fd, 0);
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size,
> > vram_if_possible(fd, 0),
> > +
> > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> >
> > for (int i = 0; i < entries; i++) {
> > + bo_sync->sync = 0;
> > bo_dict[i].data = aligned_alloc(alignment,
> > bo_dict[i].size);
> > xe_vm_bind_userptr_async(fd, vm, 0,
> > to_user_pointer(bo_dict[i].data),
> > bo_dict[i].addr,
> > bo_dict[i].size, &sync, 1);
> > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0,
> > NULL);
> > + xe_wait_ufence(fd, &bo_sync->sync,
> > USER_FENCE_VALUE, exec_queue,
> > + NSEC_PER_SEC);
> > memset(bo_dict[i].data, 0, bo_dict[i].size);
> >
> > igt_debug("[i: %2d name: %20s] data: %p, addr:
> > %16llx, size: %llx\n", @@ -139,7 +158,8 @@ static void
> > bo_execenv_bind(struct bo_execenv *execenv,
> > (long long)bo_dict[i].size);
> > }
> >
> > - syncobj_destroy(fd, sync.handle);
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > struct drm_i915_gem_execbuffer2 *execbuf = &execenv-
> > >execbuf;
> > struct drm_i915_gem_exec_object2 *obj; @@ -177,19
> > +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > uint32_t vm = execenv->vm;
> > - struct drm_xe_sync sync = { 0 };
> > -
> > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > - sync.handle = syncobj_create(fd, 0);
> > + uint32_t exec_queue = execenv->exec_queue;
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size,
> > vram_if_possible(fd, 0),
> > +
> > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> >
> > for (int i = 0; i < entries; i++) {
> > + bo_sync->sync = 0;
> > xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr,
> > bo_dict[i].size, &sync, 1);
> > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0,
> > NULL);
> > + xe_wait_ufence(fd, &bo_sync->sync,
> > USER_FENCE_VALUE, exec_queue,
> > + NSEC_PER_SEC);
> > free(bo_dict[i].data);
> > }
> >
> > - syncobj_destroy(fd, sync.handle);
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > for (int i = 0; i < entries; i++) {
> > gem_close(fd, bo_dict[i].handle);
> > @@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv
> > *execenv, uint64_t start_addr)
> > int fd = execenv->fd;
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - xe_exec_wait(fd, execenv->exec_queue, start_addr);
> > + uint32_t exec_queue = execenv->exec_queue;
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > + struct drm_xe_exec exec = {
> > + .num_batch_buffer = 1,
> > + .num_syncs = 1,
> > + .syncs = to_user_pointer(&sync),
> > + .exec_queue_id = exec_queue,
> > + .address = start_addr,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size,
> > vram_if_possible(fd, 0),
> > +
> > DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> > + xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC,
> > bo_size, &sync, 1);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE,
> > exec_queue,
> > +NSEC_PER_SEC);
> > +
> > + sync.addr = ADDR_SYNC;
> > + bo_sync->sync = 0;
> > + xe_exec(fd, &exec);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE,
> > exec_queue,
> > +NSEC_PER_SEC);
> > +
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > struct drm_i915_gem_execbuffer2 *execbuf = &execenv-
> > >execbuf;
> > struct drm_i915_gem_exec_object2 *obj = execenv->obj;
> > --
> > 2.43.0
>
> All functions use bo_execenv_exec except xe2lpg_compute_preempt_exec where it uses xe_exec_sync and wait independently. So, that also needs to be updated. Until this it looks good.
> Please check if xe_compute_preempt@compute-preempt passes with this change or not before merging.
> LGTM,
> Reviewed-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Thanks for the review. xe_compute_preempt@compute-preempt was failing as
reported by CI afterwards. This should be fixed in v3 which I just sent
without your RB. Let us wait for CI results.
Francois
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
2025-01-27 5:13 ` Zbigniew Kempczyński
@ 2025-01-28 10:44 ` Francois Dugast
2025-01-29 5:42 ` Zbigniew Kempczyński
0 siblings, 1 reply; 10+ messages in thread
From: Francois Dugast @ 2025-01-28 10:44 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Mon, Jan 27, 2025 at 06:13:29AM +0100, Zbigniew Kempczyński wrote:
> On Fri, Jan 24, 2025 at 12:31:40PM +0100, Francois Dugast wrote:
> > When Xe is used, create the VM in LR mode as this is what the
> > compute UMD does to run compute kernels. This makes those tests
> > more representative of real world scenarios. A side effect is
> > that user fences must be used.
> >
> > v2: Minimize changes, stick to xe_vm_bind_userptr_async()
> >
> > Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> > ---
> > lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
> > 1 file changed, 81 insertions(+), 17 deletions(-)
> >
> > diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> > index f1520aad4..a7d5d3e0d 100644
> > --- a/lib/intel_compute.c
> > +++ b/lib/intel_compute.c
> > @@ -27,6 +27,7 @@
> > #define SIZE_BATCH 0x1000
> > #define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> > #define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> > +#define ADDR_SYNC 0x010000ULL
> > #define ADDR_BATCH 0x100000ULL
> > #define ADDR_INPUT 0x200000ULL
> > #define ADDR_OUTPUT 0x300000ULL
> > @@ -43,6 +44,8 @@
> > #define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
> > #define OFFSET_STATE_SIP 0xFFFF0000
> >
> > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> > +
> > /*
> > * TGP - ThreadGroup Preemption
> > * WMTP - Walker Mid Thread Preemption
> > @@ -58,6 +61,10 @@ struct bo_dict_entry {
> > uint32_t handle;
> > };
> >
> > +struct bo_sync {
> > + uint64_t sync;
> > +};
> > +
> > struct bo_execenv {
> > int fd;
> > enum intel_driver driver;
> > @@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
> > execenv->driver = get_intel_driver(fd);
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - execenv->vm = xe_vm_create(fd, 0, 0);
> > + execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> >
> > if (eci) {
> > execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm,
> > @@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct bo_execenv *execenv)
> > igt_assert(execenv);
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - xe_vm_destroy(execenv->fd, execenv->vm);
> > xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
> > + xe_vm_destroy(execenv->fd, execenv->vm);
> > }
>
> What's for this reorder?
Sorry I sent v3 before answering your question. The exec queue is created
with a vm, see above in bo_execenv_create():
vm = xe_vm_create(...)
exec_queue = xe_exec_queue_create(vm, ...)
So the resources must be destroyed in reverse order to prevent this error:
Test assertion failure function xe_vm_destroy, file ../lib/xe/xe_ioctl.c:241:
Last errno: 16, Device or resource busy
The sequence:
xe_exec_queue_destroy()
xe_vm_destroy()
...is consistent with what we have in other tests, see:
grep xe_exec_queue_destroy tests/intel -r -A 1
Francois
>
> --
> Zbigniew
>
> > }
> >
> > @@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > uint32_t vm = execenv->vm;
> > + uint32_t exec_queue = execenv->exec_queue;
> > uint64_t alignment = xe_get_default_alignment(fd);
> > - struct drm_xe_sync sync = { 0 };
> > -
> > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > - sync.handle = syncobj_create(fd, 0);
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> >
> > for (int i = 0; i < entries; i++) {
> > + bo_sync->sync = 0;
> > bo_dict[i].data = aligned_alloc(alignment, bo_dict[i].size);
> > xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data),
> > bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> > + NSEC_PER_SEC);
> > memset(bo_dict[i].data, 0, bo_dict[i].size);
> >
> > igt_debug("[i: %2d name: %20s] data: %p, addr: %16llx, size: %llx\n",
> > @@ -139,7 +158,8 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
> > (long long)bo_dict[i].size);
> > }
> >
> > - syncobj_destroy(fd, sync.handle);
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> > struct drm_i915_gem_exec_object2 *obj;
> > @@ -177,19 +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > uint32_t vm = execenv->vm;
> > - struct drm_xe_sync sync = { 0 };
> > -
> > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > - sync.handle = syncobj_create(fd, 0);
> > + uint32_t exec_queue = execenv->exec_queue;
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> >
> > for (int i = 0; i < entries; i++) {
> > + bo_sync->sync = 0;
> > xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> > + NSEC_PER_SEC);
> > free(bo_dict[i].data);
> > }
> >
> > - syncobj_destroy(fd, sync.handle);
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > for (int i = 0; i < entries; i++) {
> > gem_close(fd, bo_dict[i].handle);
> > @@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
> > int fd = execenv->fd;
> >
> > if (execenv->driver == INTEL_DRIVER_XE) {
> > - xe_exec_wait(fd, execenv->exec_queue, start_addr);
> > + uint32_t exec_queue = execenv->exec_queue;
> > + struct bo_sync *bo_sync;
> > + size_t bo_size = sizeof(*bo_sync);
> > + uint32_t bo = 0;
> > + struct drm_xe_sync sync = {
> > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > + .timeline_value = USER_FENCE_VALUE,
> > + };
> > + struct drm_xe_exec exec = {
> > + .num_batch_buffer = 1,
> > + .num_syncs = 1,
> > + .syncs = to_user_pointer(&sync),
> > + .exec_queue_id = exec_queue,
> > + .address = start_addr,
> > + };
> > +
> > + bo_size = xe_bb_size(fd, bo_size);
> > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > + sync.addr = to_user_pointer(&bo_sync->sync);
> > + xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC, bo_size, &sync, 1);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> > +
> > + sync.addr = ADDR_SYNC;
> > + bo_sync->sync = 0;
> > + xe_exec(fd, &exec);
> > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> > +
> > + munmap(bo_sync, bo_size);
> > + gem_close(fd, bo);
> > } else {
> > struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> > struct drm_i915_gem_exec_object2 *obj = execenv->obj;
> > --
> > 2.43.0
> >
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe
2025-01-28 10:44 ` Francois Dugast
@ 2025-01-29 5:42 ` Zbigniew Kempczyński
0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-29 5:42 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Tue, Jan 28, 2025 at 11:44:50AM +0100, Francois Dugast wrote:
> On Mon, Jan 27, 2025 at 06:13:29AM +0100, Zbigniew Kempczyński wrote:
> > On Fri, Jan 24, 2025 at 12:31:40PM +0100, Francois Dugast wrote:
> > > When Xe is used, create the VM in LR mode as this is what the
> > > compute UMD does to run compute kernels. This makes those tests
> > > more representative of real world scenarios. A side effect is
> > > that user fences must be used.
> > >
> > > v2: Minimize changes, stick to xe_vm_bind_userptr_async()
> > >
> > > Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> > > ---
> > > lib/intel_compute.c | 98 +++++++++++++++++++++++++++++++++++++--------
> > > 1 file changed, 81 insertions(+), 17 deletions(-)
> > >
> > > diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> > > index f1520aad4..a7d5d3e0d 100644
> > > --- a/lib/intel_compute.c
> > > +++ b/lib/intel_compute.c
> > > @@ -27,6 +27,7 @@
> > > #define SIZE_BATCH 0x1000
> > > #define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> > > #define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
> > > +#define ADDR_SYNC 0x010000ULL
> > > #define ADDR_BATCH 0x100000ULL
> > > #define ADDR_INPUT 0x200000ULL
> > > #define ADDR_OUTPUT 0x300000ULL
> > > @@ -43,6 +44,8 @@
> > > #define XE2_ADDR_STATE_CONTEXT_DATA_BASE 0x900000ULL
> > > #define OFFSET_STATE_SIP 0xFFFF0000
> > >
> > > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> > > +
> > > /*
> > > * TGP - ThreadGroup Preemption
> > > * WMTP - Walker Mid Thread Preemption
> > > @@ -58,6 +61,10 @@ struct bo_dict_entry {
> > > uint32_t handle;
> > > };
> > >
> > > +struct bo_sync {
> > > + uint64_t sync;
> > > +};
> > > +
> > > struct bo_execenv {
> > > int fd;
> > > enum intel_driver driver;
> > > @@ -81,7 +88,7 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv,
> > > execenv->driver = get_intel_driver(fd);
> > >
> > > if (execenv->driver == INTEL_DRIVER_XE) {
> > > - execenv->vm = xe_vm_create(fd, 0, 0);
> > > + execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> > >
> > > if (eci) {
> > > execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm,
> > > @@ -107,8 +114,8 @@ static void bo_execenv_destroy(struct bo_execenv *execenv)
> > > igt_assert(execenv);
> > >
> > > if (execenv->driver == INTEL_DRIVER_XE) {
> > > - xe_vm_destroy(execenv->fd, execenv->vm);
> > > xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
> > > + xe_vm_destroy(execenv->fd, execenv->vm);
> > > }
> >
> > What's for this reorder?
>
> Sorry I sent v3 before answering your question. The exec queue is created
> with a vm, see above in bo_execenv_create():
>
> vm = xe_vm_create(...)
> exec_queue = xe_exec_queue_create(vm, ...)
>
> So the resources must be destroyed in reverse order to prevent this error:
>
> Test assertion failure function xe_vm_destroy, file ../lib/xe/xe_ioctl.c:241:
> Last errno: 16, Device or resource busy
>
> The sequence:
>
> xe_exec_queue_destroy()
> xe_vm_destroy()
>
>
> ...is consistent with what we have in other tests, see:
>
> grep xe_exec_queue_destroy tests/intel -r -A 1
Thanks, you're right. Exec queue is created on top of vm so reverse
order is correct.
--
Zbigniew
>
> Francois
>
> >
> > --
> > Zbigniew
> >
> > > }
> > >
> > > @@ -119,18 +126,30 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
> > >
> > > if (execenv->driver == INTEL_DRIVER_XE) {
> > > uint32_t vm = execenv->vm;
> > > + uint32_t exec_queue = execenv->exec_queue;
> > > uint64_t alignment = xe_get_default_alignment(fd);
> > > - struct drm_xe_sync sync = { 0 };
> > > -
> > > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > > - sync.handle = syncobj_create(fd, 0);
> > > + struct bo_sync *bo_sync;
> > > + size_t bo_size = sizeof(*bo_sync);
> > > + uint32_t bo = 0;
> > > + struct drm_xe_sync sync = {
> > > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > > + .timeline_value = USER_FENCE_VALUE,
> > > + };
> > > +
> > > + bo_size = xe_bb_size(fd, bo_size);
> > > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > > + sync.addr = to_user_pointer(&bo_sync->sync);
> > >
> > > for (int i = 0; i < entries; i++) {
> > > + bo_sync->sync = 0;
> > > bo_dict[i].data = aligned_alloc(alignment, bo_dict[i].size);
> > > xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data),
> > > bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> > > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> > > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> > > + NSEC_PER_SEC);
> > > memset(bo_dict[i].data, 0, bo_dict[i].size);
> > >
> > > igt_debug("[i: %2d name: %20s] data: %p, addr: %16llx, size: %llx\n",
> > > @@ -139,7 +158,8 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
> > > (long long)bo_dict[i].size);
> > > }
> > >
> > > - syncobj_destroy(fd, sync.handle);
> > > + munmap(bo_sync, bo_size);
> > > + gem_close(fd, bo);
> > > } else {
> > > struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> > > struct drm_i915_gem_exec_object2 *obj;
> > > @@ -177,19 +197,32 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
> > >
> > > if (execenv->driver == INTEL_DRIVER_XE) {
> > > uint32_t vm = execenv->vm;
> > > - struct drm_xe_sync sync = { 0 };
> > > -
> > > - sync.type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> > > - sync.flags = DRM_XE_SYNC_FLAG_SIGNAL;
> > > - sync.handle = syncobj_create(fd, 0);
> > > + uint32_t exec_queue = execenv->exec_queue;
> > > + struct bo_sync *bo_sync;
> > > + size_t bo_size = sizeof(*bo_sync);
> > > + uint32_t bo = 0;
> > > + struct drm_xe_sync sync = {
> > > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > > + .timeline_value = USER_FENCE_VALUE,
> > > + };
> > > +
> > > + bo_size = xe_bb_size(fd, bo_size);
> > > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > > + sync.addr = to_user_pointer(&bo_sync->sync);
> > >
> > > for (int i = 0; i < entries; i++) {
> > > + bo_sync->sync = 0;
> > > xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
> > > - syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
> > > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue,
> > > + NSEC_PER_SEC);
> > > free(bo_dict[i].data);
> > > }
> > >
> > > - syncobj_destroy(fd, sync.handle);
> > > + munmap(bo_sync, bo_size);
> > > + gem_close(fd, bo);
> > > } else {
> > > for (int i = 0; i < entries; i++) {
> > > gem_close(fd, bo_dict[i].handle);
> > > @@ -204,7 +237,38 @@ static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
> > > int fd = execenv->fd;
> > >
> > > if (execenv->driver == INTEL_DRIVER_XE) {
> > > - xe_exec_wait(fd, execenv->exec_queue, start_addr);
> > > + uint32_t exec_queue = execenv->exec_queue;
> > > + struct bo_sync *bo_sync;
> > > + size_t bo_size = sizeof(*bo_sync);
> > > + uint32_t bo = 0;
> > > + struct drm_xe_sync sync = {
> > > + .type = DRM_XE_SYNC_TYPE_USER_FENCE,
> > > + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> > > + .timeline_value = USER_FENCE_VALUE,
> > > + };
> > > + struct drm_xe_exec exec = {
> > > + .num_batch_buffer = 1,
> > > + .num_syncs = 1,
> > > + .syncs = to_user_pointer(&sync),
> > > + .exec_queue_id = exec_queue,
> > > + .address = start_addr,
> > > + };
> > > +
> > > + bo_size = xe_bb_size(fd, bo_size);
> > > + bo = xe_bo_create(fd, execenv->vm, bo_size, vram_if_possible(fd, 0),
> > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> > > + bo_sync = xe_bo_map(fd, bo, bo_size);
> > > + sync.addr = to_user_pointer(&bo_sync->sync);
> > > + xe_vm_bind_async(fd, execenv->vm, 0, bo, 0, ADDR_SYNC, bo_size, &sync, 1);
> > > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> > > +
> > > + sync.addr = ADDR_SYNC;
> > > + bo_sync->sync = 0;
> > > + xe_exec(fd, &exec);
> > > + xe_wait_ufence(fd, &bo_sync->sync, USER_FENCE_VALUE, exec_queue, NSEC_PER_SEC);
> > > +
> > > + munmap(bo_sync, bo_size);
> > > + gem_close(fd, bo);
> > > } else {
> > > struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
> > > struct drm_i915_gem_exec_object2 *obj = execenv->obj;
> > > --
> > > 2.43.0
> > >
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-01-29 5:42 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-24 11:31 [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Francois Dugast
2025-01-24 18:37 ` ✓ i915.CI.BAT: success for lib/intel_compute: Use LR mode for compute when using Xe (rev2) Patchwork
2025-01-24 19:07 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-25 1:32 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-25 7:23 ` ✗ i915.CI.Full: " Patchwork
2025-01-27 4:12 ` [PATCH i-g-t, v2] lib/intel_compute: Use LR mode for compute when using Xe Dandamudi, Priyanka
2025-01-28 10:37 ` Francois Dugast
2025-01-27 5:13 ` Zbigniew Kempczyński
2025-01-28 10:44 ` Francois Dugast
2025-01-29 5:42 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox