* [PATCH] tests/intel/xe_query: Add per drm client reset stats tests
@ 2025-02-20 20:37 Jonathan Cavitt
2025-02-20 21:15 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jonathan Cavitt @ 2025-02-20 20:37 UTC (permalink / raw)
To: igt-dev
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, joonas.lahtinen,
tvrtko.ursulin, lucas.demarchi, matthew.brost, dri-devel,
simona.vetter
Add tests that exercise the xe reset stats query. The current tests
simply output the result of the tests and assert that the reset and ban
counters properly increment.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
include/drm-uapi/xe_drm.h | 50 ++++++
tests/intel/xe_query.c | 339 ++++++++++++++++++++++++++++++++++++++
2 files changed, 389 insertions(+)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index 08e263b3b2..e4f2f0d2a6 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -700,6 +700,7 @@ struct drm_xe_device_query {
#define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6
#define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7
#define DRM_XE_DEVICE_QUERY_OA_UNITS 8
+#define DRM_XE_DEVICE_QUERY_RESET_STATS 10
/** @query: The type of data to query */
__u32 query;
@@ -1729,6 +1730,55 @@ struct drm_xe_oa_stream_info {
__u64 reserved[3];
};
+#define MAX_BAN_COUNT 50
+/**
+ * struct drm_xe_exec_queue_ban - Per drm client exec queue ban info returned
+ * from @DRM_XE_DEVICE_QUERY_RESET_STATS query. Includes the exec queue ID and
+ * all associated pagefault information, if relevant.
+ */
+struct drm_xe_exec_queue_ban {
+ /** @exec_queue_id: ID of banned exec queue */
+ __u32 exec_queue_id;
+ /**
+ * @pf_found: whether or not the ban is associated with a pagefault.
+ * If not, all pagefault data will default to 0 and will not be relevant.
+ */
+ __u8 pf_found;
+ /** @access_type: access type of associated pagefault */
+ __u8 access_type;
+ /** @fault_type: fault type of associated pagefault */
+ __u8 fault_type;
+ /** @vfid: VFID of associated pagefault */
+ __u8 vfid;
+ /** @asid: ASID of associated pagefault */
+ __u32 asid;
+ /** @pdata: PDATA of associated pagefault */
+ __u16 pdata;
+ /** @engine_class: engine class of associated pagefault */
+ __u8 engine_class;
+ /** @engine_instance: engine instance of associated pagefault */
+ __u8 engine_instance;
+ /** @fault_addr: faulted address of associated pagefault */
+ __u64 fault_addr;
+};
+
+/**
+ * struct drm_xe_query_reset_stats - Per drm client reset stats query.
+ */
+struct drm_xe_query_reset_stats {
+ /** @extensions: Pointer to the first extension struct, if any */
+ __u64 extensions;
+ /** @reset_count: Number of times the drm client has observed an engine reset */
+ __u64 reset_count;
+ /** @ban_count: number of exec queue bans saved by the drm client */
+ __u64 ban_count;
+ /**
+ * @ban_list: flexible array of struct drm_xe_exec_queue_ban, reporting all
+ * observed exec queue bans on the drm client.
+ */
+ struct drm_xe_exec_queue_ban ban_list[];
+};
+
#if defined(__cplusplus)
}
#endif
diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c
index 1566680e7a..cb4ebd8d6a 100644
--- a/tests/intel/xe_query.c
+++ b/tests/intel/xe_query.c
@@ -1077,6 +1077,342 @@ static void test_query_oa_units(int fd)
}
}
+/**
+ * The reset stats query will report -EOPNOTSUPP if the kernel is
+ * configured without CONFIG_PROC_FS. Check this before running
+ * any tests on this query.
+ */
+static bool
+query_reset_stats_supported(int fd)
+{
+ struct drm_xe_device_query query = {
+ .extensions = 0,
+ .query = DRM_XE_DEVICE_QUERY_RESET_STATS,
+ .size = 0,
+ .data = 0,
+ };
+ int ret = igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query);
+
+ if (ret)
+ igt_assert(ret == -EOPNOTSUPP);
+ return !ret;
+}
+
+/**
+ * SUBTEST: query-reset-stats
+ * Description: Display fields for reset stats query
+ *
+ * SUBTEST: multigpu-query-reset-stats
+ * Description: Display fields for reset stats query for all GPU devices
+ * Sub-category: MultiGPU
+ */
+static void test_query_reset_stats(int fd)
+{
+ struct drm_xe_query_reset_stats *qrs;
+ struct drm_xe_device_query query = {
+ .extensions = 0,
+ .query = DRM_XE_DEVICE_QUERY_RESET_STATS,
+ .size = 0,
+ .data = 0,
+ };
+ struct drm_xe_exec_queue_ban *ban;
+
+ igt_skip_on(!query_reset_stats_supported(fd));
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ qrs = malloc(query.size);
+ igt_assert(qrs);
+
+ query.data = to_user_pointer(qrs);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ igt_info("reset count: %lld\n", qrs->reset_count);
+ igt_info("ban count: %lld\n", qrs->ban_count);
+
+ for (int i = 0; i < qrs->ban_count; i++) {
+ ban = &qrs->ban_list[i];
+
+ igt_info("-------------------------------\n");
+ igt_info("exec queue ban %d\n", i);
+ igt_info("-------------------------------\n");
+ igt_info("exec_queue_id: %d\n", ban->exec_queue_id);
+ if (!ban->pf_found) {
+ igt_info("no associated pagefault\n");
+ continue;
+ }
+ igt_info("pagefault associated:\n");
+ igt_info("\tASID: %d\n"
+ "\tVFID: %d\n"
+ "\tPDATA: 0x%04x\n"
+ "\tFaulted Address: 0x%08x%08x\n"
+ "\tFaultType: %d\n"
+ "\tAccessType: %d\n"
+ "\tEngineClass: %d %s\n"
+ "\tEngineInstance: %d\n",
+ ban->asid, ban->vfid, ban->pdata,
+ upper_32_bits(ban->fault_addr),
+ lower_32_bits(ban->fault_addr),
+ ban->fault_type, ban->access_type,
+ ban->engine_class,
+ xe_engine_class_string(ban->engine_class),
+ ban->engine_instance);
+ }
+
+ free(qrs);
+}
+
+/**
+ * SUBTEST: query-reset-stats-reset
+ * Description: Assert reset stats query tracks reset count
+ *
+ * SUBTEST: multigpu-query-reset-stats-reset
+ * Description: Assert reset stats query tracks reset count for all GPU devices
+ * Sub-category: MultiGPU
+ */
+static void
+test_query_reset_stats_reset(int fd)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ struct drm_xe_query_reset_stats *qrs;
+ struct drm_xe_device_query query = {
+ .extensions = 0,
+ .query = DRM_XE_DEVICE_QUERY_RESET_STATS,
+ .size = 0,
+ .data = 0,
+ };
+ u64 resets1, resets2;
+
+ igt_skip_on(!query_reset_stats_supported(fd));
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ qrs = malloc(query.size);
+ igt_assert(qrs);
+
+ query.data = to_user_pointer(qrs);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+ resets1 = qrs->reset_count;
+ free(qrs);
+
+ query.size = 0;
+ query.data = 0;
+
+ xe_for_each_engine(fd, hwe)
+ xe_force_gt_reset_sync(fd, hwe->gt_id);
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ qrs = malloc(query.size);
+ igt_assert(qrs);
+
+ query.data = to_user_pointer(qrs);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+ resets2 = qrs->reset_count;
+ free(qrs);
+
+ igt_assert_lt(resets1, resets2);
+}
+
+static void gen_pf(int fd, struct drm_xe_engine_class_instance *eci)
+{
+ uint32_t vm;
+ uint64_t addr = 0x1a0000;
+ uint64_t sync_addr = 0x101a0000;
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+ struct drm_xe_sync sync[1] = {
+ { .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),
+ };
+ uint32_t exec_queues[1];
+ uint32_t bind_exec_queues[1];
+ size_t bo_size, sync_size;
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint64_t vm_sync;
+ uint32_t data;
+ } *data;
+ uint64_t *exec_sync;
+ int i, b;
+ int map_fd = -1;
+ int n_exec_queues = 1;
+ int n_execs = 64;
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+ bo_size = sizeof(*data) * n_execs;
+ bo_size = xe_bb_size(fd, bo_size);
+ sync_size = sizeof(*exec_sync) * n_execs;
+ sync_size = xe_bb_size(fd, sync_size);
+
+#define MAP_ADDRESS 0x00007fadeadbe000
+ data = mmap((void *)MAP_ADDRESS, bo_size, PROT_READ |
+ PROT_WRITE, MAP_SHARED | MAP_FIXED |
+ MAP_ANONYMOUS, -1, 0);
+ igt_assert(data != MAP_FAILED);
+ memset(data, 0, bo_size);
+
+#define EXEC_SYNC_ADDRESS 0x00007fbdeadbe000
+ exec_sync = mmap((void *)EXEC_SYNC_ADDRESS, sync_size, PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(exec_sync != MAP_FAILED);
+ memset(exec_sync, 0, sync_size);
+
+ for (i = 0; i < n_exec_queues; i++) {
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
+ bind_exec_queues[i] = 0;
+ }
+
+ sync[0].addr = to_user_pointer(&data[0].vm_sync);
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
+ to_user_pointer(data), addr,
+ bo_size, sync, 1);
+
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+ data[0].vm_sync = 0;
+
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
+ to_user_pointer(exec_sync), sync_addr,
+ sync_size, sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+ data[0].vm_sync = 0;
+
+ for (i = 0; i < n_execs; i++) {
+ uint64_t batch_offset = (char *)&data[i].batch - (char *)data;
+ uint64_t batch_addr = addr + batch_offset;
+ uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
+ uint64_t sdi_addr = addr + sdi_offset;
+ int e = i % n_exec_queues;
+
+ b = 0;
+
+ data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data[i].batch[b++] = sdi_addr;
+ data[i].batch[b++] = sdi_addr >> 32;
+ data[i].batch[b++] = 0xc0ffee;
+ data[i].batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data[i].batch));
+
+ sync[0].addr = sync_addr + (char *)&exec_sync[i] - (char *)exec_sync;
+
+ exec.exec_queue_id = exec_queues[e];
+ exec.address = batch_addr;
+ xe_exec(fd, &exec);
+
+ if (i + 1 != n_execs) {
+ /*
+ * Wait for exec completion and check data as
+ * userptr will likely change to different
+ * physical memory on next mmap call triggering
+ * an invalidate.
+ */
+ xe_wait_ufence(fd, &exec_sync[i],
+ USER_FENCE_VALUE, exec_queues[e],
+ NSEC_PER_SEC);
+ igt_assert_eq(data[i].data, 0xc0ffee);
+ data = mmap((void *)MAP_ADDRESS, bo_size,
+ PROT_READ | PROT_WRITE, MAP_SHARED |
+ MAP_FIXED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(data != MAP_FAILED);
+ }
+ }
+
+ for (i = n_execs - 1; i < n_execs; i++) {
+ int64_t timeout = NSEC_PER_SEC;
+
+ igt_assert_eq(__xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
+ exec_queues[i % n_exec_queues], &timeout), 0);
+ }
+
+ sync[0].addr = to_user_pointer(&data[0].vm_sync);
+ data[0].vm_sync = 0;
+ xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, sync_addr, sync_size,
+ sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+ data[0].vm_sync = 0;
+ xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr, bo_size,
+ sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+
+ for (i = 0; i < n_exec_queues; i++) {
+ xe_exec_queue_destroy(fd, exec_queues[i]);
+ if (bind_exec_queues[i])
+ xe_exec_queue_destroy(fd, bind_exec_queues[i]);
+ }
+
+ munmap(exec_sync, sync_size);
+ xe_vm_destroy(fd, vm);
+ if (map_fd != -1)
+ close(map_fd);
+}
+
+/**
+ * SUBTEST: query-reset-stats-bans
+ * Description: Assert reset stats query tracks exec queue bans
+ *
+ * SUBTEST: multigpu-query-reset-stats-bans
+ * Description: Assert reset stats query tracks exec queue bans for all GPU devices
+ * Sub-category: MultiGPU
+ */
+static void
+test_query_reset_stats_bans(int fd)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ struct drm_xe_query_reset_stats *qrs;
+ struct drm_xe_device_query query = {
+ .extensions = 0,
+ .query = DRM_XE_DEVICE_QUERY_RESET_STATS,
+ .size = 0,
+ .data = 0,
+ };
+ u64 bans1, bans2;
+
+ igt_skip_on(!query_reset_stats_supported(fd));
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ qrs = malloc(query.size);
+ igt_assert(qrs);
+
+ query.data = to_user_pointer(qrs);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+ bans1 = qrs->ban_count;
+ free(qrs);
+
+ query.size = 0;
+ query.data = 0;
+
+ xe_for_each_engine(fd, hwe)
+ gen_pf(fd, hwe);
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+
+ qrs = malloc(query.size);
+ igt_assert(qrs);
+
+ query.data = to_user_pointer(qrs);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
+ bans2 = qrs->ban_count;
+ free(qrs);
+
+ /**
+ * There is a limit to the number of bans that can be saved to the
+ * ban list, so if that limit was already reached before now, assert
+ * the list did not get any smaller.
+ */
+ if (bans1 == MAX_BAN_COUNT)
+ igt_assert_eq(bans1, bans2);
+ else
+ igt_assert_lt(bans1, bans2);
+}
+
igt_main
{
const struct {
@@ -1094,6 +1430,9 @@ igt_main
{ "query-uc-fw-version-guc", test_query_uc_fw_version_guc },
{ "query-uc-fw-version-huc", test_query_uc_fw_version_huc },
{ "query-oa-units", test_query_oa_units },
+ { "query-reset-stats", test_query_reset_stats },
+ { "query-reset-stats-reset", test_query_reset_stats_reset },
+ { "query-reset-stats-bans", test_query_reset_stats_bans },
{ "query-invalid-cs-cycles", test_engine_cycles_invalid },
{ "query-invalid-query", test_query_invalid_query },
{ "query-invalid-size", test_query_invalid_size },
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/xe_query: Add per drm client reset stats tests
2025-02-20 20:37 [PATCH] tests/intel/xe_query: Add per drm client reset stats tests Jonathan Cavitt
@ 2025-02-20 21:15 ` Patchwork
2025-02-20 21:38 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-02-20 21:15 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1082 bytes --]
== Series Details ==
Series: tests/intel/xe_query: Add per drm client reset stats tests
URL : https://patchwork.freedesktop.org/series/145192/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8245_BAT -> XEIGTPW_12645_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8245 -> IGTPW_12645
* Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2696-2c2b141845ce906e187d4aa4fee06bcd9d517415
IGTPW_12645: 12645
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2
xe-2696-2c2b141845ce906e187d4aa4fee06bcd9d517415: 2c2b141845ce906e187d4aa4fee06bcd9d517415
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/index.html
[-- Attachment #2: Type: text/html, Size: 1641 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ i915.CI.BAT: failure for tests/intel/xe_query: Add per drm client reset stats tests
2025-02-20 20:37 [PATCH] tests/intel/xe_query: Add per drm client reset stats tests Jonathan Cavitt
2025-02-20 21:15 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-02-20 21:38 ` Patchwork
2025-02-21 12:49 ` [PATCH] " Kamil Konieczny
2025-02-21 14:57 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-02-20 21:38 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4780 bytes --]
== Series Details ==
Series: tests/intel/xe_query: Add per drm client reset stats tests
URL : https://patchwork.freedesktop.org/series/145192/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8245 -> IGTPW_12645
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12645 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12645, 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_12645/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12645:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] +132 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
Known issues
------------
Here are the changes found in IGTPW_12645 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-apl-1/igt@dmabuf@all-tests.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][5] -> [DMESG-WARN][6] ([i915#13494])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-mtlp-9/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-twl-2: [PASS][7] -> [ABORT][8] ([i915#12919] / [i915#13503])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_engines:
- bat-twl-2: [PASS][9] -> [ABORT][10] ([i915#12919])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live@gt_engines.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-twl-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-arls-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8245 -> IGTPW_12645
* Linux: CI_DRM_16164 -> CI_DRM_16165
CI-20190529: 20190529
CI_DRM_16164: 8554d5b7b4fded481a85ab11d75eeb97443450e2 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16165: 2c2b141845ce906e187d4aa4fee06bcd9d517415 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12645: 12645
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12645/index.html
[-- Attachment #2: Type: text/html, Size: 5787 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] tests/intel/xe_query: Add per drm client reset stats tests
2025-02-20 20:37 [PATCH] tests/intel/xe_query: Add per drm client reset stats tests Jonathan Cavitt
2025-02-20 21:15 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-02-20 21:38 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-02-21 12:49 ` Kamil Konieczny
2025-02-21 14:57 ` ✗ Xe.CI.Full: failure for " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Kamil Konieczny @ 2025-02-21 12:49 UTC (permalink / raw)
To: Jonathan Cavitt
Cc: igt-dev, saurabhg.gupta, alex.zuo, joonas.lahtinen,
tvrtko.ursulin, lucas.demarchi, matthew.brost, dri-devel,
simona.vetter
Hi Jonathan,
On 2025-02-20 at 20:37:47 +0000, Jonathan Cavitt wrote:
> Add tests that exercise the xe reset stats query. The current tests
> simply output the result of the tests and assert that the reset and ban
> counters properly increment.
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 50 ++++++
Please split drm-uapi change into separate patch,
also give drm-next hash and/or lore.kernel.org link
See git log -- include/drm-uapi/xe_drm.h
Regards,
Kamil
> tests/intel/xe_query.c | 339 ++++++++++++++++++++++++++++++++++++++
> 2 files changed, 389 insertions(+)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index 08e263b3b2..e4f2f0d2a6 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -700,6 +700,7 @@ struct drm_xe_device_query {
> #define DRM_XE_DEVICE_QUERY_ENGINE_CYCLES 6
> #define DRM_XE_DEVICE_QUERY_UC_FW_VERSION 7
> #define DRM_XE_DEVICE_QUERY_OA_UNITS 8
> +#define DRM_XE_DEVICE_QUERY_RESET_STATS 10
> /** @query: The type of data to query */
> __u32 query;
>
> @@ -1729,6 +1730,55 @@ struct drm_xe_oa_stream_info {
> __u64 reserved[3];
> };
>
> +#define MAX_BAN_COUNT 50
> +/**
> + * struct drm_xe_exec_queue_ban - Per drm client exec queue ban info returned
> + * from @DRM_XE_DEVICE_QUERY_RESET_STATS query. Includes the exec queue ID and
> + * all associated pagefault information, if relevant.
> + */
> +struct drm_xe_exec_queue_ban {
> + /** @exec_queue_id: ID of banned exec queue */
> + __u32 exec_queue_id;
> + /**
> + * @pf_found: whether or not the ban is associated with a pagefault.
> + * If not, all pagefault data will default to 0 and will not be relevant.
> + */
> + __u8 pf_found;
> + /** @access_type: access type of associated pagefault */
> + __u8 access_type;
> + /** @fault_type: fault type of associated pagefault */
> + __u8 fault_type;
> + /** @vfid: VFID of associated pagefault */
> + __u8 vfid;
> + /** @asid: ASID of associated pagefault */
> + __u32 asid;
> + /** @pdata: PDATA of associated pagefault */
> + __u16 pdata;
> + /** @engine_class: engine class of associated pagefault */
> + __u8 engine_class;
> + /** @engine_instance: engine instance of associated pagefault */
> + __u8 engine_instance;
> + /** @fault_addr: faulted address of associated pagefault */
> + __u64 fault_addr;
> +};
> +
> +/**
> + * struct drm_xe_query_reset_stats - Per drm client reset stats query.
> + */
> +struct drm_xe_query_reset_stats {
> + /** @extensions: Pointer to the first extension struct, if any */
> + __u64 extensions;
> + /** @reset_count: Number of times the drm client has observed an engine reset */
> + __u64 reset_count;
> + /** @ban_count: number of exec queue bans saved by the drm client */
> + __u64 ban_count;
> + /**
> + * @ban_list: flexible array of struct drm_xe_exec_queue_ban, reporting all
> + * observed exec queue bans on the drm client.
> + */
> + struct drm_xe_exec_queue_ban ban_list[];
> +};
> +
> #if defined(__cplusplus)
> }
> #endif
[...]
^ permalink raw reply [flat|nested] 5+ messages in thread* ✗ Xe.CI.Full: failure for tests/intel/xe_query: Add per drm client reset stats tests
2025-02-20 20:37 [PATCH] tests/intel/xe_query: Add per drm client reset stats tests Jonathan Cavitt
` (2 preceding siblings ...)
2025-02-21 12:49 ` [PATCH] " Kamil Konieczny
@ 2025-02-21 14:57 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-02-21 14:57 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 102529 bytes --]
== Series Details ==
Series: tests/intel/xe_query: Add per drm client reset stats tests
URL : https://patchwork.freedesktop.org/series/145192/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8245_full -> XEIGTPW_12645_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12645_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12645_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_12645_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6.html
* {igt@xe_query@multigpu-query-reset-stats-bans} (NEW):
- shard-lnl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@xe_query@multigpu-query-reset-stats-bans.html
* {igt@xe_query@multigpu-query-reset-stats-reset} (NEW):
- shard-bmg: NOTRUN -> [SKIP][6] +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_query@multigpu-query-reset-stats-reset.html
- shard-dg2-set2: NOTRUN -> [SKIP][7] +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_query@multigpu-query-reset-stats-reset.html
* {igt@xe_query@query-reset-stats} (NEW):
- shard-lnl: NOTRUN -> [FAIL][8] +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@xe_query@query-reset-stats.html
* {igt@xe_query@query-reset-stats-bans} (NEW):
- shard-bmg: NOTRUN -> [FAIL][9] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_query@query-reset-stats-bans.html
- shard-dg2-set2: NOTRUN -> [FAIL][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_query@query-reset-stats-bans.html
* igt@xe_vm@bind-array-enobufs:
- shard-dg2-set2: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@xe_vm@bind-array-enobufs.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
#### Warnings ####
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][13] ([Intel XE#314]) -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_dp_link_training@non-uhbr-sst}:
- shard-dg2-set2: NOTRUN -> [SKIP][15]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-sst.html
New tests
---------
New tests have been introduced between XEIGT_8245_full and XEIGTPW_12645_full:
### New IGT tests (6) ###
* igt@xe_query@multigpu-query-reset-stats:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@xe_query@multigpu-query-reset-stats-bans:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@xe_query@multigpu-query-reset-stats-reset:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@xe_query@query-reset-stats:
- Statuses : 2 fail(s)
- Exec time: [0.01] s
* igt@xe_query@query-reset-stats-bans:
- Statuses : 3 fail(s)
- Exec time: [0.01, 0.02] s
* igt@xe_query@query-reset-stats-reset:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in XEIGTPW_12645_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2370])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#316]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3658])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +10 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +13 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#610])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#610])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +10 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2191])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2191])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#367]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +15 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +13 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455] / [Intel XE#787]) +55 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3432])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2669]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.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]) +217 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#306])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_chamelium_color@ctm-limited-range.html
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2325])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#306]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2252]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#373]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#373]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@ctm-red-to-blue@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#877]) +1 other test dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_color@ctm-red-to-blue@pipe-d-hdmi-a-3.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_color@ctm-red-to-blue@pipe-d-hdmi-a-3.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2390]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#307]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#307])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1178]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#3304])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2321]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][58] ([Intel XE#4330]) +14 other tests dmesg-warn
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1424]) +9 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#308]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#4330]) +15 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#309]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#309])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2291]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#323]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4210])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1508])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#1340])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4294])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4331])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4331])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#4331])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2244]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2244])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2-set2: [PASS][82] -> [DMESG-FAIL][83] ([Intel XE#4330])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_fbcon_fbt@fbc.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4156])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#776])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2372])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#701])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#701])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-busy-flip@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][89] ([Intel XE#4330]) +8 other tests dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_flip@2x-busy-flip@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1421]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#2316])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][93] ([Intel XE#3321]) +4 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][94] -> [FAIL][95] ([Intel XE#301]) +9 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2-set2: [PASS][96] -> [SKIP][97] ([Intel XE#310]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@kms_flip@2x-flip-vs-modeset.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][98] -> [FAIL][99] ([Intel XE#2882]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#310]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2316]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-bmg: [PASS][104] -> [DMESG-WARN][105] ([Intel XE#2955])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible.html
- shard-dg2-set2: [PASS][106] -> [DMESG-WARN][107] ([Intel XE#2955])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_flip@flip-vs-panning-interruptible.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1401] / [Intel XE#1745]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1401]) +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2312]) +8 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#656]) +11 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2311]) +30 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#651]) +38 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +42 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#656]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4141]) +13 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#651]) +15 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +28 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#653]) +35 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1470] / [Intel XE#2853])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3374] / [Intel XE#3544])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#455]) +23 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1503]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#4328])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2927])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2486])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][131] ([Intel XE#616]) +2 other tests fail
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2493])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2493])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][134] ([Intel XE#4212]) +2 other tests dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: [PASS][135] -> [DMESG-WARN][136] ([Intel XE#4330]) +24 other tests dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +9 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#870])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#870])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#908]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html
- shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#1430])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][143] ([Intel XE#1430]) +1 other test fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2392])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1129])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2505])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][147] ([Intel XE#2029])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2499])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1439] / [Intel XE#836])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2893]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1489]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +16 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1406]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2414])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2939]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3414]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2330])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1127])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1127])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2426])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1500])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#362])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][168] -> [FAIL][169] ([Intel XE#899]) +1 other test fail
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1499])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2168]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2168]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_vrr@lobf.html
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1499])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@kms_vrr@lobf.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#1126]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +12 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#3889])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#3889])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2905]) +14 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2905]) +12 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_eudebug_online@single-step.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#688]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [PASS][181] -> [SKIP][182] ([Intel XE#1392]) +5 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#1392]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2322]) +10 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1392]) +13 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#288]) +30 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#2360]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#255])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [PASS][189] -> [SKIP][190] ([Intel XE#4322]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#586])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#512])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#512])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#378])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@xe_module_load@force-load.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#2541] / [Intel XE#3573]) +14 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2427])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@xe_peer2peer@write.html
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#1061])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@xe_peer2peer@write.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][198] ([Intel XE#1173]) +1 other test fail
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#2284] / [Intel XE#366])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#2284])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2284]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_pm@s3-exec-after.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_pm@s3-exec-after.html
- shard-dg2-set2: [PASS][205] -> [DMESG-WARN][206] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_pm@s3-exec-after.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#584])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-basic:
- shard-lnl: NOTRUN -> [ABORT][208] ([Intel XE#4268])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][209] ([Intel XE#4268])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#944]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: NOTRUN -> [SKIP][211] ([Intel XE#944]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#944]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#4130])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#4130])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#4130])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#4351])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_sriov_scheduling@equal-throughput.html
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#4351])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput.html
- shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#4351])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: NOTRUN -> [ABORT][219] ([Intel XE#3075] / [Intel XE#3084])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][220] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][222] ([Intel XE#3862]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][224] ([Intel XE#3113]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][226] ([Intel XE#1727]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][228] -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][230] ([Intel XE#2291]) -> [PASS][231] +4 other tests pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2-set2: [SKIP][232] ([Intel XE#309]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [DMESG-WARN][234] ([Intel XE#2955]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-dg2-set2: [DMESG-WARN][236] ([Intel XE#2955]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_flip@2x-modeset-vs-vblank-race.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][238] ([Intel XE#2316]) -> [PASS][239] +4 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2-set2: [SKIP][240] ([Intel XE#310]) -> [PASS][241] +2 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][242] ([Intel XE#301]) -> [PASS][243] +1 other test pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [FAIL][244] ([Intel XE#3321]) -> [PASS][245] +2 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][246] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][247] +1 other test pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [INCOMPLETE][248] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][250] ([Intel XE#656]) -> [PASS][251] +5 other tests pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [DMESG-WARN][252] ([Intel XE#4330]) -> [PASS][253] +14 other tests pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][254] ([Intel XE#3012]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [DMESG-WARN][256] ([Intel XE#4091]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@kms_plane_lowres@tiling-x.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][258] ([Intel XE#718]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][260] ([Intel XE#2042] / [Intel XE#4330]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][262] ([Intel XE#1435]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][264] ([Intel XE#1522]) -> [PASS][265] +1 other test pass
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@kms_vrr@flipline.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@kms_vrr@flipline.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][266] ([Intel XE#1392]) -> [PASS][267] +2 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_threads@threads-hang-rebind:
- shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#3876]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [SKIP][270] ([Intel XE#4322]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [SKIP][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297]) ([Intel XE#378]) -> ([PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-1/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-1/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-8/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-8/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-8/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-4/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-4/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-4/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-4/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-2/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-7/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-7/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-7/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-1/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-2/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-6/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-7/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-5/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-4/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-1/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-lnl-3/igt@xe_module_load@load.html
- shard-bmg: ([PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [SKIP][346], [PASS][347], [PASS][348]) ([Intel XE#2457]) -> ([PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-7/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@xe_module_load@load.html
- shard-dg2-set2: ([SKIP][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399]) ([Intel XE#378]) -> ([PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_module_load@load.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_module_load@load.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@xe_module_load@load.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@xe_module_load@load.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@xe_module_load@load.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_module_load@load.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_module_load@load.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_module_load@load.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@xe_module_load@load.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@xe_module_load@load.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@xe_module_load@load.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@xe_module_load@load.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@xe_module_load@load.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@xe_module_load@load.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@xe_module_load@load.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@xe_module_load@load.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@xe_module_load@load.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@xe_module_load@load.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_module_load@load.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_module_load@load.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_module_load@load.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@xe_module_load@load.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@xe_module_load@load.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-433/igt@xe_module_load@load.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_module_load@load.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_module_load@load.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_module_load@load.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_module_load@load.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_module_load@load.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_module_load@load.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_module_load@load.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_module_load@load.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_module_load@load.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_module_load@load.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_module_load@load.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_module_load@load.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_module_load@load.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@xe_module_load@load.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_module_load@load.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@xe_module_load@load.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@xe_module_load@load.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_module_load@load.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@xe_module_load@load.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_module_load@load.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-434/igt@xe_module_load@load.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: [DMESG-WARN][425] ([Intel XE#4330]) -> [PASS][426] +19 other tests pass
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-8/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][427] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
- shard-bmg: [DMESG-WARN][429] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@xe_pm@s3-basic-exec.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@xe_pm@s3-basic-exec.html
#### Warnings ####
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][431] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][432] ([Intel XE#787]) +6 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][433] ([Intel XE#787]) -> [SKIP][434] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][435] ([Intel XE#2705] / [Intel XE#3113]) -> [INCOMPLETE][436] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][437] ([Intel XE#1178]) -> [SKIP][438] ([Intel XE#2341])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_content_protection@srm.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_content_protection@srm.html
- shard-dg2-set2: [FAIL][439] ([Intel XE#1178]) -> [SKIP][440] ([Intel XE#455])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_content_protection@srm.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_content_protection@srm.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][441] ([Intel XE#2291]) -> [DMESG-WARN][442] ([Intel XE#4330])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-dg2-set2: [SKIP][443] ([Intel XE#309]) -> [DMESG-WARN][444] ([Intel XE#4330])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][445] ([Intel XE#2316]) -> [FAIL][446] ([Intel XE#3321])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][447] ([Intel XE#656]) -> [SKIP][448] ([Intel XE#651]) +7 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][449] ([Intel XE#2311]) -> [SKIP][450] ([Intel XE#2312]) +7 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][451] ([Intel XE#2312]) -> [SKIP][452] ([Intel XE#2311]) +14 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][453] ([Intel XE#4141]) -> [SKIP][454] ([Intel XE#2312]) +2 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][455] ([Intel XE#2312]) -> [SKIP][456] ([Intel XE#4141]) +7 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][457] ([Intel XE#651]) -> [SKIP][458] ([Intel XE#656]) +6 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][459] ([Intel XE#656]) -> [SKIP][460] ([Intel XE#653]) +6 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][461] ([Intel XE#2313]) -> [SKIP][462] ([Intel XE#2312]) +5 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][463] ([Intel XE#653]) -> [SKIP][464] ([Intel XE#656]) +8 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][465] ([Intel XE#2312]) -> [SKIP][466] ([Intel XE#2313]) +17 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2-set2: [INCOMPLETE][467] -> [DMESG-WARN][468] ([Intel XE#4330])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_hdr@bpc-switch-dpms.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-dg2-466/igt@kms_hdr@bpc-switch-dpms.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][469] ([Intel XE#4322]) -> [SKIP][470] ([Intel XE#2833])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[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#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[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#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[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#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4322
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[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#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8245 -> IGTPW_12645
* Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2696-2c2b141845ce906e187d4aa4fee06bcd9d517415
IGTPW_12645: 12645
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2
xe-2696-2c2b141845ce906e187d4aa4fee06bcd9d517415: 2c2b141845ce906e187d4aa4fee06bcd9d517415
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12645/index.html
[-- Attachment #2: Type: text/html, Size: 117974 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-02-21 14:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-20 20:37 [PATCH] tests/intel/xe_query: Add per drm client reset stats tests Jonathan Cavitt
2025-02-20 21:15 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-02-20 21:38 ` ✗ i915.CI.BAT: failure " Patchwork
2025-02-21 12:49 ` [PATCH] " Kamil Konieczny
2025-02-21 14:57 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox