* [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode
@ 2026-08-10 9:39 Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: add explicit VM create/assign steps Marcin Bernatowicz
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Marcin Bernatowicz @ 2026-08-10 9:39 UTC (permalink / raw)
To: igt-dev
Cc: adam.miszczak, kamil.konieczny, lukasz.laguna, tvrtko.ursulin,
Marcin Bernatowicz
This series extends gem_wsim VM (Virtual Memory) management for Xe.
Patch 1 adds explicit VM (Virtual Memory) create/assign steps in
workload descriptors: V.N to create VM N and v.N.M to bind context
M to VM N.
Patch 2 adds c.N to enable compute/LR mode on selected VMs.
README is updated with syntax and VM usage examples.
Changes since v1:
- Clarify that VM means Virtual Memory (to avoid confusion with
Virtual Machine). No code behavior changes; description/documentation
text only. (Kamil, Adam)
Marcin Bernatowicz (2):
benchmarks/gem_wsim: add explicit VM create/assign steps
benchmarks/gem_wsim: add compute/LR mode support for Xe VMs
benchmarks/gem_wsim.c | 310 ++++++++++++++++++++++++++++++++++++-----
benchmarks/wsim/README | 32 +++++
2 files changed, 311 insertions(+), 31 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: add explicit VM create/assign steps
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
@ 2026-08-10 9:39 ` Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: add compute/LR mode support for Xe VMs Marcin Bernatowicz
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Marcin Bernatowicz @ 2026-08-10 9:39 UTC (permalink / raw)
To: igt-dev
Cc: adam.miszczak, kamil.konieczny, lukasz.laguna, tvrtko.ursulin,
Marcin Bernatowicz
Add explicit VM (Virtual Memory) management to workload descriptors so Xe
runs can model VM topology directly.
Introduce two new descriptor steps:
- V.N create VM id N (1-based)
- v.N.M assign VM N to context M
Implementation details:
- Add VM_CREATE and CTX_VM step types and vm_id storage in w_step.
- Parse V/v syntax with validation and clear error messages.
- Add allocate_vms() pre-scan to size and allocate vm_list from V steps.
- Update xe_prepare_contexts() to support explicit VM mode:
- create all explicit VMs
- default contexts to VM 0
- apply per-context VM assignments from v steps
- retain implicit single-VM fallback when no V steps are present
- Make get_vm() use per-context VM linkage.
Documentation:
- Add VM (Virtual Memory) management step documentation into
benchmarks/wsim/README.
This keeps i915 behavior unchanged while enabling explicit VM topology
control for Xe workloads.
Suggested-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
v2: Clarify that VM means Virtual Memory (Kamil, Adam)
---
benchmarks/gem_wsim.c | 143 +++++++++++++++++++++++++++++++++++++----
benchmarks/wsim/README | 19 ++++++
2 files changed, 150 insertions(+), 12 deletions(-)
diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index 462188708..7d9363582 100644
--- a/benchmarks/gem_wsim.c
+++ b/benchmarks/gem_wsim.c
@@ -130,6 +130,8 @@ enum w_type {
TERMINATE,
SSEU,
WORKINGSET,
+ VM_CREATE,
+ CTX_VM,
};
struct dep_entry {
@@ -210,6 +212,7 @@ struct w_step {
struct bond bond;
int sseu;
struct working_set working_set;
+ int vm_id;
};
/* Implementation details */
@@ -241,6 +244,7 @@ struct w_step {
struct vm {
uint32_t id;
+ bool declared;
bool compute_mode;
uint64_t ahnd;
};
@@ -1240,6 +1244,55 @@ parse_workload(struct w_arg *arg, unsigned int flags, double scale_dur,
step.type = WORKINGSET;
goto add_step;
+ } else if (!strcmp(field, "V")) {
+ /*
+ * V.N - create VM with id N (xe only, ignored on i915)
+ * VM ids are 1-based in the descriptor.
+ */
+ field = strtok_r(fstart, ".", &fctx);
+ check_arg(!field, "Missing VM id at step %u!\n",
+ nr_steps);
+ tmp = atoi(field);
+ check_arg(tmp <= 0, "Invalid VM id at step %u!\n",
+ nr_steps);
+ step.vm_id = tmp;
+ step.type = VM_CREATE;
+ goto add_step;
+ } else if (!strcmp(field, "v")) {
+ /*
+ * v.N.M - assign VM N to ctx M
+ * (xe only, ignored on i915)
+ */
+ unsigned int nr = 0;
+ int vm = 0, ctx_id = 0;
+
+ while ((field = strtok_r(fstart, ".", &fctx))) {
+ fstart = NULL;
+ tmp = atoi(field);
+ if (nr == 0) {
+ check_arg(tmp <= 0,
+ "Invalid VM id at step %u!\n",
+ nr_steps);
+ vm = tmp;
+ } else if (nr == 1) {
+ check_arg(tmp <= 0,
+ "Invalid ctx id at step %u!\n",
+ nr_steps);
+ ctx_id = tmp;
+ } else {
+ check_arg(1,
+ "Too many fields in v step at step %u!\n",
+ nr_steps);
+ }
+ nr++;
+ }
+ check_arg(nr != 2,
+ "v step requires VM id and ctx id at step %u!\n",
+ nr_steps);
+ step.vm_id = vm;
+ step.context = ctx_id;
+ step.type = CTX_VM;
+ goto add_step;
}
if (!field) {
@@ -1665,6 +1718,14 @@ xe_get_eq(struct workload *wrk, const struct w_step *w)
static struct vm *
get_vm(struct workload *wrk, const struct w_step *w)
{
+ struct ctx *ctx = __get_ctx(wrk, w);
+
+ /* If the ctx has been linked to an explicit VM, use it; otherwise
+ * fall back to the implicit single vm_list[0].
+ */
+ if (ctx->vm)
+ return ctx->vm;
+
return wrk->vm_list;
}
@@ -2087,6 +2148,33 @@ static void xe_exec_queue_create_(struct ctx *ctx, struct xe_exec_queue *eq)
eq->id = create.exec_queue_id;
}
+static void allocate_vms(struct workload *wrk)
+{
+ int max_vm = 0;
+ struct w_step *w;
+
+ /*
+ * Slot 0 is always the implicit/default VM. Descriptor VM ids are
+ * 1-based and map directly to vm_list[N] for explicit V.N steps.
+ */
+ for_each_w_step(w, wrk) {
+ if (w->type != VM_CREATE)
+ continue;
+ if (w->vm_id > max_vm)
+ max_vm = w->vm_id;
+ }
+
+ wrk->nr_vms = max_vm + 1;
+ wrk->vm_list = calloc(wrk->nr_vms, sizeof(*wrk->vm_list));
+ igt_assert(wrk->vm_list);
+
+ for_each_w_step(w, wrk) {
+ if (w->type == VM_CREATE)
+ /* Mark only explicitly declared VMs; slot 0 stays implicit. */
+ wrk->vm_list[w->vm_id].declared = true;
+ }
+}
+
static void allocate_contexts(unsigned int id, struct workload *wrk)
{
int max_ctx = -1;
@@ -2094,13 +2182,19 @@ static void allocate_contexts(unsigned int id, struct workload *wrk)
/*
* Pre-scan workload steps to allocate context list storage.
+ * Skip VM management steps whose context field is unused.
*/
for_each_w_step(w, wrk) {
- int ctx = w->context + 1;
+ int ctx;
int delta;
w->wrk = wrk;
+ if (w->type == VM_CREATE)
+ continue;
+
+ ctx = w->context + 1;
+
if (ctx <= max_ctx)
continue;
@@ -2333,18 +2427,38 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk)
struct ctx *ctx;
unsigned int i;
- /* shortcut, create one vm */
- wrk->nr_vms = 1;
- wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm));
- igt_assert(wrk->vm_list);
- wrk->vm_list->compute_mode = false;
- xe_vm_create_(wrk->vm_list);
- wrk->vm_list->ahnd = intel_allocator_open(fd, wrk->vm_list->id,
- INTEL_ALLOCATOR_RELOC);
+ /* Slot 0 is the implicit/default VM. */
+ xe_vm_create_(&wrk->vm_list[0]);
+ wrk->vm_list[0].ahnd = intel_allocator_open(fd, wrk->vm_list[0].id,
+ INTEL_ALLOCATOR_RELOC);
+
+ for (i = 1; i < wrk->nr_vms; i++) {
+ if (!wrk->vm_list[i].declared)
+ continue;
+
+ xe_vm_create_(&wrk->vm_list[i]);
+ wrk->vm_list[i].ahnd =
+ intel_allocator_open(fd, wrk->vm_list[i].id,
+ INTEL_ALLOCATOR_RELOC);
+ }
+
+ /*
+ * Process CTX_VM steps to link each ctx to an explicit VM. Contexts
+ * without a v.N.M mapping remain on the implicit VM in slot 0.
+ */
+ __for_each_ctx(ctx, wrk, ctx_idx)
+ ctx->vm = &wrk->vm_list[0];
+
+ for_each_w_step(w, wrk) {
+ if (w->type != CTX_VM)
+ continue;
+ igt_assert_lt((unsigned int)w->vm_id, wrk->nr_vms);
+ igt_assert(wrk->vm_list[w->vm_id].declared);
+ igt_assert_lt((unsigned int)w->context, wrk->nr_ctxs);
+ wrk->ctx_list[w->context].vm = &wrk->vm_list[w->vm_id];
+ }
__for_each_ctx(ctx, wrk, ctx_idx) {
- /* link with vm */
- ctx->vm = wrk->vm_list;
for_each_w_step(w, wrk) {
if (w->context != ctx_idx)
continue;
@@ -2537,6 +2651,9 @@ static int prepare_workload(unsigned int id, struct workload *wrk)
allocate_contexts(id, wrk);
+ if (is_xe)
+ allocate_vms(wrk);
+
if (is_xe)
ret = xe_prepare_contexts(id, wrk);
else
@@ -2857,7 +2974,9 @@ static void *run_workload(void *data)
w->type == ENGINE_MAP ||
w->type == LOAD_BALANCE ||
w->type == BOND ||
- w->type == WORKINGSET) {
+ w->type == WORKINGSET ||
+ w->type == VM_CREATE ||
+ w->type == CTX_VM) {
/* No action for these at execution time. */
continue;
}
diff --git a/benchmarks/wsim/README b/benchmarks/wsim/README
index e43813335..364759da0 100644
--- a/benchmarks/wsim/README
+++ b/benchmarks/wsim/README
@@ -11,6 +11,8 @@ P|S|X.<uint>.<int>
d|p|s|t|q|a|T.<int>,...
b.<uint>.<str>[|<str>].<str>
w|W.<uint>.<str>[/<str>]...
+V.<uint>
+v.<uint>.<uint>
f
For duration a range can be given from which a random value will be picked
@@ -39,6 +41,11 @@ Additional workload steps are also supported:
'W' - Shared working set.
'X' - Context preemption control.
+VM (Virtual Memory) management steps (Xe: active; i915: ignored):
+
+ 'V' - Create VM with id N (V.N, VM ids are 1-based).
+ 'v' - Assign VM N to context/queue M (v.N.M).
+
Engine ids: DEFAULT, RCS, BCS, VCS, VCS1, VCS2, VECS
Example (leading spaces must not be present in the actual file):
@@ -88,6 +95,18 @@ Batch durations can also be specified as infinite by using the '*' in the
duration field. Such batches must be ended by the terminate command ('T')
otherwise they will cause a GPU hang to be reported.
+VM Example:
+
+ V.1
+ M.1.VCS
+ v.1.1
+ B.1
+ 1.VCS.1000.0.0
+
+Creates VM 1, configures context 1 with a VCS engine map, assigns context 1
+to VM 1, enables load balancing for context 1, and runs a single 1ms VCS
+batch.
+
Xe and i915 differences
------------------------
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: add compute/LR mode support for Xe VMs
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: add explicit VM create/assign steps Marcin Bernatowicz
@ 2026-08-10 9:39 ` Marcin Bernatowicz
2026-08-10 11:24 ` ✓ i915.CI.BAT: success for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Marcin Bernatowicz @ 2026-08-10 9:39 UTC (permalink / raw)
To: igt-dev
Cc: adam.miszczak, kamil.konieczny, lukasz.laguna, tvrtko.ursulin,
Marcin Bernatowicz
Introduce new descriptor step:
'c' - Enable compute/LR mode for VM (Virtual Memory) N (c.N).
Example:
gem_wsim -w "V.1,c.1,v.1.1,1.BCS.100.0.0,1.CCS.8000000.-1.0,1.BCS.100.-1.1"
8.009s elapsed (0.125 workloads/s)
Creates VM 1, enables compute/LR mode on it, assigns context 1 to the VM,
then runs BCS and CCS work with cross-step dependencies (8s CCS depends
on the first BCS step, and the final BCS step depends on the CCS step).
Suggested-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Reviewed-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
benchmarks/gem_wsim.c | 171 ++++++++++++++++++++++++++++++++++++-----
benchmarks/wsim/README | 17 +++-
2 files changed, 165 insertions(+), 23 deletions(-)
diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index 7d9363582..1a4139279 100644
--- a/benchmarks/gem_wsim.c
+++ b/benchmarks/gem_wsim.c
@@ -132,6 +132,7 @@ enum w_type {
WORKINGSET,
VM_CREATE,
CTX_VM,
+ VM_COMPUTE_MODE,
};
struct dep_entry {
@@ -246,6 +247,7 @@ struct vm {
uint32_t id;
bool declared;
bool compute_mode;
+ uint32_t bind_exec_queue;
uint64_t ahnd;
};
@@ -323,6 +325,7 @@ static unsigned int master_prng;
static int verbose = 1;
static int fd;
static bool is_xe;
+static const uint64_t user_fence_value = 0xdeadbeefdeadbeefull;
static struct drm_i915_gem_context_param_sseu device_sseu = {
.slice_mask = -1 /* Force read on first use. */
};
@@ -334,10 +337,18 @@ static struct drm_i915_gem_context_param_sseu device_sseu = {
static void w_step_sync(struct w_step *w)
{
- if (is_xe)
- igt_assert(syncobj_wait(fd, &w->xe.syncs[0].handle, 1, INT64_MAX, 0, NULL));
- else
+ if (is_xe) {
+ if (w->xe.syncs[0].type == DRM_XE_SYNC_TYPE_USER_FENCE) {
+ xe_wait_ufence(fd, &w->xe.data->spin.exec_sync,
+ w->xe.syncs[0].timeline_value, 0,
+ INT64_MAX);
+ } else {
+ igt_assert(syncobj_wait(fd, &w->xe.syncs[0].handle, 1,
+ INT64_MAX, 0, NULL));
+ }
+ } else {
gem_sync(fd, w->i915.obj[0].handle);
+ }
}
static int read_timestamp_frequency(int i915)
@@ -1293,6 +1304,20 @@ parse_workload(struct w_arg *arg, unsigned int flags, double scale_dur,
step.context = ctx_id;
step.type = CTX_VM;
goto add_step;
+ } else if (!strcmp(field, "c")) {
+ /*
+ * c.N - enable compute/LR mode on VM N
+ * (xe only, ignored on i915)
+ */
+ field = strtok_r(fstart, ".", &fctx);
+ check_arg(!field,
+ "Missing VM id at step %u!\n", nr_steps);
+ tmp = atoi(field);
+ check_arg(tmp <= 0,
+ "Invalid VM id at step %u!\n", nr_steps);
+ step.vm_id = tmp;
+ step.type = VM_COMPUTE_MODE;
+ goto add_step;
}
if (!field) {
@@ -1855,10 +1880,27 @@ xe_alloc_step_batch(struct workload *wrk, struct w_step *w)
vram_if_possible(fd, eq->hwe_list[0].gt_id),
DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
w->xe.data = xe_bo_map(fd, w->bb_handle, w->bb_size);
+ w->xe.data->spin.exec_sync = 0;
+ w->xe.data->vm_sync = 0;
w->xe.exec.address =
intel_allocator_alloc_with_strategy(vm->ahnd, w->bb_handle, w->bb_size,
0, ALLOC_STRATEGY_LOW_TO_HIGH);
- xe_vm_bind_sync(fd, vm->id, w->bb_handle, 0, w->xe.exec.address, w->bb_size);
+ if (vm->compute_mode) {
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = to_user_pointer(&w->xe.data->vm_sync),
+ .timeline_value = user_fence_value,
+ };
+
+ xe_vm_bind_async(fd, vm->id, vm->bind_exec_queue, w->bb_handle, 0,
+ w->xe.exec.address, w->bb_size, &sync, 1);
+ xe_wait_ufence(fd, &w->xe.data->vm_sync, user_fence_value,
+ vm->bind_exec_queue, 10 * NSEC_PER_SEC);
+ w->xe.data->vm_sync = 0;
+ } else {
+ xe_vm_bind_sync(fd, vm->id, w->bb_handle, 0, w->xe.exec.address, w->bb_size);
+ }
w->duration.requested_ticks = xe_spin_nsec_to_ticks(fd, eq->hwe_list[0].gt_id,
1000LL * get_duration(wrk, w));
xe_spin_init_opts(&w->xe.data->spin,
@@ -1875,8 +1917,15 @@ xe_alloc_step_batch(struct workload *wrk, struct w_step *w)
igt_assert(dep_idx >= 0 && dep_idx < w->idx);
igt_assert(wrk->steps[dep_idx].type == BATCH);
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
- w->xe.exec.num_syncs++;
+ /*
+ * USER_FENCE is valid as an out-fence in LR mode, but cannot be
+ * consumed as an in-fence in xe_exec. Those deps are resolved in
+ * userspace before submission.
+ */
+ if (wrk->steps[dep_idx].xe.syncs[0].type != DRM_XE_SYNC_TYPE_USER_FENCE)
+ w->xe.exec.num_syncs++;
}
for_each_dep(dep, w->fence_deps) {
int dep_idx = w->idx + dep->target;
@@ -1884,34 +1933,70 @@ xe_alloc_step_batch(struct workload *wrk, struct w_step *w)
igt_assert(dep_idx >= 0 && dep_idx < w->idx);
igt_assert(wrk->steps[dep_idx].type == SW_FENCE ||
wrk->steps[dep_idx].type == BATCH);
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
- w->xe.exec.num_syncs++;
+ if (wrk->steps[dep_idx].xe.syncs[0].type != DRM_XE_SYNC_TYPE_USER_FENCE)
+ w->xe.exec.num_syncs++;
}
w->xe.syncs = calloc(w->xe.exec.num_syncs, sizeof(*w->xe.syncs));
/* fill syncs */
i = 0;
/* out fence */
- w->xe.syncs[i].handle = syncobj_create(fd, 0);
- w->xe.syncs[i].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
- w->xe.syncs[i++].flags = DRM_XE_SYNC_FLAG_SIGNAL;
+ if (vm->compute_mode) {
+ w->xe.syncs[i].type = DRM_XE_SYNC_TYPE_USER_FENCE;
+ w->xe.syncs[i].flags = DRM_XE_SYNC_FLAG_SIGNAL;
+ w->xe.syncs[i].addr = w->xe.exec.address + offsetof(struct xe_spin, exec_sync);
+ w->xe.syncs[i++].timeline_value = user_fence_value;
+ } else {
+ w->xe.syncs[i].handle = syncobj_create(fd, 0);
+ w->xe.syncs[i].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
+ w->xe.syncs[i++].flags = DRM_XE_SYNC_FLAG_SIGNAL;
+ }
/* in fence(s) */
for_each_dep(dep, w->data_deps) {
int dep_idx = w->idx + dep->target;
- igt_assert(wrk->steps[dep_idx].xe.syncs && wrk->steps[dep_idx].xe.syncs[0].handle);
- w->xe.syncs[i].handle = wrk->steps[dep_idx].xe.syncs[0].handle;
- w->xe.syncs[i++].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
+ if (wrk->steps[dep_idx].xe.syncs[0].type == DRM_XE_SYNC_TYPE_USER_FENCE)
+ continue;
+ w->xe.syncs[i] = wrk->steps[dep_idx].xe.syncs[0];
+ w->xe.syncs[i++].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
}
for_each_dep(dep, w->fence_deps) {
int dep_idx = w->idx + dep->target;
- igt_assert(wrk->steps[dep_idx].xe.syncs && wrk->steps[dep_idx].xe.syncs[0].handle);
- w->xe.syncs[i].handle = wrk->steps[dep_idx].xe.syncs[0].handle;
- w->xe.syncs[i++].type = DRM_XE_SYNC_TYPE_SYNCOBJ;
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
+ if (wrk->steps[dep_idx].xe.syncs[0].type == DRM_XE_SYNC_TYPE_USER_FENCE)
+ continue;
+ w->xe.syncs[i] = wrk->steps[dep_idx].xe.syncs[0];
+ w->xe.syncs[i++].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
}
w->xe.exec.syncs = to_user_pointer(w->xe.syncs);
}
+static void xe_sync_user_fence_deps(struct workload *wrk, struct w_step *w)
+{
+ struct dep_entry *dep;
+
+ for_each_dep(dep, w->data_deps) {
+ int dep_idx = w->idx + dep->target;
+
+ igt_assert(dep_idx >= 0 && dep_idx < w->idx);
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
+ if (wrk->steps[dep_idx].xe.syncs[0].type == DRM_XE_SYNC_TYPE_USER_FENCE)
+ w_step_sync(&wrk->steps[dep_idx]);
+ }
+
+ for_each_dep(dep, w->fence_deps) {
+ int dep_idx = w->idx + dep->target;
+
+ igt_assert(dep_idx >= 0 && dep_idx < w->idx);
+ igt_assert(wrk->steps[dep_idx].xe.syncs);
+ if (wrk->steps[dep_idx].xe.syncs[0].type == DRM_XE_SYNC_TYPE_USER_FENCE)
+ w_step_sync(&wrk->steps[dep_idx]);
+ }
+}
+
static bool set_priority(uint32_t ctx_id, int prio)
{
struct drm_i915_gem_context_param param = {
@@ -2190,7 +2275,7 @@ static void allocate_contexts(unsigned int id, struct workload *wrk)
w->wrk = wrk;
- if (w->type == VM_CREATE)
+ if (w->type == VM_CREATE || w->type == VM_COMPUTE_MODE)
continue;
ctx = w->context + 1;
@@ -2427,6 +2512,14 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk)
struct ctx *ctx;
unsigned int i;
+ for_each_w_step(w, wrk) {
+ if (w->type == VM_COMPUTE_MODE) {
+ igt_assert_lt((unsigned int)w->vm_id, wrk->nr_vms);
+ igt_assert(wrk->vm_list[w->vm_id].declared);
+ wrk->vm_list[w->vm_id].compute_mode = true;
+ }
+ }
+
/* Slot 0 is the implicit/default VM. */
xe_vm_create_(&wrk->vm_list[0]);
wrk->vm_list[0].ahnd = intel_allocator_open(fd, wrk->vm_list[0].id,
@@ -2437,6 +2530,9 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk)
continue;
xe_vm_create_(&wrk->vm_list[i]);
+ if (wrk->vm_list[i].compute_mode)
+ wrk->vm_list[i].bind_exec_queue =
+ xe_bind_exec_queue_create(fd, wrk->vm_list[i].id, 0);
wrk->vm_list[i].ahnd =
intel_allocator_open(fd, wrk->vm_list[i].id,
INTEL_ALLOCATOR_RELOC);
@@ -2767,11 +2863,22 @@ static void w_sync_to(struct workload *wrk, struct w_step *w, int target)
static void do_xe_exec(struct workload *wrk, struct w_step *w)
{
struct xe_exec_queue *eq = xe_get_eq(wrk, w);
+ struct vm *vm = get_vm(wrk, w);
igt_assert(w->emit_fence <= 0);
if (w->emit_fence == -1)
syncobj_reset(fd, &w->xe.syncs[0].handle, 1);
+ /*
+ * LR mode reuses the same user-fence location for completion.
+ * Re-arm it before every submit so waiters do not observe the
+ * previous iteration's signaled value.
+ */
+ if (vm->compute_mode)
+ w->xe.data->spin.exec_sync = 0;
+
+ xe_sync_user_fence_deps(wrk, w);
+
/* update duration if random */
if (w->duration.max != w->duration.min) {
w->duration.requested_ticks = xe_spin_nsec_to_ticks(fd, eq->hwe_list[0].gt_id,
@@ -2976,7 +3083,8 @@ static void *run_workload(void *data)
w->type == BOND ||
w->type == WORKINGSET ||
w->type == VM_CREATE ||
- w->type == CTX_VM) {
+ w->type == CTX_VM ||
+ w->type == VM_COMPUTE_MODE) {
/* No action for these at execution time. */
continue;
}
@@ -3066,14 +3174,35 @@ static void *run_workload(void *data)
for_each_w_step(w, wrk) {
if (w->type == BATCH) {
w_step_sync(w);
- syncobj_destroy(fd, w->xe.syncs[0].handle);
+ if (w->xe.syncs[0].type == DRM_XE_SYNC_TYPE_SYNCOBJ)
+ syncobj_destroy(fd, w->xe.syncs[0].handle);
free(w->xe.syncs);
- xe_vm_unbind_sync(fd, get_vm(wrk, w)->id, 0, w->xe.exec.address,
- w->bb_size);
+ if (get_vm(wrk, w)->compute_mode) {
+ struct vm *vm = get_vm(wrk, w);
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = to_user_pointer(&w->xe.data->vm_sync),
+ .timeline_value = user_fence_value,
+ };
+
+ xe_vm_unbind_async(fd, vm->id, vm->bind_exec_queue,
+ 0, w->xe.exec.address, w->bb_size,
+ &sync, 1);
+ xe_wait_ufence(fd, &w->xe.data->vm_sync,
+ user_fence_value,
+ vm->bind_exec_queue,
+ 10 * NSEC_PER_SEC);
+ w->xe.data->vm_sync = 0;
+ } else {
+ xe_vm_unbind_sync(fd, get_vm(wrk, w)->id, 0,
+ w->xe.exec.address, w->bb_size);
+ }
gem_munmap(w->xe.data, w->bb_size);
gem_close(fd, w->bb_handle);
} else if (w->type == SW_FENCE) {
- syncobj_destroy(fd, w->xe.syncs[0].handle);
+ if (w->xe.syncs[0].type == DRM_XE_SYNC_TYPE_SYNCOBJ)
+ syncobj_destroy(fd, w->xe.syncs[0].handle);
free(w->xe.syncs);
}
}
diff --git a/benchmarks/wsim/README b/benchmarks/wsim/README
index 364759da0..8a7d79635 100644
--- a/benchmarks/wsim/README
+++ b/benchmarks/wsim/README
@@ -11,7 +11,7 @@ P|S|X.<uint>.<int>
d|p|s|t|q|a|T.<int>,...
b.<uint>.<str>[|<str>].<str>
w|W.<uint>.<str>[/<str>]...
-V.<uint>
+V|c.<uint>
v.<uint>.<uint>
f
@@ -45,6 +45,7 @@ VM (Virtual Memory) management steps (Xe: active; i915: ignored):
'V' - Create VM with id N (V.N, VM ids are 1-based).
'v' - Assign VM N to context/queue M (v.N.M).
+ 'c' - Enable compute/LR mode for VM N (c.N).
Engine ids: DEFAULT, RCS, BCS, VCS, VCS1, VCS2, VECS
@@ -95,7 +96,7 @@ Batch durations can also be specified as infinite by using the '*' in the
duration field. Such batches must be ended by the terminate command ('T')
otherwise they will cause a GPU hang to be reported.
-VM Example:
+VM Examples:
V.1
M.1.VCS
@@ -107,6 +108,18 @@ Creates VM 1, configures context 1 with a VCS engine map, assigns context 1
to VM 1, enables load balancing for context 1, and runs a single 1ms VCS
batch.
+ V.1
+ c.1
+ v.1.1
+ v.1.2
+ 1.BCS.5000.0.0
+ 2.CCS.7000000.-1.0
+ 1.BCS.5000.-1.1
+
+Creates VM 1, enables compute/LR mode on it, assigns contexts 1 and 2 to the
+same VM, then runs BCS and CCS work with cross-step dependencies (CCS depends
+on the first BCS step, and the final BCS step depends on the CCS step).
+
Xe and i915 differences
------------------------
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: add explicit VM create/assign steps Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: add compute/LR mode support for Xe VMs Marcin Bernatowicz
@ 2026-08-10 11:24 ` Patchwork
2026-08-10 11:34 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-08-10 11:24 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6254 bytes --]
== Series Details ==
Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
URL : https://patchwork.freedesktop.org/series/170422/
State : success
== Summary ==
CI Bug Log - changes from IGT_9047 -> IGTPW_15647
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/index.html
Participating hosts (38 -> 35)
------------------------------
Additional (1): bat-dg2-9
Missing (4): bat-dg2-14 bat-dg2-13 fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_15647 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4077]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4079])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#15657])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#11681] / [i915#6621])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#5190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4215] / [i915#5190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4212]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#12343] / [i915#5354])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#3708])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#3708] / [i915#4077]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#3291] / [i915#3708]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/bat-dg2-9/igt@prime_vgem@basic-write.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9047 -> IGTPW_15647
* Linux: CI_DRM_18962 -> CI_DRM_18972
CI-20190529: 20190529
CI_DRM_18962: 01d30c194951b8794c33f0d7f559bc4a1c9b7630 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18972: 64945e34f2f3505d1def53d6752c04ddca144a92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9047: 9047
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/index.html
[-- Attachment #2: Type: text/html, Size: 7561 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
` (2 preceding siblings ...)
2026-08-10 11:24 ` ✓ i915.CI.BAT: success for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2) Patchwork
@ 2026-08-10 11:34 ` Patchwork
2026-08-10 14:02 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-10 15:51 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-08-10 11:34 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5024 bytes --]
== Series Details ==
Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
URL : https://patchwork.freedesktop.org/series/170422/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9047_BAT -> XEIGTPW_15647_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 15)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15647_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* IGT: IGT_9047 -> IGTPW_15647
* Linux: xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70 -> xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a
IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9047: 9047
xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70: 2fb212a145eaedc46c59605710573661f6ab1d70
xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a: 2de1755571efc432ef6cc8512d080f68203a1d3a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/index.html
[-- Attachment #2: Type: text/html, Size: 5947 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
` (3 preceding siblings ...)
2026-08-10 11:34 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-10 14:02 ` Patchwork
2026-08-11 10:15 ` Bernatowicz, Marcin
2026-08-10 15:51 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-08-10 14:02 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 61778 bytes --]
== Series Details ==
Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
URL : https://patchwork.freedesktop.org/series/170422/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9047_FULL -> XEIGTPW_15647_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15647_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15647_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15647_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][1] -> [SKIP][2] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@core_hotunplug@hotreplug.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@core_hotunplug@hotreplug.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-bmg: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
Known issues
------------
Here are the changes found in XEIGTPW_15647_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#8583])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d@basic:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#6011])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_3d@basic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2370])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7679])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#7084] / [Intel XE#8150])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7358])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-10/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2320]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1424]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2286] / [Intel XE#6035])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4422] / [Intel XE#7442])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1421])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][30] ([Intel XE#301]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7178] / [Intel XE#7349])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7179])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4141]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2311]) +26 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6312]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7905]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7399])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2313]) +25 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7865]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656] / [Intel XE#7905]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6911] / [Intel XE#7466])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7283])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7283]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4596] / [Intel XE#5854])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5021] / [Intel XE#7377])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2763] / [Intel XE#6886]) +8 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#4608])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#4608] / [Intel XE#7304])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#2893] / [Intel XE#7304])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1489]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2234])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3904] / [Intel XE#7342])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6503]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1499]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@kms_vrr@max-min.html
* igt@xe_configfs@ctx-restore-mid-bb-invalid:
- shard-bmg: [PASS][61] -> [ABORT][62] ([Intel XE#8007]) +1 other test abort
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_configfs@ctx-restore-mid-bb-invalid.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_configfs@ctx-restore-mid-bb-invalid.html
* igt@xe_evict@evict-beng-large:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@xe_evict@evict-beng-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#6321] / [Intel XE#8355])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#8370]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7482]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-5/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1392])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@many-multi-queue-prefetch:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8374]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#8374]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-4/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#8364]) +10 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@many-execs-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#8364])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@xe_exec_multi_queue@many-execs-dyn-priority.html
* igt@xe_exec_system_allocator@process-many-stride-malloc-prefetch-race:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#8589]) +115 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@xe_exec_system_allocator@process-many-stride-malloc-prefetch-race.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_system_allocator@process-many-stride-malloc-prefetch-race.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#8589]) +17 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#8378]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#8378]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103]) -> ([PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [SKIP][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129]) ([Intel XE#2457] / [Intel XE#7405])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-3/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-3/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-1/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-8/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-1/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-8/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-3/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-10/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-10/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6964]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#6964])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-6/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@random:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#7793])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_page_reclaim@random.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-lnl: NOTRUN -> [FAIL][133] ([Intel XE#7695])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-5/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#7599])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-3/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#4733] / [Intel XE#7417])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#944])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#944])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][138] -> [FAIL][139] ([Intel XE#6569])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [PASS][140] -> [FAIL][141] ([Intel XE#7992]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#8340])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][144] ([Intel XE#301]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][146] ([Intel XE#1503]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][148] ([Intel XE#8399]) -> [PASS][149] +1 other test pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race:
- shard-bmg: [SKIP][150] ([Intel XE#8589]) -> [PASS][151] +31 other tests pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-bmg: [ABORT][152] ([Intel XE#8007]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [FAIL][154] ([Intel XE#8555]) -> [PASS][155] +5 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_sriov_scheduling@equal-throughput-low-priority:
- shard-bmg: [FAIL][156] ([Intel XE#7992]) -> [PASS][157] +1 other test pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_sriov_scheduling@equal-throughput-low-priority.html
* igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [FAIL][158] ([Intel XE#8526]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [ABORT][160] ([Intel XE#3119]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-lnl-3/igt@xe_wedged@basic-wedged.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-3/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][162] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][163] ([Intel XE#8589])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][164] ([Intel XE#8589]) -> [SKIP][165] ([Intel XE#2327])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][166] ([Intel XE#2327]) -> [SKIP][167] ([Intel XE#8589])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][168] ([Intel XE#1124]) -> [SKIP][169] ([Intel XE#8589]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: [SKIP][170] ([Intel XE#367]) -> [SKIP][171] ([Intel XE#8589])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][172] ([Intel XE#3432]) -> [SKIP][173] ([Intel XE#8589])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][174] ([Intel XE#8589]) -> [SKIP][175] ([Intel XE#2887]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][176] ([Intel XE#2887]) -> [SKIP][177] ([Intel XE#8589]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][178] ([Intel XE#2252]) -> [SKIP][179] ([Intel XE#8589]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][180] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][181] ([Intel XE#8589])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: [SKIP][182] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][183] ([Intel XE#8589])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-bmg: [SKIP][184] ([Intel XE#8589]) -> [SKIP][185] ([Intel XE#2320])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x10.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-bmg: [SKIP][186] ([Intel XE#2320]) -> [SKIP][187] ([Intel XE#8589])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][188] ([Intel XE#8589]) -> [SKIP][189] ([Intel XE#2321] / [Intel XE#7355])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][190] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][191] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- shard-bmg: [SKIP][192] ([Intel XE#8265]) -> [SKIP][193] ([Intel XE#8589])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][194] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][195] ([Intel XE#8589])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-bmg: [SKIP][196] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][197] ([Intel XE#8589])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: [SKIP][198] ([Intel XE#8589]) -> [SKIP][199] ([Intel XE#7178] / [Intel XE#7351])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][200] ([Intel XE#2311]) -> [SKIP][201] ([Intel XE#8589]) +12 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][202] ([Intel XE#8589]) -> [SKIP][203] ([Intel XE#4141]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][204] ([Intel XE#7774]) -> [SKIP][205] ([Intel XE#4141])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][206] ([Intel XE#4141]) -> [SKIP][207] ([Intel XE#8589]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][208] ([Intel XE#8589]) -> [SKIP][209] ([Intel XE#2311]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][210] ([Intel XE#8589]) -> [SKIP][211] ([Intel XE#2313]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][212] ([Intel XE#2313]) -> [SKIP][213] ([Intel XE#8589]) +10 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-blt.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][214] ([Intel XE#7061]) -> [SKIP][215] ([Intel XE#8589]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][216] ([Intel XE#3544]) -> [SKIP][217] ([Intel XE#3374] / [Intel XE#3544])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][218] ([Intel XE#7283]) -> [SKIP][219] ([Intel XE#8589])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][220] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][221] ([Intel XE#8589])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-y.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: [SKIP][222] ([Intel XE#8589]) -> [SKIP][223] ([Intel XE#2763] / [Intel XE#6886])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][224] ([Intel XE#1489]) -> [SKIP][225] ([Intel XE#8589]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-bmg: [SKIP][226] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][227] ([Intel XE#8589]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@kms_psr@fbc-psr2-dpms.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_sharpness_filter@invalid-filter-with-nearest-neighbor:
- shard-bmg: [SKIP][228] ([Intel XE#6503]) -> [SKIP][229] ([Intel XE#8589])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-nearest-neighbor.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-nearest-neighbor.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][230] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][231] ([Intel XE#2426] / [Intel XE#5848])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][232] ([Intel XE#8589]) -> [SKIP][233] ([Intel XE#1499])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-bmg: [SKIP][234] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][235] ([Intel XE#8589]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: [SKIP][236] ([Intel XE#8374]) -> [SKIP][237] ([Intel XE#8589]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_multi_queue@priority:
- shard-bmg: [SKIP][238] ([Intel XE#8589]) -> [SKIP][239] ([Intel XE#8364])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-5/igt@xe_exec_multi_queue@priority.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-3/igt@xe_exec_multi_queue@priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-userptr-invalidate:
- shard-bmg: [SKIP][240] ([Intel XE#8364]) -> [SKIP][241] ([Intel XE#8589]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-userptr-invalidate.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-rebind:
- shard-bmg: [SKIP][242] ([Intel XE#8378]) -> [SKIP][243] ([Intel XE#8589]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-rebind.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-rebind.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: [SKIP][244] ([Intel XE#944]) -> [SKIP][245] ([Intel XE#8589])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-9/igt@xe_query@multigpu-query-invalid-query.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@xe_query@multigpu-query-invalid-query.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526
[Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#8589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8589
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9047 -> IGTPW_15647
* Linux: xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70 -> xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a
IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9047: 9047
xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70: 2fb212a145eaedc46c59605710573661f6ab1d70
xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a: 2de1755571efc432ef6cc8512d080f68203a1d3a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/index.html
[-- Attachment #2: Type: text/html, Size: 73237 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
` (4 preceding siblings ...)
2026-08-10 14:02 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-08-10 15:51 ` Patchwork
2026-08-11 10:16 ` Bernatowicz, Marcin
5 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-08-10 15:51 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 147409 bytes --]
== Series Details ==
Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
URL : https://patchwork.freedesktop.org/series/170422/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18972_full -> IGTPW_15647_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15647_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15647_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_15647/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15647_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-snb: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
Known issues
------------
Here are the changes found in IGTPW_15647_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][4] ([i915#13356] / [i915#16348]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-6/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@gem_ccs@suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [FAIL][9] ([i915#15454])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#6335])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#8562])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][13] ([i915#1099])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][19] ([i915#13390])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk11/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3711])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +12 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-17/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#7276])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][36] -> [ABORT][37] ([i915#15131] / [i915#15542]) +1 other test abort
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@gem_exec_suspend@basic-s0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#12193])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4565])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-snb: NOTRUN -> [SKIP][44] +171 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb4/igt@gem_lmem_swapping@smem-oom.html
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gem_mmap_wc@copy.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#13398])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4885])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4885])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4885])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#15656])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282] / [i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282] / [i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282] / [i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@gem_userptr_blits@forbidden-operations.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#14544] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@gem_userptr_blits@unsync-overlap.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@gem_userptr_blits@unsync-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@gen9_exec_parse@bb-start-param.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@gen9_exec_parse@valid-registers.html
* igt@gpu_buddy@gpu_buddy:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#15678])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@gpu_buddy@gpu_buddy.html
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#15678])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@gpu_buddy@gpu_buddy.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#15678])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@gpu_buddy@gpu_buddy.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#15678] / [i915#16638])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@gpu_buddy@gpu_buddy.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#13786])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#15479]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][93] ([i915#15342]) +1 other test abort
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][94] ([i915#15342]) +1 other test abort
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#15479]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#8399])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][97] ([i915#13790] / [i915#2681]) +1 other test warn
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#14498])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [PASS][99] -> [INCOMPLETE][100] ([i915#13356])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#6188])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: NOTRUN -> [INCOMPLETE][105] ([i915#4817])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk11: NOTRUN -> [INCOMPLETE][106] ([i915#16182] / [i915#4817])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk11/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#16182] / [i915#4817])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk1/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#5190])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][113] ([i915#14888]) +3 other tests fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][116] ([i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][119] ([i915#1769])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +8 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#15733] / [i915#5138])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][128] +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#3828]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3828])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#3828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3828]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3828])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-snb: [PASS][136] -> [FAIL][137] ([i915#16662])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][141] +70 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6095]) +232 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +100 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +77 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#6095]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +54 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +44 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#12805]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][150] -> [INCOMPLETE][151] ([i915#14694] / [i915#15582])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +12 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#6095]) +59 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk10: NOTRUN -> [INCOMPLETE][154] ([i915#15582]) +1 other test incomplete
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +34 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][158] +17 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk11/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#3742])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#11151])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#11151])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][163] +7 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#16471])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_chamelium_color_pipeline@plane-lut1d.html
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#16471])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#16471])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_chamelium_color_pipeline@plane-lut1d.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#16464] / [i915#16471])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#16471]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#16471])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +6 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-6/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#14544] / [i915#7828])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#15330] / [i915#3116])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3299])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#15330] / [i915#3299]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116] / [i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#15330] / [i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#15330]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#15865]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_content_protection@lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#15865]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_content_protection@lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#15865])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#15865]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#15865])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#14544] / [i915#15865])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#15865]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][191] -> [FAIL][192] ([i915#13566]) +1 other test fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][193] ([i915#13566]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#13049]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [PASS][196] -> [FAIL][197] ([i915#13566]) +1 other test fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][198] +377 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk2/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8814])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8814]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#13049]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3555]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555]) +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][207] ([i915#13566]) +4 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][208] -> [INCOMPLETE][209] ([i915#12358] / [i915#14152]) +1 other test incomplete
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#4103]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#4103]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#4103]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#16119] / [i915#4213]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#13046] / [i915#5354]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][215] +100 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9809]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#9067])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#4103])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#4103]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#9723])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9723])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3804])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3804])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13749])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#13748])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#16361]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-6/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#16361]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#16361]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#16361])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#16361]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#16361]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#9878])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#16081])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#16081])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#16081])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#16081])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#16599])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#16599])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#16599])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#16599])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#16599])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@dsc:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#16600])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_feature_discovery@dsc.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#658])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_feature_discovery@vrr:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#16600])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3637] / [i915#9934])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][246] ([i915#12745] / [i915#4839])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][247] ([i915#12745])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9934]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#3637] / [i915#9934]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#9934]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#9934]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#9934])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#3637] / [i915#9934]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [PASS][254] -> [FAIL][255] ([i915#13027]) +1 other test fail
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#15643]) +5 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#15643])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#15643]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15643])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#15643]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#15643]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#15643] / [i915#5190])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#15991] / [i915#5354]) +13 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#5439])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#5439])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15989]) +15 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15989]) +9 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15989]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544]) +10 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][271] +96 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#15990]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: [PASS][273] -> [SKIP][274] ([i915#15989]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#14544] / [i915#15102]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15990] / [i915#8708]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#1825]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15991] / [i915#1825]) +14 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#15102] / [i915#3023])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#10055])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#10055])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#15102]) +32 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#15102]) +17 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#15102]) +26 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#15991]) +16 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15990]) +14 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15989]) +12 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#15989]) +17 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15989]) +21 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#15990]) +10 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#15104] / [i915#15990]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#15104] / [i915#15990]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15104] / [i915#15990]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#15990] / [i915#8708]) +8 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#15102] / [i915#3023]) +18 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#15990] / [i915#8708]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-glk10: NOTRUN -> [SKIP][297] +51 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#15102]) +43 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#15102]) +18 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#15991]) +20 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][301] +45 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_getfb@getfb-handle-protection:
- shard-dg1: [PASS][302] -> [DMESG-WARN][303] ([i915#4423]) +2 other tests dmesg-warn
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-17/igt@kms_getfb@getfb-handle-protection.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-17/igt@kms_getfb@getfb-handle-protection.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][304] -> [SKIP][305] ([i915#15725])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#12713] / [i915#16518])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8228])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8228])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15458])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#15638] / [i915#15722])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-glk: NOTRUN -> [DMESG-FAIL][312] ([i915#118] / [i915#16396])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#14712])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#15709]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#15709]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#15709]) +4 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15709])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#15709])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#14544] / [i915#15709])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#15709]) +3 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#16112])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-snb: [PASS][322] -> [ABORT][323] ([i915#15840]) +1 other test abort
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk10: NOTRUN -> [FAIL][324] ([i915#10647] / [i915#12169])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][325] ([i915#10647]) +1 other test fail
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#13958]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#13958])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-x.html
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#13958])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-x.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#13958])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-x.html
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#13958])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-3/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#14259])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#14259])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#6953])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#15329]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#15329]) +4 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#12343] / [i915#5354])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#12343] / [i915#5354])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#12343] / [i915#9812])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#12343])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#12343] / [i915#5354]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#13441])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#15948])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#15948])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#15739])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#15739])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][346] -> [SKIP][347] ([i915#15073])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#15073])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#15403])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#4077]) +8 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-17/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][351] -> [INCOMPLETE][352] ([i915#14419])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#6524])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#6524])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][355] ([i915#11520])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#11520]) +8 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#11520]) +4 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#11520]) +5 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][359] ([i915#11520]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9808])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#12316]) +3 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][362] ([i915#11520]) +7 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#11520]) +5 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#11520]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#14544] / [i915#9683])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#9683]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#9683])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#9683]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#9683]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#4348]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +22 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +14 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#9732]) +10 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#9688]) +8 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#9732]) +19 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +14 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#15949])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#15949])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#15949])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#12755] / [i915#15867] / [i915#5190])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#5289]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#5289])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#5289]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12755] / [i915#15867])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][386] ([i915#13179]) +1 other test abort
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][387] -> [FAIL][388] ([i915#15106]) +1 other test fail
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][389] ([i915#12276]) +1 other test incomplete
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#3555] / [i915#9906])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3555] / [i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_vrr@negative-basic.html
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#3555] / [i915#9906])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][393] ([i915#3555] / [i915#9906])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-5/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#9906])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#9906])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][396] ([i915#4349]) +2 other tests fail
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][397] ([i915#15778])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-glk4/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#8516])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#8516])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl@share-import:
- shard-tglu: NOTRUN -> [SKIP][400] ([i915#16420])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-10/igt@prime_udl@share-import.html
* igt@prime_udl@share-import-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#16420])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-1/igt@prime_udl@share-import-addfb.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#3708] / [i915#4077])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-7/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#3708] / [i915#4077])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#3708] / [i915#4077])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][405] ([i915#3708])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-4/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][406] ([i915#3291] / [i915#3708])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#3291] / [i915#3708])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@prime_vgem@basic-read.html
- shard-dg1: NOTRUN -> [SKIP][408] ([i915#3708])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][409] ([i915#9917]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#9917]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#16066])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#16066])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#9917])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][414] ([i915#13356]) -> [PASS][415] +2 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_eio@suspend:
- shard-dg1: [DMESG-WARN][416] ([i915#4391] / [i915#4423]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-14/igt@gem_eio@suspend.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@gem_eio@suspend.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][418] ([i915#13356]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_linear_blits@interruptible:
- shard-dg1: [FAIL][420] ([i915#15391] / [i915#16503]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-14/igt@gem_linear_blits@interruptible.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-19/igt@gem_linear_blits@interruptible.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][422] ([i915#12964]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][424] ([i915#15726]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-1/igt@kms_3d@basic.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-6/igt@kms_3d@basic.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg1: [DMESG-WARN][426] ([i915#4423]) -> [PASS][427] +3 other tests pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][428] ([i915#13566]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][430] ([i915#13566]) -> [PASS][431] +3 other tests pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [FAIL][432] ([i915#10826]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4:
- shard-dg1: [FAIL][434] ([i915#14600]) -> [PASS][435] +1 other test pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-19/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-mtlp: [DMESG-WARN][436] ([i915#16495]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [SKIP][438] ([i915#15672]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][440] ([i915#15989]) -> [PASS][441] +11 other tests pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][442] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][444] ([i915#15073]) -> [PASS][445] +2 other tests pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][446] ([i915#15073]) -> [PASS][447] +1 other test pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][448] ([i915#15073]) -> [PASS][449] +1 other test pass
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][450] ([i915#12276]) -> [PASS][451] +2 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [FAIL][452] ([i915#4349]) -> [PASS][453] +5 other tests pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][454] ([i915#4349]) -> [PASS][455] +3 other tests pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][456] ([i915#3281]) -> [SKIP][457] ([i915#14544] / [i915#3281])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@gem_bad_reloc@negative-reloc-lut.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][458] ([i915#3555] / [i915#9323]) -> [SKIP][459] ([i915#14544] / [i915#3555] / [i915#9323])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#7697]) -> [SKIP][461] ([i915#7697])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#6335]) -> [SKIP][463] ([i915#6335])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#4525]) -> [SKIP][465] ([i915#4525])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][466] ([i915#6344]) -> [SKIP][467] ([i915#14544] / [i915#6344])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3281]) -> [SKIP][469] ([i915#3281])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][470] ([i915#4613]) -> [SKIP][471] ([i915#14544] / [i915#4613]) +2 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@gem_lmem_swapping@parallel-multi.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#4613]) -> [SKIP][473] ([i915#4613])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][474] ([i915#3297]) -> [SKIP][475] ([i915#14544] / [i915#3297])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#2527]) -> [SKIP][477] ([i915#2527])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [SKIP][478] ([i915#2527]) -> [SKIP][479] ([i915#14544] / [i915#2527]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@gen9_exec_parse@cmd-crossing-page.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#8399]) -> [SKIP][481] ([i915#8399])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][482] ([i915#7707]) -> [SKIP][483] ([i915#14544] / [i915#7707])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][484] ([i915#5286]) -> [SKIP][485] ([i915#14544] / [i915#5286])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#3638]) -> [SKIP][487] ([i915#3638])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][488] ([i915#3638]) -> [SKIP][489] ([i915#14544] / [i915#3638])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][490] ([i915#14098] / [i915#6095]) -> [SKIP][491] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#6095]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][494] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][495] ([i915#14098] / [i915#6095]) +4 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-rkl: [SKIP][496] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][497] ([i915#11151] / [i915#7828])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-rkl: [SKIP][498] ([i915#11151] / [i915#7828]) -> [SKIP][499] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15330]) -> [SKIP][501] ([i915#15330])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][502] ([i915#15865]) -> [SKIP][503] ([i915#9433])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#3555]) -> [SKIP][505] ([i915#3555]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][506] ([i915#13049] / [i915#14544]) -> [SKIP][507] ([i915#13049])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: [SKIP][508] ([i915#3555]) -> [SKIP][509] ([i915#14544] / [i915#3555])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][510] -> [SKIP][511] ([i915#14544]) +28 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- shard-rkl: [SKIP][512] ([i915#16361]) -> [SKIP][513] ([i915#14544] / [i915#16361]) +1 other test skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-rkl: [SKIP][514] ([i915#9934]) -> [SKIP][515] ([i915#14544] / [i915#9934])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#9934]) -> [SKIP][517] ([i915#9934]) +1 other test skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][518] ([i915#15643]) -> [SKIP][519] ([i915#14544] / [i915#15643]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#1825]) -> [SKIP][521] ([i915#1825]) +3 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][522] ([i915#14544]) -> [SKIP][523] +15 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][524] ([i915#1825]) -> [SKIP][525] ([i915#14544] / [i915#1825]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][526] ([i915#15102] / [i915#3023]) -> [SKIP][527] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][529] ([i915#15102] / [i915#3023]) +4 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][530] ([i915#5439]) -> [SKIP][531] ([i915#14544] / [i915#5439])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][532] ([i915#15102]) -> [SKIP][533] ([i915#14544] / [i915#15102]) +4 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move:
- shard-dg1: [SKIP][534] ([i915#15102] / [i915#4423]) -> [SKIP][535] ([i915#15102]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: [SKIP][536] ([i915#15990] / [i915#4423]) -> [SKIP][537] ([i915#15990])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][538] ([i915#4423]) -> [SKIP][539] +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-indfb-pgflip-blt.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#15102]) -> [SKIP][541] ([i915#15102]) +6 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][542] ([i915#10433] / [i915#15102]) -> [SKIP][543] ([i915#15102]) +3 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][544] ([i915#15102]) -> [SKIP][545] ([i915#10433] / [i915#15102]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][546] ([i915#1187] / [i915#12713] / [i915#16490]) -> [SKIP][547] ([i915#12713] / [i915#16490])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][548] ([i915#12713]) -> [SKIP][549] ([i915#1187] / [i915#12713])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: [SKIP][550] ([i915#15459]) -> [SKIP][551] ([i915#14544] / [i915#15459])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-1/igt@kms_joiner@basic-force-big-joiner.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][552] ([i915#15458]) -> [SKIP][553] ([i915#14544] / [i915#15458])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][554] ([i915#15709]) -> [SKIP][555] ([i915#14544] / [i915#15709])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][556] ([i915#15948]) -> [SKIP][557] ([i915#14544] / [i915#15948])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][558] ([i915#15128]) -> [FAIL][559] ([i915#16479])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [ABORT][560] ([i915#15132]) -> [INCOMPLETE][561] ([i915#14419])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][562] ([i915#6524]) -> [SKIP][563] ([i915#14544] / [i915#6524]) +1 other test skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][564] ([i915#11520]) -> [SKIP][565] ([i915#11520] / [i915#14544]) +3 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][566] ([i915#11520] / [i915#14544]) -> [SKIP][567] ([i915#11520])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][568] ([i915#14544] / [i915#9683]) -> [SKIP][569] ([i915#9683])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu:
- shard-dg1: [SKIP][570] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][571] ([i915#1072] / [i915#9732])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-16/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-rkl: [SKIP][572] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][573] ([i915#1072] / [i915#9732]) +5 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-5/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-basic:
- shard-dg1: [SKIP][574] ([i915#1072] / [i915#9732]) -> [SKIP][575] ([i915#1072] / [i915#4423] / [i915#9732])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-12/igt@kms_psr@psr2-basic.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-13/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][576] ([i915#1072] / [i915#9732]) -> [SKIP][577] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][578] ([i915#9906]) -> [SKIP][579] ([i915#14544] / [i915#9906])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][580] ([i915#13029] / [i915#15778]) -> [ABORT][581] ([i915#15778])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-dg1-17/igt@perf_pmu@module-unload.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-dg1-14/igt@perf_pmu@module-unload.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16495]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16495
[i915#16503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16503
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16638
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16662
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[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_9047 -> IGTPW_15647
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18972: 64945e34f2f3505d1def53d6752c04ddca144a92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9047: 9047
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/index.html
[-- Attachment #2: Type: text/html, Size: 195684 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 14:02 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-08-11 10:15 ` Bernatowicz, Marcin
0 siblings, 0 replies; 9+ messages in thread
From: Bernatowicz, Marcin @ 2026-08-11 10:15 UTC (permalink / raw)
To: igt-dev
On 8/10/2026 4:02 PM, Patchwork wrote:
> == Series Details ==
>
> Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
> URL : https://patchwork.freedesktop.org/series/170422/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_9047_FULL -> XEIGTPW_15647_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_15647_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_15647_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 (2 -> 2)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_15647_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@core_hotunplug@hotreplug:
> - shard-bmg: [PASS][1] -> [SKIP][2] +1 other test skip
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-7/igt@core_hotunplug@hotreplug.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@core_hotunplug@hotreplug.html
>
> * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
> - shard-bmg: [PASS][3] -> [DMESG-FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9047/shard-bmg-6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
>
Not related to the change.
--
marcin
>
> Known issues
> ------------
[cut]
>
>
> Build changes
> -------------
>
> * IGT: IGT_9047 -> IGTPW_15647
> * Linux: xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70 -> xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a
>
> IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_9047: 9047
> xe-5562-2fb212a145eaedc46c59605710573661f6ab1d70: 2fb212a145eaedc46c59605710573661f6ab1d70
> xe-5569-2de1755571efc432ef6cc8512d080f68203a1d3a: 2de1755571efc432ef6cc8512d080f68203a1d3a
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15647/index.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
2026-08-10 15:51 ` ✗ i915.CI.Full: " Patchwork
@ 2026-08-11 10:16 ` Bernatowicz, Marcin
0 siblings, 0 replies; 9+ messages in thread
From: Bernatowicz, Marcin @ 2026-08-11 10:16 UTC (permalink / raw)
To: igt-dev
On 8/10/2026 5:51 PM, Patchwork wrote:
> == Series Details ==
>
> Series: benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2)
> URL : https://patchwork.freedesktop.org/series/170422/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_18972_full -> IGTPW_15647_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_15647_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_15647_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_15647/index.html
>
> Participating hosts (10 -> 10)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_15647_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
> - shard-snb: [PASS][1] -> [DMESG-WARN][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18972/shard-snb5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/shard-snb6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
Not related to the change.
--
marcin
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_15647_full that come from known issues:
>
[cut]
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_9047 -> IGTPW_15647
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_18972: 64945e34f2f3505d1def53d6752c04ddca144a92 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_15647: 3448f4dd0308771686f55c11b3e7958f3c420fd3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_9047: 9047
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15647/index.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-08-11 10:17 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 9:39 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: explicit VM create/assign + LR mode Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: add explicit VM create/assign steps Marcin Bernatowicz
2026-08-10 9:39 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: add compute/LR mode support for Xe VMs Marcin Bernatowicz
2026-08-10 11:24 ` ✓ i915.CI.BAT: success for benchmarks/gem_wsim: explicit VM create/assign + LR mode (rev2) Patchwork
2026-08-10 11:34 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-10 14:02 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-08-11 10:15 ` Bernatowicz, Marcin
2026-08-10 15:51 ` ✗ i915.CI.Full: " Patchwork
2026-08-11 10:16 ` Bernatowicz, Marcin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.