* [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
@ 2024-07-17 16:35 Francois Dugast
2024-07-17 18:15 ` ✓ Fi.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Francois Dugast @ 2024-07-17 16:35 UTC (permalink / raw)
To: igt-dev; +Cc: matthew.brost, Francois Dugast
Test parallel execution of LR and dma fence jobs on the same device.
Add the following tests:
* "exec-simple-batch-store-lr"
* "exec-simple-batch-store-dma-fence"
* "exec-spinner-interrupted-lr"
* "exec-spinner-interrupted-dma-fence"
v2: Remove useless exec queue priority, multiple job submissions
even when running without preemption, nits (Matt Brost)
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/xe_exec_mix_modes.c | 268 ++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 269 insertions(+)
create mode 100644 tests/intel/xe_exec_mix_modes.c
diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c
new file mode 100644
index 000000000..f7bb96255
--- /dev/null
+++ b/tests/intel/xe_exec_mix_modes.c
@@ -0,0 +1,268 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: Test the parallel submission of jobs in LR and dma fence modes
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: CMD submission
+ * Functionality: fault mode
+ * GPU requirements: GPU needs support for DRM_XE_VM_CREATE_FLAG_FAULT_MODE
+ */
+
+#include <fcntl.h>
+
+#include "igt.h"
+#include "lib/igt_syncobj.h"
+#include "lib/intel_reg.h"
+#include "xe_drm.h"
+
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+#include <string.h>
+
+#define FLAG_EXEC_MODE_LR (0x1 << 0)
+#define FLAG_JOB_TYPE_SIMPLE (0x1 << 1)
+
+#define NUM_INTERRUPTING_JOBS 5
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+#define ONE_SEC MS_TO_NS(1000)
+#define VM_DATA 0
+#define SPIN_DATA 1
+#define EXEC_DATA 2
+#define DATA_COUNT 3
+
+struct data {
+ struct xe_spin spin;
+ uint32_t batch[16];
+ uint64_t vm_sync;
+ uint32_t data;
+ uint64_t exec_sync;
+ uint64_t addr;
+};
+
+static void store_dword_batch(struct data *data, uint64_t addr, int value)
+{
+ int b;
+ uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
+ uint64_t batch_addr = addr + batch_offset;
+ uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
+ uint64_t sdi_addr = addr + sdi_offset;
+
+ b = 0;
+ data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data->batch[b++] = sdi_addr;
+ data->batch[b++] = sdi_addr >> 32;
+ data->batch[b++] = value;
+ data->batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data->batch));
+
+ data->addr = batch_addr;
+}
+
+enum engine_execution_mode {
+ EXEC_MODE_LR,
+ EXEC_MODE_DMA_FENCE,
+};
+
+enum job_type {
+ SIMPLE_BATCH_STORE,
+ SPINNER_INTERRUPTED,
+};
+
+static void
+run_job(int fd, struct drm_xe_engine_class_instance *hwe,
+ enum engine_execution_mode engine_execution_mode,
+ enum job_type job_type, bool allow_recursion)
+{
+ struct drm_xe_sync sync[1] = {
+ { .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ struct data *data;
+ uint32_t vm;
+ uint32_t exec_queue;
+ size_t bo_size;
+ int value = 0x123456;
+ uint64_t addr = 0x100000;
+ uint32_t bo = 0;
+ unsigned int vm_flags = 0;
+ struct xe_spin_opts spin_opts = { .preempt = true };
+ const uint64_t duration_ns = NSEC_PER_SEC / 2; /* 500ms */
+ struct timespec tv;
+ enum engine_execution_mode interrupting_engine_execution_mode;
+
+ if (engine_execution_mode == EXEC_MODE_LR) {
+ sync[0].type = DRM_XE_SYNC_TYPE_USER_FENCE;
+ sync[0].timeline_value = USER_FENCE_VALUE;
+ vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE;
+ } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
+ sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
+ sync[0].handle = syncobj_create(fd, 0);
+ }
+
+ vm = xe_vm_create(fd, vm_flags, 0);
+ bo_size = sizeof(*data) * DATA_COUNT;
+ bo_size = xe_bb_size(fd, bo_size);
+ bo = xe_bo_create(fd, vm, bo_size,
+ vram_if_possible(fd, hwe->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ data = xe_bo_map(fd, bo, bo_size);
+ if (engine_execution_mode == EXEC_MODE_LR)
+ sync[0].addr = to_user_pointer(&data[VM_DATA].vm_sync);
+ xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync[0], 1);
+
+ store_dword_batch(data, addr, value);
+ if (engine_execution_mode == EXEC_MODE_LR) {
+ xe_wait_ufence(fd, &data[VM_DATA].vm_sync, USER_FENCE_VALUE, 0, ONE_SEC);
+ sync[0].addr = addr + (char *)&data[EXEC_DATA].exec_sync - (char *)data;
+ } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_reset(fd, &sync[0].handle, 1);
+ sync[0].flags &= DRM_XE_SYNC_FLAG_SIGNAL;
+ }
+ exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
+ exec.exec_queue_id = exec_queue;
+
+ if (job_type == SPINNER_INTERRUPTED) {
+ spin_opts.addr = addr + (char *)&data[SPIN_DATA].spin - (char *)data;
+ spin_opts.ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns);
+ xe_spin_init(&data[SPIN_DATA].spin, &spin_opts);
+ if (engine_execution_mode == EXEC_MODE_LR)
+ sync[0].addr = addr + (char *)&data[SPIN_DATA].exec_sync - (char *)data;
+ exec.address = spin_opts.addr;
+ } else if (job_type == SIMPLE_BATCH_STORE) {
+ exec.address = data->addr;
+ }
+ xe_exec(fd, &exec);
+
+ if (job_type == SPINNER_INTERRUPTED) {
+ if (engine_execution_mode == EXEC_MODE_LR)
+ interrupting_engine_execution_mode = EXEC_MODE_DMA_FENCE;
+ else if (engine_execution_mode == EXEC_MODE_DMA_FENCE)
+ interrupting_engine_execution_mode = EXEC_MODE_LR;
+ xe_spin_wait_started(&data[SPIN_DATA].spin);
+ } else if (job_type == SIMPLE_BATCH_STORE) {
+ interrupting_engine_execution_mode = engine_execution_mode;
+ }
+
+ if (allow_recursion) {
+ igt_gettime(&tv);
+ for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
+ {
+ run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE, false);
+ /**
+ * Executing a SIMPLE_BATCH_STORE job takes significantly less time than
+ * duration_ns.
+ * When a spinner is running in LR mode, the interrupting job preempts it
+ * in KMD and should complete fast, shortly after starting the spinner.
+ * When a spinner is running in dma fence mode, the interrupting job waits
+ * in KMD and should complete shortly after the spinner has ended.
+ * The checks below are to verify preempting/waiting happens as expected
+ * depending on the execution mode.
+ */
+ if (engine_execution_mode == EXEC_MODE_LR)
+ igt_assert(igt_nsec_elapsed(&tv) < 0.5 * duration_ns);
+ else if (engine_execution_mode == EXEC_MODE_DMA_FENCE &&
+ job_type == SPINNER_INTERRUPTED)
+ igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
+ }
+ }
+
+ if (engine_execution_mode == EXEC_MODE_LR) {
+ if (job_type == SPINNER_INTERRUPTED)
+ xe_wait_ufence(fd, &data[SPIN_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
+ else if (job_type == SIMPLE_BATCH_STORE)
+ xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
+ } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_destroy(fd, sync[0].handle);
+ }
+
+ if (job_type == SIMPLE_BATCH_STORE)
+ igt_assert_eq(data->data, value);
+
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_exec_queue_destroy(fd, exec_queue);
+ xe_vm_destroy(fd, vm);
+}
+
+/**
+ * SUBTEST: exec-simple-batch-store-lr
+ * Description: Execute a simple batch store job in long running mode
+ *
+ * SUBTEST: exec-simple-batch-store-dma-fence
+ * Description: Execute a simple batch store job in dma fence mode
+ *
+ * SUBTEST: exec-spinner-interrupted-lr
+ * Description: Spin in long running mode then get interrupted by a simple
+ * batch store job in dma fence mode
+ *
+ * SUBTEST: exec-spinner-interrupted-dma-fence
+ * Description: Spin in dma fence mode then get interrupted by a simple
+ * batch store job in long running mode
+ */
+static void
+test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
+ unsigned int flags)
+{
+ enum engine_execution_mode engine_execution_mode;
+ enum job_type job_type;
+
+ if (flags & FLAG_EXEC_MODE_LR)
+ engine_execution_mode = EXEC_MODE_LR;
+ else
+ engine_execution_mode = EXEC_MODE_DMA_FENCE;
+
+ if (flags & FLAG_JOB_TYPE_SIMPLE)
+ job_type = SIMPLE_BATCH_STORE;
+ else
+ job_type = SPINNER_INTERRUPTED;
+
+ run_job(fd, hwe, engine_execution_mode, job_type, true);
+}
+
+igt_main
+{
+ struct drm_xe_engine_class_instance *hwe;
+ const struct section {
+ const char *name;
+ unsigned int flags;
+ } sections[] = {
+ { "simple-batch-store-lr", FLAG_JOB_TYPE_SIMPLE | FLAG_EXEC_MODE_LR },
+ { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE },
+ { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR },
+ { "spinner-interrupted-dma-fence", 0 },
+ { NULL },
+ };
+ int fd;
+
+ igt_fixture {
+ bool supports_faults;
+ int ret = 0;
+
+ fd = drm_open_driver(DRIVER_XE);
+ ret = xe_supports_faults(fd);
+ supports_faults = !ret;
+ igt_require(supports_faults);
+ }
+
+ for (const struct section *s = sections; s->name; s++) {
+ igt_subtest_f("exec-%s", s->name)
+ xe_for_each_engine(fd, hwe)
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
+ test_exec(fd, hwe, s->flags);
+ }
+
+ igt_fixture {
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 357db2723..e649466be 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -286,6 +286,7 @@ intel_xe_progs = [
'xe_exec_basic',
'xe_exec_compute_mode',
'xe_exec_fault_mode',
+ 'xe_exec_mix_modes',
'xe_exec_queue_property',
'xe_exec_reset',
'xe_exec_sip',
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
@ 2024-07-17 18:15 ` Patchwork
2024-07-17 18:22 ` ✓ CI.xeBAT: " Patchwork
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-17 18:15 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6352 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136203/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15087 -> IGTPW_11424
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/index.html
Participating hosts (39 -> 39)
------------------------------
Additional (1): bat-arlh-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11424 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213] / [i915#11671]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11343])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10197])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10196]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10206])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10209] / [i915#11681])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#10200] / [i915#11666]) +9 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_frontbuffer_tracking@basic:
- bat-arls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#7507])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_backlight@basic-brightness:
- bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#11346]) +32 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][14] ([i915#10208] / [i915#8809])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][15] ([i915#10212])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10214])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10216])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/bat-arlh-2/igt@prime_vgem@basic-write.html
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7928 -> IGTPW_11424
CI-20190529: 20190529
CI_DRM_15087: bd2a84d801982bd4a899a29916b458a8f82cb01f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11424: 11524fa52ebcb38695e428cd8a994a3b3ca6202c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/index.html
[-- Attachment #2: Type: text/html, Size: 7330 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 18:15 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-07-17 18:22 ` Patchwork
2024-07-17 18:36 ` [PATCH i-g-t,v2] " Matthew Brost
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-17 18:22 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136203/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7928_BAT -> XEIGTPW_11424_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7928 -> IGTPW_11424
* Linux: xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 -> xe-1620-bd2a84d801982bd4a899a29916b458a8f82cb01f
IGTPW_11424: 11524fa52ebcb38695e428cd8a994a3b3ca6202c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
xe-1620-bd2a84d801982bd4a899a29916b458a8f82cb01f: bd2a84d801982bd4a899a29916b458a8f82cb01f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/index.html
[-- Attachment #2: Type: text/html, Size: 1740 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t,v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 18:15 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-07-17 18:22 ` ✓ CI.xeBAT: " Patchwork
@ 2024-07-17 18:36 ` Matthew Brost
2024-07-18 0:59 ` ✗ CI.xeFULL: failure for " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2024-07-17 18:36 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Wed, Jul 17, 2024 at 06:35:19PM +0200, Francois Dugast wrote:
> Test parallel execution of LR and dma fence jobs on the same device.
>
> Add the following tests:
> * "exec-simple-batch-store-lr"
> * "exec-simple-batch-store-dma-fence"
> * "exec-spinner-interrupted-lr"
> * "exec-spinner-interrupted-dma-fence"
>
> v2: Remove useless exec queue priority, multiple job submissions
> even when running without preemption, nits (Matt Brost)
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> tests/intel/xe_exec_mix_modes.c | 268 ++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 269 insertions(+)
> create mode 100644 tests/intel/xe_exec_mix_modes.c
>
> diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c
> new file mode 100644
> index 000000000..f7bb96255
> --- /dev/null
> +++ b/tests/intel/xe_exec_mix_modes.c
> @@ -0,0 +1,268 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test the parallel submission of jobs in LR and dma fence modes
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: CMD submission
> + * Functionality: fault mode
> + * GPU requirements: GPU needs support for DRM_XE_VM_CREATE_FLAG_FAULT_MODE
> + */
> +
> +#include <fcntl.h>
> +
> +#include "igt.h"
> +#include "lib/igt_syncobj.h"
> +#include "lib/intel_reg.h"
> +#include "xe_drm.h"
> +
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +#include "xe/xe_spin.h"
> +#include <string.h>
> +
> +#define FLAG_EXEC_MODE_LR (0x1 << 0)
> +#define FLAG_JOB_TYPE_SIMPLE (0x1 << 1)
> +
> +#define NUM_INTERRUPTING_JOBS 5
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +#define ONE_SEC MS_TO_NS(1000)
> +#define VM_DATA 0
> +#define SPIN_DATA 1
> +#define EXEC_DATA 2
> +#define DATA_COUNT 3
> +
> +struct data {
> + struct xe_spin spin;
> + uint32_t batch[16];
> + uint64_t vm_sync;
> + uint32_t data;
> + uint64_t exec_sync;
> + uint64_t addr;
> +};
> +
> +static void store_dword_batch(struct data *data, uint64_t addr, int value)
> +{
> + int b;
> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
> + uint64_t batch_addr = addr + batch_offset;
> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
> + uint64_t sdi_addr = addr + sdi_offset;
> +
> + b = 0;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = sdi_addr;
> + data->batch[b++] = sdi_addr >> 32;
> + data->batch[b++] = value;
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + data->addr = batch_addr;
> +}
> +
> +enum engine_execution_mode {
> + EXEC_MODE_LR,
> + EXEC_MODE_DMA_FENCE,
> +};
> +
> +enum job_type {
> + SIMPLE_BATCH_STORE,
> + SPINNER_INTERRUPTED,
> +};
> +
> +static void
> +run_job(int fd, struct drm_xe_engine_class_instance *hwe,
> + enum engine_execution_mode engine_execution_mode,
> + enum job_type job_type, bool allow_recursion)
> +{
> + struct drm_xe_sync sync[1] = {
> + { .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> + struct data *data;
> + uint32_t vm;
> + uint32_t exec_queue;
> + size_t bo_size;
> + int value = 0x123456;
> + uint64_t addr = 0x100000;
> + uint32_t bo = 0;
> + unsigned int vm_flags = 0;
> + struct xe_spin_opts spin_opts = { .preempt = true };
> + const uint64_t duration_ns = NSEC_PER_SEC / 2; /* 500ms */
> + struct timespec tv;
> + enum engine_execution_mode interrupting_engine_execution_mode;
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + sync[0].type = DRM_XE_SYNC_TYPE_USER_FENCE;
> + sync[0].timeline_value = USER_FENCE_VALUE;
> + vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> + sync[0].handle = syncobj_create(fd, 0);
> + }
> +
> + vm = xe_vm_create(fd, vm_flags, 0);
> + bo_size = sizeof(*data) * DATA_COUNT;
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, vm, bo_size,
> + vram_if_possible(fd, hwe->gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + data = xe_bo_map(fd, bo, bo_size);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = to_user_pointer(&data[VM_DATA].vm_sync);
> + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync[0], 1);
> +
> + store_dword_batch(data, addr, value);
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + xe_wait_ufence(fd, &data[VM_DATA].vm_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + sync[0].addr = addr + (char *)&data[EXEC_DATA].exec_sync - (char *)data;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_reset(fd, &sync[0].handle, 1);
> + sync[0].flags &= DRM_XE_SYNC_FLAG_SIGNAL;
> + }
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + exec.exec_queue_id = exec_queue;
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + spin_opts.addr = addr + (char *)&data[SPIN_DATA].spin - (char *)data;
> + spin_opts.ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns);
> + xe_spin_init(&data[SPIN_DATA].spin, &spin_opts);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = addr + (char *)&data[SPIN_DATA].exec_sync - (char *)data;
> + exec.address = spin_opts.addr;
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + exec.address = data->addr;
> + }
> + xe_exec(fd, &exec);
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + if (engine_execution_mode == EXEC_MODE_LR)
> + interrupting_engine_execution_mode = EXEC_MODE_DMA_FENCE;
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE)
> + interrupting_engine_execution_mode = EXEC_MODE_LR;
> + xe_spin_wait_started(&data[SPIN_DATA].spin);
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + interrupting_engine_execution_mode = engine_execution_mode;
> + }
> +
> + if (allow_recursion) {
> + igt_gettime(&tv);
> + for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
> + {
> + run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE, false);
> + /**
> + * Executing a SIMPLE_BATCH_STORE job takes significantly less time than
> + * duration_ns.
> + * When a spinner is running in LR mode, the interrupting job preempts it
> + * in KMD and should complete fast, shortly after starting the spinner.
> + * When a spinner is running in dma fence mode, the interrupting job waits
> + * in KMD and should complete shortly after the spinner has ended.
> + * The checks below are to verify preempting/waiting happens as expected
> + * depending on the execution mode.
> + */
> + if (engine_execution_mode == EXEC_MODE_LR)
> + igt_assert(igt_nsec_elapsed(&tv) < 0.5 * duration_ns);
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE &&
> + job_type == SPINNER_INTERRUPTED)
> + igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
> + }
> + }
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + if (job_type == SPINNER_INTERRUPTED)
> + xe_wait_ufence(fd, &data[SPIN_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + else if (job_type == SIMPLE_BATCH_STORE)
> + xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_destroy(fd, sync[0].handle);
> + }
> +
> + if (job_type == SIMPLE_BATCH_STORE)
> + igt_assert_eq(data->data, value);
> +
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> +/**
> + * SUBTEST: exec-simple-batch-store-lr
> + * Description: Execute a simple batch store job in long running mode
> + *
> + * SUBTEST: exec-simple-batch-store-dma-fence
> + * Description: Execute a simple batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-lr
> + * Description: Spin in long running mode then get interrupted by a simple
> + * batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-dma-fence
> + * Description: Spin in dma fence mode then get interrupted by a simple
> + * batch store job in long running mode
> + */
> +static void
> +test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
> + unsigned int flags)
> +{
> + enum engine_execution_mode engine_execution_mode;
> + enum job_type job_type;
> +
> + if (flags & FLAG_EXEC_MODE_LR)
> + engine_execution_mode = EXEC_MODE_LR;
> + else
> + engine_execution_mode = EXEC_MODE_DMA_FENCE;
> +
> + if (flags & FLAG_JOB_TYPE_SIMPLE)
> + job_type = SIMPLE_BATCH_STORE;
> + else
> + job_type = SPINNER_INTERRUPTED;
> +
> + run_job(fd, hwe, engine_execution_mode, job_type, true);
> +}
> +
> +igt_main
> +{
> + struct drm_xe_engine_class_instance *hwe;
> + const struct section {
> + const char *name;
> + unsigned int flags;
> + } sections[] = {
> + { "simple-batch-store-lr", FLAG_JOB_TYPE_SIMPLE | FLAG_EXEC_MODE_LR },
> + { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE },
> + { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR },
> + { "spinner-interrupted-dma-fence", 0 },
> + { NULL },
> + };
> + int fd;
> +
> + igt_fixture {
> + bool supports_faults;
> + int ret = 0;
> +
> + fd = drm_open_driver(DRIVER_XE);
> + ret = xe_supports_faults(fd);
> + supports_faults = !ret;
> + igt_require(supports_faults);
> + }
> +
> + for (const struct section *s = sections; s->name; s++) {
> + igt_subtest_f("exec-%s", s->name)
> + xe_for_each_engine(fd, hwe)
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
> + test_exec(fd, hwe, s->flags);
> + }
> +
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 357db2723..e649466be 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -286,6 +286,7 @@ intel_xe_progs = [
> 'xe_exec_basic',
> 'xe_exec_compute_mode',
> 'xe_exec_fault_mode',
> + 'xe_exec_mix_modes',
> 'xe_exec_queue_property',
> 'xe_exec_reset',
> 'xe_exec_sip',
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (2 preceding siblings ...)
2024-07-17 18:36 ` [PATCH i-g-t,v2] " Matthew Brost
@ 2024-07-18 0:59 ` Patchwork
2024-07-18 7:22 ` ✗ Fi.CI.IGT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-18 0:59 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45974 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136203/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7928_full -> XEIGTPW_11424_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11424_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11424_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 (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11424_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@kms_pm_rpm@i2c.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@kms_pm_rpm@i2c.html
* {igt@xe_exec_mix_modes@exec-spinner-interrupted-lr} (NEW):
- shard-lnl: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer:
- shard-dg2-set2: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html
New tests
---------
New tests have been introduced between XEIGT_7928_full and XEIGTPW_11424_full:
### New IGT tests (4) ###
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- Statuses : 1 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_11424_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][6] ([Intel XE#911]) +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][7] ([Intel XE#1426]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#1659]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1467])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#607])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_joiner@basic:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#346])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@kms_big_joiner@basic.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1399]) +11 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][21] ([Intel XE#616]) +9 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#1252])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#314] / [Intel XE#599])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#314]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373]) +7 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#307])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#599]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1413]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#323]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#309]) +6 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195]) +2 other tests incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-436/igt@kms_cursor_legacy@forked-bo@all-pipes.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#307])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1138] / [Intel XE#1201])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +10 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][41] ([Intel XE#886]) +2 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#1551]) +5 other tests dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1397] / [Intel XE#1745])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1397])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1401]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [i915#5274])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +18 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#653]) +16 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#658])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656]) +36 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1470])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-lnl: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#324])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#455]) +20 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#498]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#305]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1122] / [Intel XE#1201])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#718])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][65] ([Intel XE#1430])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1129] / [Intel XE#1201])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1439]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-6/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#327]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1437]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#374] / [Intel XE#599])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#374]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1435])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#899])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@kms_writeback@writeback-check-output:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#756])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-7/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1091] / [Intel XE#1201])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1123] / [Intel XE#1201])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1126] / [Intel XE#1201])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#1600])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#688]) +11 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#1600])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][87] -> [TIMEOUT][88] ([Intel XE#1473] / [Intel XE#392]) +1 other test timeout
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@xe_evict@evict-threads-large.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1392]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1201] / [Intel XE#288]) +18 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* {igt@xe_exec_mix_modes@exec-simple-batch-store-lr} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1201]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_gt_freq@freq_suspend:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#584])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-7/igt@xe_gt_freq@freq_suspend.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1201] / [Intel XE#512])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1416])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#977])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-5/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#979])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#366]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#1551] / [Intel XE#569]) +1 other test dmesg-warn
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
- shard-lnl: NOTRUN -> [INCOMPLETE][100] ([Intel XE#1358] / [Intel XE#1960])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-7/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#1162] / [Intel XE#1941])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [PASS][103] -> [DMESG-WARN][104] ([Intel XE#2019]) +2 other tests dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_pm@s4-d3hot-basic-exec.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1201] / [Intel XE#944])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#944]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_vm@large-userptr-split-binds-536870912:
- shard-lnl: NOTRUN -> [INCOMPLETE][107] ([Intel XE#1330])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-3/igt@xe_vm@large-userptr-split-binds-536870912.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: NOTRUN -> [DMESG-WARN][108] ([Intel XE#1760])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-dg2-set2: [DMESG-WARN][109] -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-0.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][111] ([Intel XE#1162]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [DMESG-WARN][113] ([Intel XE#2019]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][115] ([Intel XE#324]) -> [PASS][116] +2 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_plane@plane-position-covered.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@kms_plane@plane-position-covered.html
* {igt@kms_plane@plane-position-covered@pipe-b-plane-3}:
- shard-lnl: [DMESG-WARN][117] ([Intel XE#324]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-lnl: [FAIL][119] ([Intel XE#1649]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [FAIL][121] ([Intel XE#899]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [FAIL][123] ([Intel XE#1000]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][125] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][127] ([Intel XE#2105]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][131] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [INCOMPLETE][133] ([Intel XE#1195] / [Intel XE#569]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][135] ([Intel XE#2019] / [Intel XE#2280]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@query-engines:
- shard-lnl: [INCOMPLETE][137] ([Intel XE#1960]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-1/igt@xe_query@query-engines.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-8/igt@xe_query@query-engines.html
* igt@xe_vm@mmap-style-bind-either-side-partial-hammer:
- shard-dg2-set2: [ABORT][139] -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_vm@mmap-style-bind-either-side-partial-hammer.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-466/igt@xe_vm@mmap-style-bind-either-side-partial-hammer.html
* igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer:
- shard-dg2-set2: [ABORT][141] ([Intel XE#2268]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][143] ([Intel XE#616]) -> [DMESG-FAIL][144] ([Intel XE#1551]) +1 other test dmesg-fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][145] ([Intel XE#2019]) -> [INCOMPLETE][146] ([Intel XE#1195] / [Intel XE#2019])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-lnl: [INCOMPLETE][147] ([Intel XE#1960]) -> [SKIP][148] ([Intel XE#651])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][149] ([Intel XE#1909]) -> [SKIP][150] ([Intel XE#736])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][152] ([Intel XE#1201] / [Intel XE#362])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_reset@parallel-close-fd:
- shard-dg2-set2: [ABORT][153] ([Intel XE#2273] / [Intel XE#2309]) -> [ABORT][154] ([Intel XE#2271] / [Intel XE#2309])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_exec_reset@parallel-close-fd.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [FAIL][155] ([Intel XE#1999]) -> [SKIP][156] ([Intel XE#1192] / [Intel XE#1201])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1130] / [Intel XE#1201]) -> [DMESG-WARN][158] ([Intel XE#1760])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[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#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1909
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2268
[Intel XE#2271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2271
[Intel XE#2273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2273
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2309
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[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#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_7928 -> IGTPW_11424
* Linux: xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 -> xe-1620-bd2a84d801982bd4a899a29916b458a8f82cb01f
IGTPW_11424: 11524fa52ebcb38695e428cd8a994a3b3ca6202c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
xe-1620-bd2a84d801982bd4a899a29916b458a8f82cb01f: bd2a84d801982bd4a899a29916b458a8f82cb01f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11424/index.html
[-- Attachment #2: Type: text/html, Size: 54778 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (3 preceding siblings ...)
2024-07-18 0:59 ` ✗ CI.xeFULL: failure for " Patchwork
@ 2024-07-18 7:22 ` Patchwork
2024-07-18 13:05 ` [PATCH i-g-t, v2] " Kamil Konieczny
2024-08-04 17:15 ` [PATCH i-g-t,v2] " Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-18 7:22 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92836 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136203/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15087_full -> IGTPW_11424_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11424_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11424_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11424_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@dirty-switch@vcs1:
- shard-mtlp: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-mtlp-2/igt@gem_ctx_isolation@dirty-switch@vcs1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-8/igt@gem_ctx_isolation@dirty-switch@vcs1.html
* igt@gem_lmem_swapping@parallel-random-engines@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-5/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg2: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-4/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [DMESG-WARN][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
Known issues
------------
Here are the changes found in IGTPW_11424_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +12 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][15] ([i915#7742]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#6335])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [PASS][23] -> [FAIL][24] ([i915#6268])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4036])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +2 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: NOTRUN -> [FAIL][40] ([i915#2842]) +2 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-tglu: [PASS][41] -> [FAIL][42] ([i915#2842]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-11/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +16 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-15/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [PASS][52] -> [FAIL][53] ([i915#10378])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@massive:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk3/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@gem_lmem_swapping@verify.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#284])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gem_pread@bench.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@gem_pread@bench.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][69] ([i915#2658])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-3/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +11 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4879])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3281] / [i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3281] / [i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-15/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: NOTRUN -> [ABORT][95] ([i915#9820])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][96] ([i915#9820])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][97] -> [ABORT][98] ([i915#10131] / [i915#10887] / [i915#9820])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#7178])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#7091])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#8399])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#6621]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#6621])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#8925])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8925])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#6245])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6188])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-3/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6188])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#7707])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#7707])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4215] / [i915#5190])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3826])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8709]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +9 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#10656])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#10656])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#6095]) +95 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +149 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +11 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +75 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +23 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][136] +286 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#11616] / [i915#7213])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#7213]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][140] +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][141] +16 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +15 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#9424])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3116]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3299])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-15/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8814])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#11453])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#11453])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#11453]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11453])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][164] +37 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#4103]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#9723])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#9723])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dsc@dsc-basic:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840] / [i915#9159])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#2065] / [i915#4854])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-9/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#4854])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4854])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#1839]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#1839])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_feature_discovery@display-4x.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#4881]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_fence_pin_leak.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4881])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3637] / [i915#3966])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [FAIL][182] ([i915#79])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3637]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3637]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#9934]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2:
- shard-dg2: NOTRUN -> [FAIL][186] ([i915#2122]) +2 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672]) +6 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#1825]) +13 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#8708]) +15 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][197] -> [FAIL][198] ([i915#11279])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#5439])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#8708]) +10 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5354]) +31 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][202] +30 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#1825]) +52 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +17 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +35 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][206] +97 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][207] +43 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +17 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#433])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [PASS][210] -> [SKIP][211] ([i915#433])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][216] ([i915#10647]) +1 other test fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8806])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#6953])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#6953] / [i915#9423])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9423]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5176]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#9423]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9423]) +9 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9423]) +19 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5176] / [i915#9423]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5235]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235] / [i915#9423]) +11 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5235]) +5 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +19 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#5354])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9685])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9293])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#5978])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3361])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9340])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#8430])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9519]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][240] -> [SKIP][241] ([i915#9519]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#9519]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#6524])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#6524])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@kms_prime@d3hot.html
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#6524] / [i915#6805])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#11520]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#11520]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#11520]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#11520]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9808]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-3/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#9683])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9732]) +9 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9732]) +20 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#9688]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +14 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +31 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#5289]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#5289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#11131] / [i915#5190])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#5289]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3555]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_setmode@basic-clone-single-crtc.html
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3555]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8809])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#8623])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#8623])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][268] -> [FAIL][269] ([i915#9196])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][270] ([i915#9196])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9906]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#8808] / [i915#9906])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#2437])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#2437])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#2437] / [i915#9412])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2437] / [i915#9412])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-mtlp-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#2434])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#2434])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#2435])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#8850])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#8850])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][284] -> [FAIL][285] ([i915#4349])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#8516])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#8516])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3291] / [i915#3708])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-3/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3291] / [i915#3708])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-16/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#3708] / [i915#4077]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-13/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#9917])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9917])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][295] ([i915#9781])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk3/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][296] ([i915#9781])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [ABORT][297] ([i915#5507]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-5/igt@device_reset@unbind-reset-rebind.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html
* igt@gem_ctx_isolation@nonpriv@vcs0:
- shard-dg2: [INCOMPLETE][299] -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-6/igt@gem_ctx_isolation@nonpriv@vcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@gem_ctx_isolation@nonpriv@vcs0.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-tglu: [ABORT][301] -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-5/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-3/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-glk: [FAIL][305] ([i915#2842]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-glk1/igt@gem_exec_fair@basic-pace@vcs0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [FAIL][307] ([i915#10378]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-4/igt@gem_lmem_swapping@basic@lmem0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][309] ([i915#9820]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][311] ([i915#9820]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][313] ([i915#5956]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
- shard-tglu: [FAIL][315] -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-tglu: [DMESG-WARN][317] ([i915#10166] / [i915#1982]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-8/igt@kms_cursor_legacy@torture-move@pipe-a.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-6/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][319] -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-glk7/igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-glk7/igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1:
- shard-snb: [FAIL][321] ([i915#2122]) -> [PASS][322] +2 other tests pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-snb: [SKIP][323] -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][325] ([i915#9519]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][327] ([i915#9519]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][329] ([i915#9196]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][331] ([i915#4817]) -> [FAIL][332] ([i915#10031] / [i915#11279])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][333] ([i915#9433]) -> [SKIP][334] ([i915#9424])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg1-18/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][335] ([i915#11453] / [i915#3359]) -> [SKIP][336] ([i915#11453])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][337] ([i915#10433] / [i915#3458]) -> [SKIP][338] ([i915#3458]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][339] ([i915#4816]) -> [SKIP][340] ([i915#4070] / [i915#4816])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][341] ([i915#1072] / [i915#9732]) -> [SKIP][342] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-7/igt@kms_psr@fbc-psr2-cursor-render.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: [SKIP][343] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][344] ([i915#1072] / [i915#9732]) +7 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][345] ([i915#7484]) -> [FAIL][346] ([i915#9100])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15087/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7928 -> IGTPW_11424
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15087: bd2a84d801982bd4a899a29916b458a8f82cb01f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11424: 11524fa52ebcb38695e428cd8a994a3b3ca6202c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11424/index.html
[-- Attachment #2: Type: text/html, Size: 115575 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (4 preceding siblings ...)
2024-07-18 7:22 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-07-18 13:05 ` Kamil Konieczny
2024-08-04 17:15 ` [PATCH i-g-t,v2] " Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2024-07-18 13:05 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, matthew.brost
Hi Francois,
On 2024-07-17 at 18:35:19 +0200, Francois Dugast wrote:
> Test parallel execution of LR and dma fence jobs on the same device.
Could you explain 'LR' here? Like: LR (Long Running)
I have few more nits, see below.
>
> Add the following tests:
> * "exec-simple-batch-store-lr"
> * "exec-simple-batch-store-dma-fence"
> * "exec-spinner-interrupted-lr"
> * "exec-spinner-interrupted-dma-fence"
>
> v2: Remove useless exec queue priority, multiple job submissions
> even when running without preemption, nits (Matt Brost)
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> tests/intel/xe_exec_mix_modes.c | 268 ++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 269 insertions(+)
> create mode 100644 tests/intel/xe_exec_mix_modes.c
>
> diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c
> new file mode 100644
> index 000000000..f7bb96255
> --- /dev/null
> +++ b/tests/intel/xe_exec_mix_modes.c
> @@ -0,0 +1,268 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test the parallel submission of jobs in LR and dma fence modes
imho better:
* TEST: Test the parallel submission of jobs in long running and dma fence modes
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: CMD submission
> + * Functionality: fault mode
> + * GPU requirements: GPU needs support for DRM_XE_VM_CREATE_FLAG_FAULT_MODE
----------------------- ^^^^^^^^^
Here we write specific GPUs, this looks like description or a comment.
I did a grep and it seems it's use is inconsistent.
imho something like this looks better:
* GPU requirement: PVC, ATS-M
* Description: GPU needs support for DRM_XE_VM_CREATE_FLAG_FAULT_MODE
> + */
> +
> +#include <fcntl.h>
> +
> +#include "igt.h"
> +#include "lib/igt_syncobj.h"
> +#include "lib/intel_reg.h"
> +#include "xe_drm.h"
> +
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +#include "xe/xe_spin.h"
> +#include <string.h>
-------------^^^^^^^^
This include <string.h> should be after <fcntl.h> above.
Regards,
Kamil
> +
> +#define FLAG_EXEC_MODE_LR (0x1 << 0)
> +#define FLAG_JOB_TYPE_SIMPLE (0x1 << 1)
> +
> +#define NUM_INTERRUPTING_JOBS 5
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +#define ONE_SEC MS_TO_NS(1000)
> +#define VM_DATA 0
> +#define SPIN_DATA 1
> +#define EXEC_DATA 2
> +#define DATA_COUNT 3
> +
> +struct data {
> + struct xe_spin spin;
> + uint32_t batch[16];
> + uint64_t vm_sync;
> + uint32_t data;
> + uint64_t exec_sync;
> + uint64_t addr;
> +};
> +
> +static void store_dword_batch(struct data *data, uint64_t addr, int value)
> +{
> + int b;
> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
> + uint64_t batch_addr = addr + batch_offset;
> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
> + uint64_t sdi_addr = addr + sdi_offset;
> +
> + b = 0;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = sdi_addr;
> + data->batch[b++] = sdi_addr >> 32;
> + data->batch[b++] = value;
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + data->addr = batch_addr;
> +}
> +
> +enum engine_execution_mode {
> + EXEC_MODE_LR,
> + EXEC_MODE_DMA_FENCE,
> +};
> +
> +enum job_type {
> + SIMPLE_BATCH_STORE,
> + SPINNER_INTERRUPTED,
> +};
> +
> +static void
> +run_job(int fd, struct drm_xe_engine_class_instance *hwe,
> + enum engine_execution_mode engine_execution_mode,
> + enum job_type job_type, bool allow_recursion)
> +{
> + struct drm_xe_sync sync[1] = {
> + { .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> + struct data *data;
> + uint32_t vm;
> + uint32_t exec_queue;
> + size_t bo_size;
> + int value = 0x123456;
> + uint64_t addr = 0x100000;
> + uint32_t bo = 0;
> + unsigned int vm_flags = 0;
> + struct xe_spin_opts spin_opts = { .preempt = true };
> + const uint64_t duration_ns = NSEC_PER_SEC / 2; /* 500ms */
> + struct timespec tv;
> + enum engine_execution_mode interrupting_engine_execution_mode;
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + sync[0].type = DRM_XE_SYNC_TYPE_USER_FENCE;
> + sync[0].timeline_value = USER_FENCE_VALUE;
> + vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> + sync[0].handle = syncobj_create(fd, 0);
> + }
> +
> + vm = xe_vm_create(fd, vm_flags, 0);
> + bo_size = sizeof(*data) * DATA_COUNT;
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, vm, bo_size,
> + vram_if_possible(fd, hwe->gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + data = xe_bo_map(fd, bo, bo_size);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = to_user_pointer(&data[VM_DATA].vm_sync);
> + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync[0], 1);
> +
> + store_dword_batch(data, addr, value);
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + xe_wait_ufence(fd, &data[VM_DATA].vm_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + sync[0].addr = addr + (char *)&data[EXEC_DATA].exec_sync - (char *)data;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_reset(fd, &sync[0].handle, 1);
> + sync[0].flags &= DRM_XE_SYNC_FLAG_SIGNAL;
> + }
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + exec.exec_queue_id = exec_queue;
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + spin_opts.addr = addr + (char *)&data[SPIN_DATA].spin - (char *)data;
> + spin_opts.ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns);
> + xe_spin_init(&data[SPIN_DATA].spin, &spin_opts);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = addr + (char *)&data[SPIN_DATA].exec_sync - (char *)data;
> + exec.address = spin_opts.addr;
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + exec.address = data->addr;
> + }
> + xe_exec(fd, &exec);
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + if (engine_execution_mode == EXEC_MODE_LR)
> + interrupting_engine_execution_mode = EXEC_MODE_DMA_FENCE;
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE)
> + interrupting_engine_execution_mode = EXEC_MODE_LR;
> + xe_spin_wait_started(&data[SPIN_DATA].spin);
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + interrupting_engine_execution_mode = engine_execution_mode;
> + }
> +
> + if (allow_recursion) {
> + igt_gettime(&tv);
> + for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
> + {
> + run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE, false);
> + /**
> + * Executing a SIMPLE_BATCH_STORE job takes significantly less time than
> + * duration_ns.
> + * When a spinner is running in LR mode, the interrupting job preempts it
> + * in KMD and should complete fast, shortly after starting the spinner.
> + * When a spinner is running in dma fence mode, the interrupting job waits
> + * in KMD and should complete shortly after the spinner has ended.
> + * The checks below are to verify preempting/waiting happens as expected
> + * depending on the execution mode.
> + */
> + if (engine_execution_mode == EXEC_MODE_LR)
> + igt_assert(igt_nsec_elapsed(&tv) < 0.5 * duration_ns);
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE &&
> + job_type == SPINNER_INTERRUPTED)
> + igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
> + }
> + }
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + if (job_type == SPINNER_INTERRUPTED)
> + xe_wait_ufence(fd, &data[SPIN_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + else if (job_type == SIMPLE_BATCH_STORE)
> + xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_destroy(fd, sync[0].handle);
> + }
> +
> + if (job_type == SIMPLE_BATCH_STORE)
> + igt_assert_eq(data->data, value);
> +
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> +/**
> + * SUBTEST: exec-simple-batch-store-lr
> + * Description: Execute a simple batch store job in long running mode
> + *
> + * SUBTEST: exec-simple-batch-store-dma-fence
> + * Description: Execute a simple batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-lr
> + * Description: Spin in long running mode then get interrupted by a simple
> + * batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-dma-fence
> + * Description: Spin in dma fence mode then get interrupted by a simple
> + * batch store job in long running mode
> + */
> +static void
> +test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
> + unsigned int flags)
> +{
> + enum engine_execution_mode engine_execution_mode;
> + enum job_type job_type;
> +
> + if (flags & FLAG_EXEC_MODE_LR)
> + engine_execution_mode = EXEC_MODE_LR;
> + else
> + engine_execution_mode = EXEC_MODE_DMA_FENCE;
> +
> + if (flags & FLAG_JOB_TYPE_SIMPLE)
> + job_type = SIMPLE_BATCH_STORE;
> + else
> + job_type = SPINNER_INTERRUPTED;
> +
> + run_job(fd, hwe, engine_execution_mode, job_type, true);
> +}
> +
> +igt_main
> +{
> + struct drm_xe_engine_class_instance *hwe;
> + const struct section {
> + const char *name;
> + unsigned int flags;
> + } sections[] = {
> + { "simple-batch-store-lr", FLAG_JOB_TYPE_SIMPLE | FLAG_EXEC_MODE_LR },
> + { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE },
> + { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR },
> + { "spinner-interrupted-dma-fence", 0 },
> + { NULL },
> + };
> + int fd;
> +
> + igt_fixture {
> + bool supports_faults;
> + int ret = 0;
> +
> + fd = drm_open_driver(DRIVER_XE);
> + ret = xe_supports_faults(fd);
> + supports_faults = !ret;
> + igt_require(supports_faults);
> + }
> +
> + for (const struct section *s = sections; s->name; s++) {
> + igt_subtest_f("exec-%s", s->name)
> + xe_for_each_engine(fd, hwe)
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
> + test_exec(fd, hwe, s->flags);
> + }
> +
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 357db2723..e649466be 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -286,6 +286,7 @@ intel_xe_progs = [
> 'xe_exec_basic',
> 'xe_exec_compute_mode',
> 'xe_exec_fault_mode',
> + 'xe_exec_mix_modes',
> 'xe_exec_queue_property',
> 'xe_exec_reset',
> 'xe_exec_sip',
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t,v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (5 preceding siblings ...)
2024-07-18 13:05 ` [PATCH i-g-t, v2] " Kamil Konieczny
@ 2024-08-04 17:15 ` Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2024-08-04 17:15 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Wed, Jul 17, 2024 at 06:35:19PM +0200, Francois Dugast wrote:
> Test parallel execution of LR and dma fence jobs on the same device.
>
> Add the following tests:
> * "exec-simple-batch-store-lr"
> * "exec-simple-batch-store-dma-fence"
> * "exec-spinner-interrupted-lr"
> * "exec-spinner-interrupted-dma-fence"
>
> v2: Remove useless exec queue priority, multiple job submissions
> even when running without preemption, nits (Matt Brost)
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> tests/intel/xe_exec_mix_modes.c | 268 ++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 269 insertions(+)
> create mode 100644 tests/intel/xe_exec_mix_modes.c
>
> diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c
> new file mode 100644
> index 000000000..f7bb96255
> --- /dev/null
> +++ b/tests/intel/xe_exec_mix_modes.c
> @@ -0,0 +1,268 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test the parallel submission of jobs in LR and dma fence modes
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: CMD submission
> + * Functionality: fault mode
> + * GPU requirements: GPU needs support for DRM_XE_VM_CREATE_FLAG_FAULT_MODE
> + */
> +
> +#include <fcntl.h>
> +
> +#include "igt.h"
> +#include "lib/igt_syncobj.h"
> +#include "lib/intel_reg.h"
> +#include "xe_drm.h"
> +
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +#include "xe/xe_spin.h"
> +#include <string.h>
> +
> +#define FLAG_EXEC_MODE_LR (0x1 << 0)
> +#define FLAG_JOB_TYPE_SIMPLE (0x1 << 1)
> +
> +#define NUM_INTERRUPTING_JOBS 5
> +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> +#define ONE_SEC MS_TO_NS(1000)
> +#define VM_DATA 0
> +#define SPIN_DATA 1
> +#define EXEC_DATA 2
> +#define DATA_COUNT 3
> +
> +struct data {
> + struct xe_spin spin;
> + uint32_t batch[16];
> + uint64_t vm_sync;
> + uint32_t data;
> + uint64_t exec_sync;
> + uint64_t addr;
> +};
> +
> +static void store_dword_batch(struct data *data, uint64_t addr, int value)
> +{
> + int b;
> + uint64_t batch_offset = (char *)&(data->batch) - (char *)data;
> + uint64_t batch_addr = addr + batch_offset;
> + uint64_t sdi_offset = (char *)&(data->data) - (char *)data;
> + uint64_t sdi_addr = addr + sdi_offset;
> +
> + b = 0;
> + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4;
> + data->batch[b++] = sdi_addr;
> + data->batch[b++] = sdi_addr >> 32;
> + data->batch[b++] = value;
> + data->batch[b++] = MI_BATCH_BUFFER_END;
> + igt_assert(b <= ARRAY_SIZE(data->batch));
> +
> + data->addr = batch_addr;
> +}
> +
> +enum engine_execution_mode {
> + EXEC_MODE_LR,
> + EXEC_MODE_DMA_FENCE,
> +};
> +
> +enum job_type {
> + SIMPLE_BATCH_STORE,
> + SPINNER_INTERRUPTED,
> +};
> +
> +static void
> +run_job(int fd, struct drm_xe_engine_class_instance *hwe,
> + enum engine_execution_mode engine_execution_mode,
> + enum job_type job_type, bool allow_recursion)
> +{
> + struct drm_xe_sync sync[1] = {
> + { .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> + };
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> + struct data *data;
> + uint32_t vm;
> + uint32_t exec_queue;
> + size_t bo_size;
> + int value = 0x123456;
> + uint64_t addr = 0x100000;
> + uint32_t bo = 0;
> + unsigned int vm_flags = 0;
> + struct xe_spin_opts spin_opts = { .preempt = true };
> + const uint64_t duration_ns = NSEC_PER_SEC / 2; /* 500ms */
> + struct timespec tv;
> + enum engine_execution_mode interrupting_engine_execution_mode;
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + sync[0].type = DRM_XE_SYNC_TYPE_USER_FENCE;
> + sync[0].timeline_value = USER_FENCE_VALUE;
> + vm_flags = DRM_XE_VM_CREATE_FLAG_LR_MODE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + sync[0].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
> + sync[0].handle = syncobj_create(fd, 0);
> + }
> +
> + vm = xe_vm_create(fd, vm_flags, 0);
> + bo_size = sizeof(*data) * DATA_COUNT;
> + bo_size = xe_bb_size(fd, bo_size);
> + bo = xe_bo_create(fd, vm, bo_size,
> + vram_if_possible(fd, hwe->gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + data = xe_bo_map(fd, bo, bo_size);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = to_user_pointer(&data[VM_DATA].vm_sync);
> + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync[0], 1);
> +
> + store_dword_batch(data, addr, value);
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + xe_wait_ufence(fd, &data[VM_DATA].vm_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + sync[0].addr = addr + (char *)&data[EXEC_DATA].exec_sync - (char *)data;
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_reset(fd, &sync[0].handle, 1);
> + sync[0].flags &= DRM_XE_SYNC_FLAG_SIGNAL;
> + }
> + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0);
> + exec.exec_queue_id = exec_queue;
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + spin_opts.addr = addr + (char *)&data[SPIN_DATA].spin - (char *)data;
> + spin_opts.ctx_ticks = duration_to_ctx_ticks(fd, 0, duration_ns);
> + xe_spin_init(&data[SPIN_DATA].spin, &spin_opts);
> + if (engine_execution_mode == EXEC_MODE_LR)
> + sync[0].addr = addr + (char *)&data[SPIN_DATA].exec_sync - (char *)data;
> + exec.address = spin_opts.addr;
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + exec.address = data->addr;
> + }
> + xe_exec(fd, &exec);
> +
> + if (job_type == SPINNER_INTERRUPTED) {
> + if (engine_execution_mode == EXEC_MODE_LR)
> + interrupting_engine_execution_mode = EXEC_MODE_DMA_FENCE;
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE)
> + interrupting_engine_execution_mode = EXEC_MODE_LR;
> + xe_spin_wait_started(&data[SPIN_DATA].spin);
> + } else if (job_type == SIMPLE_BATCH_STORE) {
> + interrupting_engine_execution_mode = engine_execution_mode;
> + }
> +
> + if (allow_recursion) {
> + igt_gettime(&tv);
> + for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
> + {
> + run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE, false);
> + /**
> + * Executing a SIMPLE_BATCH_STORE job takes significantly less time than
> + * duration_ns.
> + * When a spinner is running in LR mode, the interrupting job preempts it
> + * in KMD and should complete fast, shortly after starting the spinner.
> + * When a spinner is running in dma fence mode, the interrupting job waits
> + * in KMD and should complete shortly after the spinner has ended.
> + * The checks below are to verify preempting/waiting happens as expected
> + * depending on the execution mode.
> + */
> + if (engine_execution_mode == EXEC_MODE_LR)
> + igt_assert(igt_nsec_elapsed(&tv) < 0.5 * duration_ns);
> + else if (engine_execution_mode == EXEC_MODE_DMA_FENCE &&
> + job_type == SPINNER_INTERRUPTED)
> + igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
> + }
> + }
> +
> + if (engine_execution_mode == EXEC_MODE_LR) {
> + if (job_type == SPINNER_INTERRUPTED)
> + xe_wait_ufence(fd, &data[SPIN_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + else if (job_type == SIMPLE_BATCH_STORE)
> + xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC);
> + } else if (engine_execution_mode == EXEC_MODE_DMA_FENCE) {
> + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + syncobj_destroy(fd, sync[0].handle);
> + }
> +
> + if (job_type == SIMPLE_BATCH_STORE)
> + igt_assert_eq(data->data, value);
> +
> + munmap(data, bo_size);
> + gem_close(fd, bo);
> + xe_exec_queue_destroy(fd, exec_queue);
> + xe_vm_destroy(fd, vm);
> +}
> +
> +/**
> + * SUBTEST: exec-simple-batch-store-lr
> + * Description: Execute a simple batch store job in long running mode
> + *
> + * SUBTEST: exec-simple-batch-store-dma-fence
> + * Description: Execute a simple batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-lr
> + * Description: Spin in long running mode then get interrupted by a simple
> + * batch store job in dma fence mode
> + *
> + * SUBTEST: exec-spinner-interrupted-dma-fence
> + * Description: Spin in dma fence mode then get interrupted by a simple
> + * batch store job in long running mode
> + */
> +static void
> +test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
> + unsigned int flags)
> +{
> + enum engine_execution_mode engine_execution_mode;
> + enum job_type job_type;
> +
> + if (flags & FLAG_EXEC_MODE_LR)
> + engine_execution_mode = EXEC_MODE_LR;
> + else
> + engine_execution_mode = EXEC_MODE_DMA_FENCE;
> +
> + if (flags & FLAG_JOB_TYPE_SIMPLE)
> + job_type = SIMPLE_BATCH_STORE;
> + else
> + job_type = SPINNER_INTERRUPTED;
> +
> + run_job(fd, hwe, engine_execution_mode, job_type, true);
> +}
> +
> +igt_main
> +{
> + struct drm_xe_engine_class_instance *hwe;
> + const struct section {
> + const char *name;
> + unsigned int flags;
> + } sections[] = {
> + { "simple-batch-store-lr", FLAG_JOB_TYPE_SIMPLE | FLAG_EXEC_MODE_LR },
> + { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE },
> + { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR },
> + { "spinner-interrupted-dma-fence", 0 },
> + { NULL },
> + };
> + int fd;
> +
> + igt_fixture {
> + bool supports_faults;
> + int ret = 0;
> +
> + fd = drm_open_driver(DRIVER_XE);
> + ret = xe_supports_faults(fd);
> + supports_faults = !ret;
> + igt_require(supports_faults);
Noticed while running this test, this check is inverted.
Should be:
igt_require(xe_supports_faults(fd));
Matt
> + }
> +
> + for (const struct section *s = sections; s->name; s++) {
> + igt_subtest_f("exec-%s", s->name)
> + xe_for_each_engine(fd, hwe)
> + if (hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE)
> + test_exec(fd, hwe, s->flags);
> + }
> +
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 357db2723..e649466be 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -286,6 +286,7 @@ intel_xe_progs = [
> 'xe_exec_basic',
> 'xe_exec_compute_mode',
> 'xe_exec_fault_mode',
> + 'xe_exec_mix_modes',
> 'xe_exec_queue_property',
> 'xe_exec_reset',
> 'xe_exec_sip',
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-08-04 17:16 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-17 16:35 [PATCH i-g-t, v2] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 18:15 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-07-17 18:22 ` ✓ CI.xeBAT: " Patchwork
2024-07-17 18:36 ` [PATCH i-g-t,v2] " Matthew Brost
2024-07-18 0:59 ` ✗ CI.xeFULL: failure for " Patchwork
2024-07-18 7:22 ` ✗ Fi.CI.IGT: " Patchwork
2024-07-18 13:05 ` [PATCH i-g-t, v2] " Kamil Konieczny
2024-08-04 17:15 ` [PATCH i-g-t,v2] " Matthew Brost
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox