* [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution
@ 2024-07-17 12:30 Francois Dugast
2024-07-17 12:30 ` [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: " Francois Dugast
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Francois Dugast @ 2024-07-17 12:30 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
These new tests as expecting to fail on current KMD as submitting dma
fence jobs and faulting long running jobs on the same device is
forbidden. A KMD series is coming to remove this restriction.
Francois Dugast (1):
tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
tests/intel/xe_exec_mix_modes.c | 277 ++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 278 insertions(+)
create mode 100644 tests/intel/xe_exec_mix_modes.c
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
@ 2024-07-17 12:30 ` Francois Dugast
2024-07-17 13:47 ` Matthew Brost
2024-07-17 14:22 ` ✓ Fi.CI.BAT: success for xe_exec_mix_modes: " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Francois Dugast @ 2024-07-17 12:30 UTC (permalink / raw)
To: igt-dev; +Cc: 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"
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/xe_exec_mix_modes.c | 277 ++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 278 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..44265b220
--- /dev/null
+++ b/tests/intel/xe_exec_mix_modes.c
@@ -0,0 +1,277 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: Test the parallel submission of jobs in LR and dma fence modecs
+ * 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)
+{
+ 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 drm_xe_ext_set_property ext = {
+ .base.next_extension = 0,
+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+ .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
+ .value = 2, /* High priority */
+ };
+ 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;
+
+ 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, to_user_pointer(&ext));
+ 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) {
+ enum engine_execution_mode interrupting_engine_execution_mode;
+ 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);
+ igt_gettime(&tv);
+ for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
+ {
+ run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE);
+ /**
+ * 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)
+ 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 * 2);
+ else if (job_type == SIMPLE_BATCH_STORE)
+ xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC * 2);
+ } 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);
+}
+
+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 {
+ struct timespec tv = {};
+ bool supports_faults;
+ int ret = 0;
+ int timeout = igt_run_in_simulation() ? 20 : 2;
+
+ fd = drm_open_driver(DRIVER_XE);
+ do {
+ if (ret)
+ usleep(5000);
+ ret = xe_supports_faults(fd);
+ } while (ret == -EBUSY && igt_seconds_elapsed(&tv) < timeout);
+
+ 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
* Re: [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 ` [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: " Francois Dugast
@ 2024-07-17 13:47 ` Matthew Brost
2024-07-17 16:24 ` Francois Dugast
0 siblings, 1 reply; 8+ messages in thread
From: Matthew Brost @ 2024-07-17 13:47 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Wed, Jul 17, 2024 at 02:30:48PM +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"
>
Really good test, a couple of nits / questions.
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> tests/intel/xe_exec_mix_modes.c | 277 ++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 278 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..44265b220
> --- /dev/null
> +++ b/tests/intel/xe_exec_mix_modes.c
> @@ -0,0 +1,277 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test the parallel submission of jobs in LR and dma fence modecs
> + * 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)
> +{
> + 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 drm_xe_ext_set_property ext = {
> + .base.next_extension = 0,
> + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
> + .value = 2, /* High priority */
> + };
I don't understand why setting High priority here. Can you explain?
> + 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;
> +
> + 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, to_user_pointer(&ext));
> + 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;
Identation looks off here.
> + 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) {
> + enum engine_execution_mode interrupting_engine_execution_mode;
> + 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);
> + igt_gettime(&tv);
> + for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
> + {
> + run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE);
> + /**
> + * 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)
> + igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
> + }
> + }
Should we also run the 'NUM_INTERRUPTING_JOBS' loop here? i.e.
simple-batch-store-lr / simple-batch-store-dma-fence test opening VMs in
both modes doing a simple store (no preemption)?
We'd have to protect again infinite recursion though but adding flag to
protect against that should be easy. e.g.
SIMPLE_BATCH_STORE_NO_RECURSION.
> +
> + 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 * 2);
> + else if (job_type == SIMPLE_BATCH_STORE)
> + xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC * 2);
> + } 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);
> +}
> +
> +igt_main
> +
> +
Extra whitespace.
> +{
> + 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 {
> + struct timespec tv = {};
> + bool supports_faults;
> + int ret = 0;
> + int timeout = igt_run_in_simulation() ? 20 : 2;
> +
> + fd = drm_open_driver(DRIVER_XE);
> + do {
> + if (ret)
> + usleep(5000);
> + ret = xe_supports_faults(fd);
> + } while (ret == -EBUSY && igt_seconds_elapsed(&tv) < timeout);
> +
> + supports_faults = !ret;
> + igt_require(supports_faults);
I was unsure why this code was added in xe_exec_fault_mode, so had to
look:
git format-patch -1 8abb25ffe58
If you read the explaination for that it because we don't support mixing
faulting and non-faulting VMs being open at the same time + races
closing the VMs. With your KMD series we support having both a faulting
VM and non-faulting VM open so this loop is not required.
e.g. I think you can just do this:
igt_fixture {
fd = drm_open_driver(DRIVER_XE);;
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
* ✓ Fi.CI.BAT: success for xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 12:30 ` [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: " Francois Dugast
@ 2024-07-17 14:22 ` Patchwork
2024-07-17 14:31 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-17 14:22 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3349 bytes --]
== Series Details ==
Series: xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136191/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15086 -> IGTPW_11418
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/index.html
Participating hosts (39 -> 40)
------------------------------
Additional (3): fi-kbl-8809g fi-cfl-8109u fi-elk-e7500
Missing (2): bat-dg2-11 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11418 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
- fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-arls-2: [PASS][6] -> [DMESG-WARN][7] ([i915#7507])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][8] +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-elk-e7500: NOTRUN -> [SKIP][9] +24 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7927 -> IGTPW_11418
CI-20190529: 20190529
CI_DRM_15086: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11418: f988b2ec6596e76cd72e4c0867c61e20ca62f48d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7927: a2ab0ec12ef447c96c67dc539813462b6b39f857 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/index.html
[-- Attachment #2: Type: text/html, Size: 4284 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 12:30 ` [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: " Francois Dugast
2024-07-17 14:22 ` ✓ Fi.CI.BAT: success for xe_exec_mix_modes: " Patchwork
@ 2024-07-17 14:31 ` Patchwork
2024-07-17 18:14 ` ✗ CI.xeFULL: failure " Patchwork
2024-07-18 5:49 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-17 14:31 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5854 bytes --]
== Series Details ==
Series: xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136191/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7927_BAT -> XEIGTPW_11418_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 7)
------------------------------
Additional (2): bat-lnl-2 bat-lnl-1
Known issues
------------
Here are the changes found in XEIGTPW_11418_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#1466])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-lnl-1: NOTRUN -> [SKIP][2] ([Intel XE#599])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-lnl-1: NOTRUN -> [SKIP][3] ([Intel XE#352]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1470])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- bat-lnl-1: NOTRUN -> [SKIP][5] ([Intel XE#1091]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#688]) +17 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_gt_freq@freq_basic_api:
- bat-adlp-7: [PASS][7] -> [FAIL][8] ([Intel XE#2196])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html
* igt@xe_gt_freq@freq_fixed_idle:
- bat-lnl-1: NOTRUN -> [SKIP][9] ([Intel XE#1462]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_mmap@vram:
- bat-lnl-1: NOTRUN -> [SKIP][10] ([Intel XE#1416])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#1420])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#977])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-lnl-1: NOTRUN -> [SKIP][13] ([Intel XE#979])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-lnl-1: NOTRUN -> [FAIL][14] ([Intel XE#1442])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/bat-lnl-1/igt@xe_pm_residency@gt-c6-on-idle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442
[Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2196
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7927 -> IGTPW_11418
* Linux: xe-1613-b6af83ceb593bc4e0d79acda73684462b13a15b9 -> xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
IGTPW_11418: f988b2ec6596e76cd72e4c0867c61e20ca62f48d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7927: a2ab0ec12ef447c96c67dc539813462b6b39f857 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1613-b6af83ceb593bc4e0d79acda73684462b13a15b9: b6af83ceb593bc4e0d79acda73684462b13a15b9
xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/index.html
[-- Attachment #2: Type: text/html, Size: 6282 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 13:47 ` Matthew Brost
@ 2024-07-17 16:24 ` Francois Dugast
0 siblings, 0 replies; 8+ messages in thread
From: Francois Dugast @ 2024-07-17 16:24 UTC (permalink / raw)
To: Matthew Brost; +Cc: igt-dev
On Wed, Jul 17, 2024 at 01:47:39PM +0000, Matthew Brost wrote:
> On Wed, Jul 17, 2024 at 02:30:48PM +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"
> >
>
> Really good test, a couple of nits / questions.
Thanks for the review.
>
> > Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> > ---
> > tests/intel/xe_exec_mix_modes.c | 277 ++++++++++++++++++++++++++++++++
> > tests/meson.build | 1 +
> > 2 files changed, 278 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..44265b220
> > --- /dev/null
> > +++ b/tests/intel/xe_exec_mix_modes.c
> > @@ -0,0 +1,277 @@
> > +// SPDX-License-Identifier: MIT
> > +/*
> > + * Copyright © 2024 Intel Corporation
> > + */
> > +
> > +/**
> > + * TEST: Test the parallel submission of jobs in LR and dma fence modecs
> > + * 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)
> > +{
> > + 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 drm_xe_ext_set_property ext = {
> > + .base.next_extension = 0,
> > + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> > + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY,
> > + .value = 2, /* High priority */
> > + };
>
> I don't understand why setting High priority here. Can you explain?
No reason for it, it was a left over from earlier experiments and will
be removed in the next version.
>
> > + 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;
> > +
> > + 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, to_user_pointer(&ext));
> > + 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;
>
> Identation looks off here.
Will fix.
>
> > + 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) {
> > + enum engine_execution_mode interrupting_engine_execution_mode;
> > + 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);
> > + igt_gettime(&tv);
> > + for (int i = 0; i < NUM_INTERRUPTING_JOBS; i++)
> > + {
> > + run_job(fd, hwe, interrupting_engine_execution_mode, SIMPLE_BATCH_STORE);
> > + /**
> > + * 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)
> > + igt_assert(igt_nsec_elapsed(&tv) > duration_ns);
> > + }
> > + }
>
> Should we also run the 'NUM_INTERRUPTING_JOBS' loop here? i.e.
> simple-batch-store-lr / simple-batch-store-dma-fence test opening VMs in
> both modes doing a simple store (no preemption)?
Yes this is a good improvement and only requires a minor change.
>
> We'd have to protect again infinite recursion though but adding flag to
> protect against that should be easy. e.g.
> SIMPLE_BATCH_STORE_NO_RECURSION.
>
> > +
> > + 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 * 2);
> > + else if (job_type == SIMPLE_BATCH_STORE)
> > + xe_wait_ufence(fd, &data[EXEC_DATA].exec_sync, USER_FENCE_VALUE, 0, ONE_SEC * 2);
> > + } 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);
> > +}
> > +
> > +igt_main
> > +
> > +
>
> Extra whitespace.
Will fix.
>
> > +{
> > + 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 {
> > + struct timespec tv = {};
> > + bool supports_faults;
> > + int ret = 0;
> > + int timeout = igt_run_in_simulation() ? 20 : 2;
> > +
> > + fd = drm_open_driver(DRIVER_XE);
> > + do {
> > + if (ret)
> > + usleep(5000);
> > + ret = xe_supports_faults(fd);
> > + } while (ret == -EBUSY && igt_seconds_elapsed(&tv) < timeout);
> > +
> > + supports_faults = !ret;
> > + igt_require(supports_faults);
>
> I was unsure why this code was added in xe_exec_fault_mode, so had to
> look:
>
> git format-patch -1 8abb25ffe58
>
> If you read the explaination for that it because we don't support mixing
> faulting and non-faulting VMs being open at the same time + races
> closing the VMs. With your KMD series we support having both a faulting
> VM and non-faulting VM open so this loop is not required.
>
> e.g. I think you can just do this:
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);;
> igt_require(xe_supports_faults(fd));
> }
Yes indeed, actually taking into account the logic for xe_supports_faults()
it should probably be along those lines:
igt_fixture {
ret = xe_supports_faults(fd);
supports_faults = !ret;
igt_require(supports_faults);
}
>
> 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
* ✗ CI.xeFULL: failure for xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (2 preceding siblings ...)
2024-07-17 14:31 ` ✓ CI.xeBAT: " Patchwork
@ 2024-07-17 18:14 ` Patchwork
2024-07-18 5:49 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-17 18:14 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 40619 bytes --]
== Series Details ==
Series: xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136191/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7927_full -> XEIGTPW_11418_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11418_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11418_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_11418_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_auth@getclient-master-drop:
- shard-lnl: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-1/igt@core_auth@getclient-master-drop.html
* {igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence} (NEW):
- shard-lnl: NOTRUN -> [FAIL][2] +4 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-5/igt@xe_live_ktest@xe_bo.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@xe_live_ktest@xe_bo.html
New tests
---------
New tests have been introduced between XEIGT_7927_full and XEIGTPW_11418_full:
### New IGT tests (4) ###
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- Statuses : 1 skip(s)
- Exec time: [0.0] 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 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] 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_11418_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-user:
- shard-lnl: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#1960])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@core_setmaster@master-drop-set-user.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@core_setmaster@master-drop-set-user.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1465])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_3d.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#664])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1467])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#607]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1477])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +10 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#367])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1512])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-435/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1399]) +21 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#314] / [Intel XE#599])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#314]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#306])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-1/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +12 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#307])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1204]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#308])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#323]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#703])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1421]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1195])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: NOTRUN -> [FAIL][38] ([Intel XE#886]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1401]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#352])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#651]) +13 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#651]) +14 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#658])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#656]) +37 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1339])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#1162])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#361]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#498]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#305]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-lnl: [PASS][55] -> [SKIP][56] ([Intel XE#870])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-6/igt@kms_pm_backlight@fade-with-dpms.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#736])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#718])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#908])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1439]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1406]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@kms_psr@pr-no-drrs.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1127] / [Intel XE#1201])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1127])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1435])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/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][68] -> [FAIL][69] ([Intel XE#899])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][70] ([Intel XE#1551]) +1 other test dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#599]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#756])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#756])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1091])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1447])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1126] / [Intel XE#1201])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#1600])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-464/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#688]) +10 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-2/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][81] -> [TIMEOUT][82] ([Intel XE#1473])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1392]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_fault_mode@once-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#288]) +8 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@xe_exec_fault_mode@once-userptr-imm.html
* {igt@xe_exec_mix_modes@exec-simple-batch-store-lr} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@parallel-close-fd:
- shard-dg2-set2: [PASS][86] -> [ABORT][87] ([Intel XE#2273] / [Intel XE#2309])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-433/igt@xe_exec_reset@parallel-close-fd.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#512])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@xe_mmap@small-bar.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1948])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][90] ([Intel XE#1551] / [Intel XE#569])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#584])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#366]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#1551] / [Intel XE#569])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#569])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#579])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#579])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#944]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][100] ([Intel XE#1426]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][102] ([Intel XE#1426]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][104] ([Intel XE#1659]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_flip@flip-vs-panning@a-hdmi-a6:
- shard-dg2-set2: [INCOMPLETE][106] ([Intel XE#1195]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-436/igt@kms_flip@flip-vs-panning@a-hdmi-a6.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_flip@flip-vs-panning@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][108] ([Intel XE#1551]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#417]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
* {igt@kms_plane@plane-position-covered@pipe-a-plane-4}:
- shard-lnl: [DMESG-FAIL][112] ([Intel XE#324]) -> [PASS][113] +4 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html
* {igt@kms_plane@plane-position-covered@pipe-b-plane-1}:
- shard-lnl: [DMESG-WARN][114] ([Intel XE#324]) -> [PASS][115] +2 other tests pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
- shard-lnl: [DMESG-WARN][116] ([Intel XE#1705]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
* igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1:
- shard-lnl: [DMESG-WARN][118] -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-c-edp-1.html
* igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
- shard-lnl: [FAIL][120] ([Intel XE#1649]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [FAIL][122] ([Intel XE#899]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][124] ([Intel XE#1522]) -> [PASS][125] +3 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-1/igt@kms_vrr@flipline.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-4/igt@kms_vrr@flipline.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][126] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_gt_freq@freq_basic_api:
- shard-dg2-set2: [FAIL][128] -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-435/igt@xe_gt_freq@freq_basic_api.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@xe_gt_freq@freq_basic_api.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][130] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [DMESG-WARN][132] ([Intel XE#2019]) -> [PASS][133] +2 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-466/igt@xe_module_load@reload-no-display.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@xe_module_load@reload-no-display.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][134] ([Intel XE#2019]) -> [INCOMPLETE][135] ([Intel XE#1195] / [Intel XE#2019])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend.html
* igt@xe_exec_reset@close-fd:
- shard-dg2-set2: [ABORT][136] ([Intel XE#2271]) -> [ABORT][137] ([Intel XE#2271] / [Intel XE#2309])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-dg2-463/igt@xe_exec_reset@close-fd.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-dg2-433/igt@xe_exec_reset@close-fd.html
- shard-lnl: [ABORT][138] ([Intel XE#2271]) -> [ABORT][139] ([Intel XE#2271] / [Intel XE#2309])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-6/igt@xe_exec_reset@close-fd.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-5/igt@xe_exec_reset@close-fd.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [DMESG-WARN][140] ([Intel XE#1760]) -> [DMESG-FAIL][141] ([Intel XE#1760])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7927/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/shard-lnl-8/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#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#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#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[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#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
[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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[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#2271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2271
[Intel XE#2273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2273
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[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#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_7927 -> IGTPW_11418
* Linux: xe-1613-b6af83ceb593bc4e0d79acda73684462b13a15b9 -> xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
IGTPW_11418: f988b2ec6596e76cd72e4c0867c61e20ca62f48d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7927: a2ab0ec12ef447c96c67dc539813462b6b39f857 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1613-b6af83ceb593bc4e0d79acda73684462b13a15b9: b6af83ceb593bc4e0d79acda73684462b13a15b9
xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11418/index.html
[-- Attachment #2: Type: text/html, Size: 47645 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for xe_exec_mix_modes: Add new tests for parallel execution
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
` (3 preceding siblings ...)
2024-07-17 18:14 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-07-18 5:49 ` Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-07-18 5:49 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84081 bytes --]
== Series Details ==
Series: xe_exec_mix_modes: Add new tests for parallel execution
URL : https://patchwork.freedesktop.org/series/136191/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15086_full -> IGTPW_11418_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11418_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11418_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_11418/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11418_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_big@single:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-3/igt@gem_exec_big@single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-5/igt@gem_exec_big@single.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@prime_busy@hang-wait@vecs0:
- shard-dg1: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-16/igt@prime_busy@hang-wait@vecs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@prime_busy@hang-wait@vecs0.html
#### Warnings ####
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: [FAIL][7] ([i915#11462]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
Known issues
------------
Here are the changes found in IGTPW_11418_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#6230])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6230])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#11078])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +22 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][17] -> [FAIL][18] ([i915#7742]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][25] ([i915#6268])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [PASS][26] -> [FAIL][27] ([i915#6268])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hang:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2846])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
- shard-glk: NOTRUN -> [FAIL][39] ([i915#2846])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +5 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][43] -> [FAIL][44] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][46] -> [FAIL][47] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +10 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@gem_exec_reloc@basic-gtt.html
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][54] ([i915#10378])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-random@lmem0:
- shard-dg1: [PASS][55] -> [FAIL][56] ([i915#10378])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-17/igt@gem_lmem_swapping@heavy-random@lmem0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_lmem_swapping@heavy-random@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][57] ([i915#10378]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [DMESG-WARN][61] ([i915#1982] / [i915#4936] / [i915#5493])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@gem_madvise@dontneed-before-pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-3/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +17 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +11 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@ptrace:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4077])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-7/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@gem_pread@exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +7 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][79] ([i915#5889])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_tiledx_blits:
- shard-mtlp: NOTRUN -> [SKIP][84] +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-4/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#6227])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@i915_module_load@load.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][91] -> [ABORT][92] ([i915#11703])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb2/igt@i915_module_load@reload-no-display.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb6/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][93] ([i915#9820])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [PASS][94] -> [ABORT][95] ([i915#9820])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#8399])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][97] -> [FAIL][98] ([i915#3591])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#8925])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4387])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][102] ([i915#9311])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][103] ([i915#7443])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4212])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#8709]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#8709]) +11 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6228])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#9531])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#9531])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][111] ([i915#1769])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#5956])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1:
- shard-snb: [PASS][114] -> [FAIL][115] ([i915#5956]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: [PASS][117] -> [FAIL][118] ([i915#5956])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-16/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +15 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +55 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][129] +175 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +174 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +23 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +61 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][133] +27 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +11 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3555]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#7116] / [i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#7118])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#7116])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@kms_content_protection@srm.html
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7116] / [i915#7118])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#11453])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#11453]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#11453])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +8 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#11453]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#9809])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#9067])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9067])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#4103])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#4103])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [PASS][158] -> [DMESG-WARN][159] ([i915#10166])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb5/igt@kms_cursor_legacy@torture-move@pipe-a.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb2/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#9723])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#9723])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#9723])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9833])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#8812]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3840])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3840] / [i915#9053])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3469]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3955])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3469])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3469])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#4854])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9337])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#658])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#658])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9934]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3637])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][181] +20 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [PASS][182] -> [FAIL][183] ([i915#10826])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4:
- shard-dg1: [PASS][184] -> [FAIL][185] ([i915#2122]) +2 other tests fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-vga1:
- shard-snb: [PASS][186] -> [FAIL][187] ([i915#2122]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-vga1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-vga1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8381])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_flip@flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8381])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][190] ([i915#10826])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_flip@modeset-vs-vblank-race-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) +4 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#5354]) +51 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#1825]) +31 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708]) +22 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#10055])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8708]) +29 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][201] +43 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#10433] / [i915#3458])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][204] +44 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +19 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +16 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +19 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@kms_hdr@bpc-switch.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4816])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4070] / [i915#4816])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#6301])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#6301])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][217] ([i915#10647]) +1 other test fail
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8821])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][219] ([i915#8292])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][220] ([i915#8292])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9423]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#9423]) +11 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9423]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#5176] / [i915#9423]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#5235]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#5235]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235] / [i915#9423]) +15 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#5235]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#5235]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/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][231] ([i915#5235]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/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@fade:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#5354])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#9685])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][235] -> [FAIL][236] ([i915#9295])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3361])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#9340])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][239] -> [SKIP][240] ([i915#9519]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#9519]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#6524])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-15/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#6524]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#6524] / [i915#6805])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#11520]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#11520]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#11520]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#11520]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#9683])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#9683])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9683]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9683]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-primary-page-flip:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9732]) +7 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-7/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9732]) +16 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#9732]) +28 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +20 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#4884])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-16/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#11131] / [i915#5190])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#11131] / [i915#4235])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#3555]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#9906])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#9906])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#9906])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2437])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-6/igt@kms_writeback@writeback-fb-id.html
- shard-glk: NOTRUN -> [SKIP][267] ([i915#2437])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-glk3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#2437])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#7387])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][270] ([i915#4349]) +3 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][271] ([i915#6806])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][272] ([i915#9351])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#3291] / [i915#3708]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3708] / [i915#4077])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#3291] / [i915#3708])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-3/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#3708] / [i915#4077])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#3708]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3708]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#3708]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#9917])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#9917])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][282] ([i915#7742]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_eio@kms:
- shard-dg2: [FAIL][284] ([i915#5784]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-1/igt@gem_eio@kms.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-8/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][286] ([i915#2842]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: [FAIL][288] ([i915#10378]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
- shard-dg2: [FAIL][290] ([i915#10378]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][292] ([i915#10887] / [i915#11231]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][294] ([i915#5956]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][296] ([i915#5138]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][298] ([i915#9519]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][300] ([i915#9519]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][302] ([IGT#2]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-10/igt@kms_sysfs_edid_timing.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-7/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][304] ([i915#9196]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][306] ([i915#2842]) -> [FAIL][307] ([i915#2876])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][308] ([i915#10433] / [i915#3458]) -> [SKIP][309] ([i915#3458]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][310] ([i915#3458]) -> [SKIP][311] ([i915#10433] / [i915#3458]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-dg2: [SKIP][312] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][313] ([i915#1072] / [i915#9732]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-11/igt@kms_psr@fbc-psr2-no-drrs.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-2/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@psr-no-drrs:
- shard-dg2: [SKIP][314] ([i915#1072] / [i915#9732]) -> [SKIP][315] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15086/shard-dg2-6/igt@kms_psr@psr-no-drrs.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11418/shard-dg2-11/igt@kms_psr@psr-no-drrs.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[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#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11462]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11462
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[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#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[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#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[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#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#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[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#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5889
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[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#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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_7927 -> IGTPW_11418
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15086: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11418: f988b2ec6596e76cd72e4c0867c61e20ca62f48d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7927: a2ab0ec12ef447c96c67dc539813462b6b39f857 @ 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_11418/index.html
[-- Attachment #2: Type: text/html, Size: 104642 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-07-18 5:49 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-17 12:30 [PATCH i-g-t 0/1] xe_exec_mix_modes: Add new tests for parallel execution Francois Dugast
2024-07-17 12:30 ` [PATCH i-g-t 1/1] tests/intel/xe_exec_mix_modes: " Francois Dugast
2024-07-17 13:47 ` Matthew Brost
2024-07-17 16:24 ` Francois Dugast
2024-07-17 14:22 ` ✓ Fi.CI.BAT: success for xe_exec_mix_modes: " Patchwork
2024-07-17 14:31 ` ✓ CI.xeBAT: " Patchwork
2024-07-17 18:14 ` ✗ CI.xeFULL: failure " Patchwork
2024-07-18 5:49 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox