* [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix
@ 2023-12-14 20:13 Marcin Bernatowicz
2023-12-14 20:13 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Marcin Bernatowicz @ 2023-12-14 20:13 UTC (permalink / raw)
To: igt-dev
This patch series introduces two key enhancements to the gem_wsim benchmark tool.
The first commit improves support for generations that do not use relocations.
The approach present in 'lib/igt_dummyload' has been adopted,
leveraging the 'intel_allocator' to compute offsets on these generations.
This change also introduces a shared 'struct vm' for both i915 and Xe,
which includes a 'vm_id' used by the 'intel_allocator' for address assignment.
This enhances the compatibility of 'gem_wsim' with newer platforms running i915.
The second commit addresses an issue with the 'gem_mmap__wc' function,
which was found to be incompatible with discrete graphics cards.
The mapping approach from 'lib/igt_dummyload' has been adopted.
Marcin Bernatowicz (2):
benchmarks/gem_wsim: Support gens without relocations
benchmarks/gem_wsim: Fix mmap for discrete graphics cards
benchmarks/gem_wsim.c | 107 ++++++++++++++++++++++++++++++++----------
1 file changed, 81 insertions(+), 26 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz @ 2023-12-14 20:13 ` Marcin Bernatowicz 2024-07-23 9:52 ` Kamil Konieczny 2023-12-14 20:13 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards Marcin Bernatowicz ` (3 subsequent siblings) 4 siblings, 1 reply; 12+ messages in thread From: Marcin Bernatowicz @ 2023-12-14 20:13 UTC (permalink / raw) To: igt-dev This commit adopts the approach present in lib/igt_dummyload to support generations that do not use relocations. The intel_allocator is leveraged to compute offsets on these generations. Apart of this change, the 'struct vm' is now shared by both i915 and Xe. It includes a 'vm_id' that the intel_allocator uses for address assignment. This modification enhances gem_wsim compatibility with newer platforms running i915. v2: split mmap change to separate patch (Tvrtko) Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> --- benchmarks/gem_wsim.c | 96 ++++++++++++++++++++++++++++++++----------- 1 file changed, 71 insertions(+), 25 deletions(-) diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c index 30673da8f..a1db37d4e 100644 --- a/benchmarks/gem_wsim.c +++ b/benchmarks/gem_wsim.c @@ -205,7 +205,7 @@ struct w_step { uint32_t bb_handle; }; -struct xe_vm { +struct vm { uint32_t id; bool compute_mode; uint64_t ahnd; @@ -226,9 +226,9 @@ struct ctx { struct bond *bonds; bool load_balance; uint64_t sseu; + /* reference to vm */ + struct vm *vm; struct { - /* reference to vm */ - struct xe_vm *vm; /* exec queues */ unsigned int nr_queues; struct xe_exec_queue *queue_list; @@ -256,10 +256,8 @@ struct workload { unsigned int nr_ctxs; struct ctx *ctx_list; - struct { - unsigned int nr_vms; - struct xe_vm *vm_list; - } xe; + unsigned int nr_vms; + struct vm *vm_list; struct working_set **working_sets; /* array indexed by set id */ int max_working_set_id; @@ -1539,9 +1537,11 @@ static unsigned int create_bb(struct w_step *w, int self) /* Save delta for indirect read by COND_BBE */ *cs++ = MI_STORE_REGISTER_MEM_CMD | (1 + use_64b) | MI_CS_MMIO_DST; *cs++ = CS_GPR(NOW_TS); + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; w->i915.reloc[r].target_handle = self; w->i915.reloc[r].offset = offset_in_page(cs); - *cs++ = w->i915.reloc[r].delta = 4000; + w->i915.reloc[r].delta = 4000; + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; *cs++ = 0; r++; @@ -1556,17 +1556,21 @@ static unsigned int create_bb(struct w_step *w, int self) *cs++ = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | (1 + use_64b); w->i915.bb_duration = cs; *cs++ = 0; + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; w->i915.reloc[r].target_handle = self; w->i915.reloc[r].offset = offset_in_page(cs); - *cs++ = w->i915.reloc[r].delta = 4000; + w->i915.reloc[r].delta = 4000; + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; *cs++ = 0; r++; /* Otherwise back to recalculating delta */ *cs++ = MI_BATCH_BUFFER_START | 1 << 8 | use_64b; + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; w->i915.reloc[r].target_handle = self; w->i915.reloc[r].offset = offset_in_page(cs); - *cs++ = w->i915.reloc[r].delta = offset_in_page(jmp); + w->i915.reloc[r].delta = offset_in_page(jmp); + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; *cs++ = 0; r++; @@ -1648,10 +1652,10 @@ xe_get_eq(struct workload *wrk, const struct w_step *w) return eq; } -static struct xe_vm * -xe_get_vm(struct workload *wrk, const struct w_step *w) +static struct vm * +get_vm(struct workload *wrk, const struct w_step *w) { - return wrk->xe.vm_list; + return wrk->vm_list; } static uint32_t alloc_bo(int i915, unsigned long *size) @@ -1673,6 +1677,16 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) struct dep_entry *dep; unsigned int j = 0; unsigned int nr_obj = 2 + w->data_deps.nr; + unsigned int objflags = 0; + uint64_t addr; + struct vm *vm = get_vm(wrk, w); + + addr = gem_aperture_size(fd) / 2; + if (addr >> 32) + objflags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; + + if (vm->ahnd) + objflags |= EXEC_OBJECT_PINNED; w->i915.obj = calloc(nr_obj, sizeof(*w->i915.obj)); igt_assert(w->i915.obj); @@ -1680,11 +1694,18 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) w->bb_size = PAGE_SIZE; w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); w->i915.obj[j].flags = EXEC_OBJECT_WRITE; + if (vm->ahnd) { + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); + w->i915.obj[j].offset = CANONICAL(addr); + w->i915.obj[j].flags |= objflags; + } + j++; igt_assert(j < nr_obj); for_each_dep(dep, w->data_deps) { uint32_t dep_handle; + uint64_t dep_size; if (dep->working_set == -1) { int dep_idx = w->idx + dep->target; @@ -1694,6 +1715,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) igt_assert(wrk->steps[dep_idx].type == BATCH); dep_handle = wrk->steps[dep_idx].i915.obj[0].handle; + dep_size = w->bb_size; } else { struct working_set *set; @@ -1707,18 +1729,33 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) igt_assert(set->sizes[dep->target].size); dep_handle = set->handles[dep->target]; + dep_size = set->sizes[dep->target].size; } w->i915.obj[j].flags = dep->write ? EXEC_OBJECT_WRITE : 0; w->i915.obj[j].handle = dep_handle; + if (vm->ahnd) { + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, dep_size, 0); + w->i915.obj[j].offset = CANONICAL(addr); + w->i915.obj[j].flags |= objflags; + } j++; igt_assert(j < nr_obj); } w->bb_handle = w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); + if (vm->ahnd) { + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); + w->i915.obj[j].offset = CANONICAL(addr); + w->i915.obj[j].flags |= objflags; + } w->i915.obj[j].relocation_count = create_bb(w, j); - igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); - w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); + if (vm->ahnd) { + w->i915.obj[j].relocation_count = 0; + } else { + igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); + w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); + } w->i915.eb.buffers_ptr = to_user_pointer(w->i915.obj); w->i915.eb.buffer_count = j + 1; @@ -1738,7 +1775,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) static void xe_alloc_step_batch(struct workload *wrk, struct w_step *w) { - struct xe_vm *vm = xe_get_vm(wrk, w); + struct vm *vm = get_vm(wrk, w); struct xe_exec_queue *eq = xe_get_eq(wrk, w); struct dep_entry *dep; int i; @@ -2032,7 +2069,7 @@ static void measure_active_set(struct workload *wrk) #define alloca0(sz) ({ size_t sz__ = (sz); memset(alloca(sz__), 0, sz__); }) -static void xe_vm_create_(struct xe_vm *vm) +static void xe_vm_create_(struct vm *vm) { uint32_t flags = 0; @@ -2046,7 +2083,7 @@ static void xe_vm_create_(struct xe_vm *vm) static void xe_exec_queue_create_(struct ctx *ctx, struct xe_exec_queue *eq) { struct drm_xe_exec_queue_create create = { - .vm_id = ctx->xe.vm->id, + .vm_id = ctx->vm->id, .width = 1, .num_placements = eq->nr_hwes, .instances = to_user_pointer(eq->hwe_list), @@ -2159,6 +2196,13 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) gem_context_get_param(fd, ¶m); igt_assert(param.value); share_vm = param.value; + wrk->nr_vms = 1; + wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm)); + igt_assert(wrk->vm_list); + wrk->vm_list->id = share_vm; + wrk->vm_list->ahnd = intel_allocator_open(fd, share_vm, + INTEL_ALLOCATOR_RELOC); + ctx2->vm = wrk->vm_list; break; } @@ -2174,6 +2218,7 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) ctx_id = args.ctx_id; ctx->id = ctx_id; ctx->sseu = device_sseu.slice_mask; + ctx->vm = wrk->vm_list; __configure_context(ctx_id, wrk->prio); @@ -2267,16 +2312,17 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk) unsigned int i; /* shortcut, create one vm */ - wrk->xe.nr_vms = 1; - wrk->xe.vm_list = calloc(wrk->xe.nr_vms, sizeof(struct xe_vm)); - wrk->xe.vm_list->compute_mode = false; - xe_vm_create_(wrk->xe.vm_list); - wrk->xe.vm_list->ahnd = intel_allocator_open(fd, wrk->xe.vm_list->id, + 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); __for_each_ctx(ctx, wrk, ctx_idx) { /* link with vm */ - ctx->xe.vm = wrk->xe.vm_list; + ctx->vm = wrk->vm_list; for_each_w_step(w, wrk) { if (w->context != ctx_idx) continue; @@ -2846,7 +2892,7 @@ static void *run_workload(void *data) w_step_sync(w); syncobj_destroy(fd, w->xe.syncs[0].handle); free(w->xe.syncs); - xe_vm_unbind_sync(fd, xe_get_vm(wrk, w)->id, 0, w->xe.exec.address, + 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); -- 2.31.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations 2023-12-14 20:13 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz @ 2024-07-23 9:52 ` Kamil Konieczny 2024-07-25 9:13 ` Bernatowicz, Marcin 0 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2024-07-23 9:52 UTC (permalink / raw) To: igt-dev Cc: Marcin Bernatowicz, Tvrtko Ursulin, Tvrtko Ursulin, zbigniew.kempczynski, lukasz.laguna Hi Marcin, On 2023-12-14 at 21:13:01 +0100, Marcin Bernatowicz wrote: > This commit adopts the approach present in lib/igt_dummyload > to support generations that do not use relocations. > The intel_allocator is leveraged to compute offsets on these generations. > Apart of this change, the 'struct vm' is now shared by both i915 and > Xe. It includes a 'vm_id' that the intel_allocator uses for address > assignment. > This modification enhances gem_wsim compatibility with newer platforms > running i915. Overall looks good, only few nits, see below. > > v2: split mmap change to separate patch (Tvrtko) Added new e-mails for Tvrtko: +Cc: Tvrtko Ursulin <tursulin@ursulin.net> +Cc: Tvrtko Ursulin <tursulin@igalia.com> > > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > --- > benchmarks/gem_wsim.c | 96 ++++++++++++++++++++++++++++++++----------- > 1 file changed, 71 insertions(+), 25 deletions(-) > > diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c > index 30673da8f..a1db37d4e 100644 > --- a/benchmarks/gem_wsim.c > +++ b/benchmarks/gem_wsim.c > @@ -205,7 +205,7 @@ struct w_step { > uint32_t bb_handle; > }; > > -struct xe_vm { > +struct vm { > uint32_t id; > bool compute_mode; > uint64_t ahnd; > @@ -226,9 +226,9 @@ struct ctx { > struct bond *bonds; > bool load_balance; > uint64_t sseu; > + /* reference to vm */ > + struct vm *vm; > struct { > - /* reference to vm */ > - struct xe_vm *vm; > /* exec queues */ > unsigned int nr_queues; > struct xe_exec_queue *queue_list; > @@ -256,10 +256,8 @@ struct workload { > unsigned int nr_ctxs; > struct ctx *ctx_list; > > - struct { > - unsigned int nr_vms; > - struct xe_vm *vm_list; > - } xe; > + unsigned int nr_vms; > + struct vm *vm_list; > > struct working_set **working_sets; /* array indexed by set id */ > int max_working_set_id; > @@ -1539,9 +1537,11 @@ static unsigned int create_bb(struct w_step *w, int self) > /* Save delta for indirect read by COND_BBE */ > *cs++ = MI_STORE_REGISTER_MEM_CMD | (1 + use_64b) | MI_CS_MMIO_DST; > *cs++ = CS_GPR(NOW_TS); > + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; > w->i915.reloc[r].target_handle = self; > w->i915.reloc[r].offset = offset_in_page(cs); > - *cs++ = w->i915.reloc[r].delta = 4000; > + w->i915.reloc[r].delta = 4000; > + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; > *cs++ = 0; > r++; > > @@ -1556,17 +1556,21 @@ static unsigned int create_bb(struct w_step *w, int self) > *cs++ = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | (1 + use_64b); > w->i915.bb_duration = cs; > *cs++ = 0; > + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; > w->i915.reloc[r].target_handle = self; > w->i915.reloc[r].offset = offset_in_page(cs); > - *cs++ = w->i915.reloc[r].delta = 4000; > + w->i915.reloc[r].delta = 4000; > + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; > *cs++ = 0; > r++; > > /* Otherwise back to recalculating delta */ > *cs++ = MI_BATCH_BUFFER_START | 1 << 8 | use_64b; > + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; > w->i915.reloc[r].target_handle = self; > w->i915.reloc[r].offset = offset_in_page(cs); > - *cs++ = w->i915.reloc[r].delta = offset_in_page(jmp); > + w->i915.reloc[r].delta = offset_in_page(jmp); > + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; > *cs++ = 0; > r++; > > @@ -1648,10 +1652,10 @@ xe_get_eq(struct workload *wrk, const struct w_step *w) > return eq; > } > > -static struct xe_vm * > -xe_get_vm(struct workload *wrk, const struct w_step *w) > +static struct vm * > +get_vm(struct workload *wrk, const struct w_step *w) You don't use 'w' here so maybe drop this param? > { > - return wrk->xe.vm_list; > + return wrk->vm_list; > } > > static uint32_t alloc_bo(int i915, unsigned long *size) > @@ -1673,6 +1677,16 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) > struct dep_entry *dep; > unsigned int j = 0; > unsigned int nr_obj = 2 + w->data_deps.nr; > + unsigned int objflags = 0; > + uint64_t addr; > + struct vm *vm = get_vm(wrk, w); > + > + addr = gem_aperture_size(fd) / 2; > + if (addr >> 32) > + objflags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; > + > + if (vm->ahnd) > + objflags |= EXEC_OBJECT_PINNED; > > w->i915.obj = calloc(nr_obj, sizeof(*w->i915.obj)); > igt_assert(w->i915.obj); > @@ -1680,11 +1694,18 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) > w->bb_size = PAGE_SIZE; > w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); > w->i915.obj[j].flags = EXEC_OBJECT_WRITE; > + if (vm->ahnd) { > + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); > + w->i915.obj[j].offset = CANONICAL(addr); > + w->i915.obj[j].flags |= objflags; > + } > + > j++; > igt_assert(j < nr_obj); > > for_each_dep(dep, w->data_deps) { > uint32_t dep_handle; > + uint64_t dep_size; > > if (dep->working_set == -1) { > int dep_idx = w->idx + dep->target; > @@ -1694,6 +1715,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) > igt_assert(wrk->steps[dep_idx].type == BATCH); > > dep_handle = wrk->steps[dep_idx].i915.obj[0].handle; > + dep_size = w->bb_size; > } else { > struct working_set *set; > > @@ -1707,18 +1729,33 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) > igt_assert(set->sizes[dep->target].size); > > dep_handle = set->handles[dep->target]; > + dep_size = set->sizes[dep->target].size; > } > > w->i915.obj[j].flags = dep->write ? EXEC_OBJECT_WRITE : 0; > w->i915.obj[j].handle = dep_handle; > + if (vm->ahnd) { > + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, dep_size, 0); > + w->i915.obj[j].offset = CANONICAL(addr); > + w->i915.obj[j].flags |= objflags; > + } > j++; > igt_assert(j < nr_obj); > } > > w->bb_handle = w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); > + if (vm->ahnd) { > + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); > + w->i915.obj[j].offset = CANONICAL(addr); > + w->i915.obj[j].flags |= objflags; > + } > w->i915.obj[j].relocation_count = create_bb(w, j); > - igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); > - w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); > + if (vm->ahnd) { > + w->i915.obj[j].relocation_count = 0; > + } else { > + igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); > + w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); > + } > > w->i915.eb.buffers_ptr = to_user_pointer(w->i915.obj); > w->i915.eb.buffer_count = j + 1; > @@ -1738,7 +1775,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) > static void > xe_alloc_step_batch(struct workload *wrk, struct w_step *w) > { > - struct xe_vm *vm = xe_get_vm(wrk, w); > + struct vm *vm = get_vm(wrk, w); > struct xe_exec_queue *eq = xe_get_eq(wrk, w); > struct dep_entry *dep; > int i; > @@ -2032,7 +2069,7 @@ static void measure_active_set(struct workload *wrk) > > #define alloca0(sz) ({ size_t sz__ = (sz); memset(alloca(sz__), 0, sz__); }) > > -static void xe_vm_create_(struct xe_vm *vm) > +static void xe_vm_create_(struct vm *vm) > { > uint32_t flags = 0; > > @@ -2046,7 +2083,7 @@ static void xe_vm_create_(struct xe_vm *vm) > static void xe_exec_queue_create_(struct ctx *ctx, struct xe_exec_queue *eq) > { > struct drm_xe_exec_queue_create create = { > - .vm_id = ctx->xe.vm->id, > + .vm_id = ctx->vm->id, > .width = 1, > .num_placements = eq->nr_hwes, > .instances = to_user_pointer(eq->hwe_list), > @@ -2159,6 +2196,13 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) > gem_context_get_param(fd, ¶m); > igt_assert(param.value); > share_vm = param.value; > + wrk->nr_vms = 1; > + wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm)); > + igt_assert(wrk->vm_list); > + wrk->vm_list->id = share_vm; > + wrk->vm_list->ahnd = intel_allocator_open(fd, share_vm, > + INTEL_ALLOCATOR_RELOC); --------------------------------^ Align to 'fd' > + ctx2->vm = wrk->vm_list; > break; > } > > @@ -2174,6 +2218,7 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) > ctx_id = args.ctx_id; > ctx->id = ctx_id; > ctx->sseu = device_sseu.slice_mask; > + ctx->vm = wrk->vm_list; > > __configure_context(ctx_id, wrk->prio); > > @@ -2267,16 +2312,17 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk) > unsigned int i; > > /* shortcut, create one vm */ > - wrk->xe.nr_vms = 1; > - wrk->xe.vm_list = calloc(wrk->xe.nr_vms, sizeof(struct xe_vm)); > - wrk->xe.vm_list->compute_mode = false; > - xe_vm_create_(wrk->xe.vm_list); > - wrk->xe.vm_list->ahnd = intel_allocator_open(fd, wrk->xe.vm_list->id, > + 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); Same here, align. > > __for_each_ctx(ctx, wrk, ctx_idx) { > /* link with vm */ > - ctx->xe.vm = wrk->xe.vm_list; > + ctx->vm = wrk->vm_list; Why do you treat vm_list as actual vm? Why not changing s/vm_list/vm/ With above aligning fixed Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > for_each_w_step(w, wrk) { > if (w->context != ctx_idx) > continue; > @@ -2846,7 +2892,7 @@ static void *run_workload(void *data) > w_step_sync(w); > syncobj_destroy(fd, w->xe.syncs[0].handle); > free(w->xe.syncs); > - xe_vm_unbind_sync(fd, xe_get_vm(wrk, w)->id, 0, w->xe.exec.address, > + 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); > -- > 2.31.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations 2024-07-23 9:52 ` Kamil Konieczny @ 2024-07-25 9:13 ` Bernatowicz, Marcin 0 siblings, 0 replies; 12+ messages in thread From: Bernatowicz, Marcin @ 2024-07-25 9:13 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Tvrtko Ursulin, Tvrtko Ursulin, zbigniew.kempczynski, lukasz.laguna Hi Kamil, On 7/23/2024 11:52 AM, Kamil Konieczny wrote: > Hi Marcin, > On 2023-12-14 at 21:13:01 +0100, Marcin Bernatowicz wrote: >> This commit adopts the approach present in lib/igt_dummyload >> to support generations that do not use relocations. >> The intel_allocator is leveraged to compute offsets on these generations. >> Apart of this change, the 'struct vm' is now shared by both i915 and >> Xe. It includes a 'vm_id' that the intel_allocator uses for address >> assignment. >> This modification enhances gem_wsim compatibility with newer platforms >> running i915. > > Overall looks good, only few nits, see below. > >> >> v2: split mmap change to separate patch (Tvrtko) > > Added new e-mails for Tvrtko: +Cc: Tvrtko Ursulin <tursulin@ursulin.net> > +Cc: Tvrtko Ursulin <tursulin@igalia.com> > >> >> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >> --- >> benchmarks/gem_wsim.c | 96 ++++++++++++++++++++++++++++++++----------- >> 1 file changed, 71 insertions(+), 25 deletions(-) >> >> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >> index 30673da8f..a1db37d4e 100644 >> --- a/benchmarks/gem_wsim.c >> +++ b/benchmarks/gem_wsim.c >> @@ -205,7 +205,7 @@ struct w_step { >> uint32_t bb_handle; >> }; >> >> -struct xe_vm { >> +struct vm { >> uint32_t id; >> bool compute_mode; >> uint64_t ahnd; >> @@ -226,9 +226,9 @@ struct ctx { >> struct bond *bonds; >> bool load_balance; >> uint64_t sseu; >> + /* reference to vm */ >> + struct vm *vm; >> struct { >> - /* reference to vm */ >> - struct xe_vm *vm; >> /* exec queues */ >> unsigned int nr_queues; >> struct xe_exec_queue *queue_list; >> @@ -256,10 +256,8 @@ struct workload { >> unsigned int nr_ctxs; >> struct ctx *ctx_list; >> >> - struct { >> - unsigned int nr_vms; >> - struct xe_vm *vm_list; >> - } xe; >> + unsigned int nr_vms; >> + struct vm *vm_list; >> >> struct working_set **working_sets; /* array indexed by set id */ >> int max_working_set_id; >> @@ -1539,9 +1537,11 @@ static unsigned int create_bb(struct w_step *w, int self) >> /* Save delta for indirect read by COND_BBE */ >> *cs++ = MI_STORE_REGISTER_MEM_CMD | (1 + use_64b) | MI_CS_MMIO_DST; >> *cs++ = CS_GPR(NOW_TS); >> + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; >> w->i915.reloc[r].target_handle = self; >> w->i915.reloc[r].offset = offset_in_page(cs); >> - *cs++ = w->i915.reloc[r].delta = 4000; >> + w->i915.reloc[r].delta = 4000; >> + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; >> *cs++ = 0; >> r++; >> >> @@ -1556,17 +1556,21 @@ static unsigned int create_bb(struct w_step *w, int self) >> *cs++ = MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE | (1 + use_64b); >> w->i915.bb_duration = cs; >> *cs++ = 0; >> + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; >> w->i915.reloc[r].target_handle = self; >> w->i915.reloc[r].offset = offset_in_page(cs); >> - *cs++ = w->i915.reloc[r].delta = 4000; >> + w->i915.reloc[r].delta = 4000; >> + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; >> *cs++ = 0; >> r++; >> >> /* Otherwise back to recalculating delta */ >> *cs++ = MI_BATCH_BUFFER_START | 1 << 8 | use_64b; >> + w->i915.reloc[r].presumed_offset = w->i915.obj[self].offset; >> w->i915.reloc[r].target_handle = self; >> w->i915.reloc[r].offset = offset_in_page(cs); >> - *cs++ = w->i915.reloc[r].delta = offset_in_page(jmp); >> + w->i915.reloc[r].delta = offset_in_page(jmp); >> + *cs++ = w->i915.reloc[r].presumed_offset + w->i915.reloc[r].delta; >> *cs++ = 0; >> r++; >> >> @@ -1648,10 +1652,10 @@ xe_get_eq(struct workload *wrk, const struct w_step *w) >> return eq; >> } >> >> -static struct xe_vm * >> -xe_get_vm(struct workload *wrk, const struct w_step *w) >> +static struct vm * >> +get_vm(struct workload *wrk, const struct w_step *w) > > You don't use 'w' here so maybe drop this param? For now, let's keep the changes in the patch minimal to avoid introducing unnecessary modifications. I anticipate that this parameter will become necessary as we expand our handling of multiple VMs. > >> { >> - return wrk->xe.vm_list; >> + return wrk->vm_list; >> } >> >> static uint32_t alloc_bo(int i915, unsigned long *size) >> @@ -1673,6 +1677,16 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) >> struct dep_entry *dep; >> unsigned int j = 0; >> unsigned int nr_obj = 2 + w->data_deps.nr; >> + unsigned int objflags = 0; >> + uint64_t addr; >> + struct vm *vm = get_vm(wrk, w); >> + >> + addr = gem_aperture_size(fd) / 2; >> + if (addr >> 32) >> + objflags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; >> + >> + if (vm->ahnd) >> + objflags |= EXEC_OBJECT_PINNED; >> >> w->i915.obj = calloc(nr_obj, sizeof(*w->i915.obj)); >> igt_assert(w->i915.obj); >> @@ -1680,11 +1694,18 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) >> w->bb_size = PAGE_SIZE; >> w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); >> w->i915.obj[j].flags = EXEC_OBJECT_WRITE; >> + if (vm->ahnd) { >> + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); >> + w->i915.obj[j].offset = CANONICAL(addr); >> + w->i915.obj[j].flags |= objflags; >> + } >> + >> j++; >> igt_assert(j < nr_obj); >> >> for_each_dep(dep, w->data_deps) { >> uint32_t dep_handle; >> + uint64_t dep_size; >> >> if (dep->working_set == -1) { >> int dep_idx = w->idx + dep->target; >> @@ -1694,6 +1715,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) >> igt_assert(wrk->steps[dep_idx].type == BATCH); >> >> dep_handle = wrk->steps[dep_idx].i915.obj[0].handle; >> + dep_size = w->bb_size; >> } else { >> struct working_set *set; >> >> @@ -1707,18 +1729,33 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) >> igt_assert(set->sizes[dep->target].size); >> >> dep_handle = set->handles[dep->target]; >> + dep_size = set->sizes[dep->target].size; >> } >> >> w->i915.obj[j].flags = dep->write ? EXEC_OBJECT_WRITE : 0; >> w->i915.obj[j].handle = dep_handle; >> + if (vm->ahnd) { >> + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, dep_size, 0); >> + w->i915.obj[j].offset = CANONICAL(addr); >> + w->i915.obj[j].flags |= objflags; >> + } >> j++; >> igt_assert(j < nr_obj); >> } >> >> w->bb_handle = w->i915.obj[j].handle = alloc_bo(fd, &w->bb_size); >> + if (vm->ahnd) { >> + addr = get_offset(vm->ahnd, w->i915.obj[j].handle, w->bb_size, 0); >> + w->i915.obj[j].offset = CANONICAL(addr); >> + w->i915.obj[j].flags |= objflags; >> + } >> w->i915.obj[j].relocation_count = create_bb(w, j); >> - igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); >> - w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); >> + if (vm->ahnd) { >> + w->i915.obj[j].relocation_count = 0; >> + } else { >> + igt_assert(w->i915.obj[j].relocation_count <= ARRAY_SIZE(w->i915.reloc)); >> + w->i915.obj[j].relocs_ptr = to_user_pointer(&w->i915.reloc); >> + } >> >> w->i915.eb.buffers_ptr = to_user_pointer(w->i915.obj); >> w->i915.eb.buffer_count = j + 1; >> @@ -1738,7 +1775,7 @@ alloc_step_batch(struct workload *wrk, struct w_step *w) >> static void >> xe_alloc_step_batch(struct workload *wrk, struct w_step *w) >> { >> - struct xe_vm *vm = xe_get_vm(wrk, w); >> + struct vm *vm = get_vm(wrk, w); >> struct xe_exec_queue *eq = xe_get_eq(wrk, w); >> struct dep_entry *dep; >> int i; >> @@ -2032,7 +2069,7 @@ static void measure_active_set(struct workload *wrk) >> >> #define alloca0(sz) ({ size_t sz__ = (sz); memset(alloca(sz__), 0, sz__); }) >> >> -static void xe_vm_create_(struct xe_vm *vm) >> +static void xe_vm_create_(struct vm *vm) >> { >> uint32_t flags = 0; >> >> @@ -2046,7 +2083,7 @@ static void xe_vm_create_(struct xe_vm *vm) >> static void xe_exec_queue_create_(struct ctx *ctx, struct xe_exec_queue *eq) >> { >> struct drm_xe_exec_queue_create create = { >> - .vm_id = ctx->xe.vm->id, >> + .vm_id = ctx->vm->id, >> .width = 1, >> .num_placements = eq->nr_hwes, >> .instances = to_user_pointer(eq->hwe_list), >> @@ -2159,6 +2196,13 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) >> gem_context_get_param(fd, ¶m); >> igt_assert(param.value); >> share_vm = param.value; >> + wrk->nr_vms = 1; >> + wrk->vm_list = calloc(wrk->nr_vms, sizeof(struct vm)); >> + igt_assert(wrk->vm_list); >> + wrk->vm_list->id = share_vm; >> + wrk->vm_list->ahnd = intel_allocator_open(fd, share_vm, >> + INTEL_ALLOCATOR_RELOC); > --------------------------------^ > Align to 'fd' ok > >> + ctx2->vm = wrk->vm_list; >> break; >> } >> >> @@ -2174,6 +2218,7 @@ static int prepare_contexts(unsigned int id, struct workload *wrk) >> ctx_id = args.ctx_id; >> ctx->id = ctx_id; >> ctx->sseu = device_sseu.slice_mask; >> + ctx->vm = wrk->vm_list; >> >> __configure_context(ctx_id, wrk->prio); >> >> @@ -2267,16 +2312,17 @@ static int xe_prepare_contexts(unsigned int id, struct workload *wrk) >> unsigned int i; >> >> /* shortcut, create one vm */ >> - wrk->xe.nr_vms = 1; >> - wrk->xe.vm_list = calloc(wrk->xe.nr_vms, sizeof(struct xe_vm)); >> - wrk->xe.vm_list->compute_mode = false; >> - xe_vm_create_(wrk->xe.vm_list); >> - wrk->xe.vm_list->ahnd = intel_allocator_open(fd, wrk->xe.vm_list->id, >> + 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); > > Same here, align. ok > >> >> __for_each_ctx(ctx, wrk, ctx_idx) { >> /* link with vm */ >> - ctx->xe.vm = wrk->xe.vm_list; >> + ctx->vm = wrk->vm_list; > > Why do you treat vm_list as actual vm? Why not changing s/vm_list/vm/ The plan is to support more vms, but the first step is a common vm, so a one element list at the moment. > > With above aligning fixed > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Thanks for review > Regards, > Kamil > >> for_each_w_step(w, wrk) { >> if (w->context != ctx_idx) >> continue; >> @@ -2846,7 +2892,7 @@ static void *run_workload(void *data) >> w_step_sync(w); >> syncobj_destroy(fd, w->xe.syncs[0].handle); >> free(w->xe.syncs); >> - xe_vm_unbind_sync(fd, xe_get_vm(wrk, w)->id, 0, w->xe.exec.address, >> + 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); >> -- >> 2.31.1 >> ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz 2023-12-14 20:13 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz @ 2023-12-14 20:13 ` Marcin Bernatowicz 2024-07-23 10:36 ` Kamil Konieczny 2023-12-14 21:47 ` ✓ Fi.CI.BAT: success for benchmarks/gem_wsim: support gens without relocations and mmap fix Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 12+ messages in thread From: Marcin Bernatowicz @ 2023-12-14 20:13 UTC (permalink / raw) To: igt-dev It appears that 'gem_mmap__wc' doesn't work for discrete graphics cards and 'I915_MMAP_OFFSET_FIXED' is needed instead. Adopt the mapping approach from 'lib/igt_dummyload'. Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> --- benchmarks/gem_wsim.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c index a1db37d4e..eafd9cab8 100644 --- a/benchmarks/gem_wsim.c +++ b/benchmarks/gem_wsim.c @@ -1502,7 +1502,16 @@ static unsigned int create_bb(struct w_step *w, int self) gem_set_domain(fd, w->bb_handle, I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); - cs = ptr = gem_mmap__wc(fd, w->bb_handle, 0, w->bb_size, PROT_WRITE); + if (__gem_set_caching(fd, w->bb_handle, + I915_CACHING_CACHED) == 0) { + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, + 0, w->bb_size, + PROT_READ | PROT_WRITE); + } else + cs = ptr = gem_mmap__device_coherent(fd, + w->bb_handle, + 0, w->bb_size, + PROT_READ | PROT_WRITE); /* Store initial 64b timestamp: start */ *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; -- 2.31.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards 2023-12-14 20:13 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards Marcin Bernatowicz @ 2024-07-23 10:36 ` Kamil Konieczny 2024-07-25 7:26 ` Bernatowicz, Marcin 0 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2024-07-23 10:36 UTC (permalink / raw) To: igt-dev Cc: Tvrtko Ursulin, Tvrtko Ursulin, Marcin Bernatowicz, zbigniew.kempczynski, lukasz.laguna Hi Marcin, On 2023-12-14 at 21:13:02 +0100, Marcin Bernatowicz wrote: > It appears that 'gem_mmap__wc' doesn't work for discrete graphics cards > and 'I915_MMAP_OFFSET_FIXED' is needed instead. > Adopt the mapping approach from 'lib/igt_dummyload'. > > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > --- > benchmarks/gem_wsim.c | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c > index a1db37d4e..eafd9cab8 100644 > --- a/benchmarks/gem_wsim.c > +++ b/benchmarks/gem_wsim.c > @@ -1502,7 +1502,16 @@ static unsigned int create_bb(struct w_step *w, int self) > gem_set_domain(fd, w->bb_handle, > I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); > > - cs = ptr = gem_mmap__wc(fd, w->bb_handle, 0, w->bb_size, PROT_WRITE); > + if (__gem_set_caching(fd, w->bb_handle, > + I915_CACHING_CACHED) == 0) { > + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, > + 0, w->bb_size, > + PROT_READ | PROT_WRITE); > + } else Be consistent, use brace after 'else': } else { > + cs = ptr = gem_mmap__device_coherent(fd, > + w->bb_handle, > + 0, w->bb_size, > + PROT_READ | PROT_WRITE); so it will look like: } else { cs = ptr = gem_mmap__device_coherent(fd, w->bb_handle, 0, w->bb_size, PROT_READ | PROT_WRITE); } Please use checkpatch.pl script from Linux kernel, it could spot such problems, see also CONTRIBUTE.md for some helpful options. With above fixed Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > /* Store initial 64b timestamp: start */ > *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; > -- > 2.31.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards 2024-07-23 10:36 ` Kamil Konieczny @ 2024-07-25 7:26 ` Bernatowicz, Marcin 2024-07-25 9:06 ` Michal Wajdeczko 0 siblings, 1 reply; 12+ messages in thread From: Bernatowicz, Marcin @ 2024-07-25 7:26 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Tvrtko Ursulin, Tvrtko Ursulin, zbigniew.kempczynski, lukasz.laguna Hi Kamil, On 7/23/2024 12:36 PM, Kamil Konieczny wrote: > Hi Marcin, > On 2023-12-14 at 21:13:02 +0100, Marcin Bernatowicz wrote: >> It appears that 'gem_mmap__wc' doesn't work for discrete graphics cards >> and 'I915_MMAP_OFFSET_FIXED' is needed instead. >> Adopt the mapping approach from 'lib/igt_dummyload'. >> >> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >> --- >> benchmarks/gem_wsim.c | 11 ++++++++++- >> 1 file changed, 10 insertions(+), 1 deletion(-) >> >> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >> index a1db37d4e..eafd9cab8 100644 >> --- a/benchmarks/gem_wsim.c >> +++ b/benchmarks/gem_wsim.c >> @@ -1502,7 +1502,16 @@ static unsigned int create_bb(struct w_step *w, int self) >> gem_set_domain(fd, w->bb_handle, >> I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); >> >> - cs = ptr = gem_mmap__wc(fd, w->bb_handle, 0, w->bb_size, PROT_WRITE); >> + if (__gem_set_caching(fd, w->bb_handle, >> + I915_CACHING_CACHED) == 0) { >> + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, >> + 0, w->bb_size, >> + PROT_READ | PROT_WRITE); >> + } else > > Be consistent, use brace after 'else': > } else { > >> + cs = ptr = gem_mmap__device_coherent(fd, >> + w->bb_handle, >> + 0, w->bb_size, >> + PROT_READ | PROT_WRITE); > > so it will look like: > } else { > cs = ptr = gem_mmap__device_coherent(fd, w->bb_handle, 0, > w->bb_size, > PROT_READ | PROT_WRITE); > } ok > > Please use checkpatch.pl script from Linux kernel, it could spot > such problems, see also CONTRIBUTE.md for some helpful options. Strange, I did run checkpatch.pl but it didn't shout: ----------------------------------------------------------------- ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch ----------------------------------------------------------------- total: 0 errors, 0 warnings, 230 lines checked ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch has no obvious style problems and is ready for submission. ----------------------------------------------------------------- ./0002-benchmarks-gem_wsim-Fix-mmap-for-discrete-graphics-c.patch ----------------------------------------------------------------- total: 0 errors, 0 warnings, 17 lines checked > > With above fixed > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Thanks > >> >> /* Store initial 64b timestamp: start */ >> *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; >> -- >> 2.31.1 >> ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards 2024-07-25 7:26 ` Bernatowicz, Marcin @ 2024-07-25 9:06 ` Michal Wajdeczko 2024-07-25 9:52 ` Bernatowicz, Marcin 0 siblings, 1 reply; 12+ messages in thread From: Michal Wajdeczko @ 2024-07-25 9:06 UTC (permalink / raw) To: Bernatowicz, Marcin, Kamil Konieczny, igt-dev, Tvrtko Ursulin, Tvrtko Ursulin, zbigniew.kempczynski, lukasz.laguna On 25.07.2024 09:26, Bernatowicz, Marcin wrote: > Hi Kamil, > > On 7/23/2024 12:36 PM, Kamil Konieczny wrote: >> Hi Marcin, >> On 2023-12-14 at 21:13:02 +0100, Marcin Bernatowicz wrote: >>> It appears that 'gem_mmap__wc' doesn't work for discrete graphics cards >>> and 'I915_MMAP_OFFSET_FIXED' is needed instead. >>> Adopt the mapping approach from 'lib/igt_dummyload'. >>> >>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >>> --- >>> benchmarks/gem_wsim.c | 11 ++++++++++- >>> 1 file changed, 10 insertions(+), 1 deletion(-) >>> >>> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >>> index a1db37d4e..eafd9cab8 100644 >>> --- a/benchmarks/gem_wsim.c >>> +++ b/benchmarks/gem_wsim.c >>> @@ -1502,7 +1502,16 @@ static unsigned int create_bb(struct w_step >>> *w, int self) >>> gem_set_domain(fd, w->bb_handle, >>> I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); >>> - cs = ptr = gem_mmap__wc(fd, w->bb_handle, 0, w->bb_size, >>> PROT_WRITE); >>> + if (__gem_set_caching(fd, w->bb_handle, >>> + I915_CACHING_CACHED) == 0) { >>> + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, >>> + 0, w->bb_size, >>> + PROT_READ | PROT_WRITE); >>> + } else >> >> Be consistent, use brace after 'else': >> } else { >> >>> + cs = ptr = gem_mmap__device_coherent(fd, >>> + w->bb_handle, >>> + 0, w->bb_size, >>> + PROT_READ | PROT_WRITE); >> >> so it will look like: >> } else { >> cs = ptr = gem_mmap__device_coherent(fd, w->bb_handle, 0, >> w->bb_size, >> PROT_READ | PROT_WRITE); >> } > ok >> >> Please use checkpatch.pl script from Linux kernel, it could spot >> such problems, see also CONTRIBUTE.md for some helpful options. > > Strange, I did run checkpatch.pl but it didn't shout: > > ----------------------------------------------------------------- > ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch > ----------------------------------------------------------------- > total: 0 errors, 0 warnings, 230 lines checked > > ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch has no > obvious style problems and is ready for submission. > ----------------------------------------------------------------- > ./0002-benchmarks-gem_wsim-Fix-mmap-for-discrete-graphics-c.patch > ----------------------------------------------------------------- > total: 0 errors, 0 warnings, 17 lines checked > try with --strict option CHECK: multiple assignments should be avoided #12: FILE: benchmarks/gem_wsim.c:1507: + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, CHECK: Unbalanced braces around else statement #15: FILE: benchmarks/gem_wsim.c:1510: + } else CHECK: multiple assignments should be avoided #16: FILE: benchmarks/gem_wsim.c:1511: + cs = ptr = gem_mmap__device_coherent(fd, total: 0 errors, 0 warnings, 3 checks, 17 lines checked > >> >> With above fixed >> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Thanks >> >>> /* Store initial 64b timestamp: start */ >>> *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; >>> -- >>> 2.31.1 >>> ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards 2024-07-25 9:06 ` Michal Wajdeczko @ 2024-07-25 9:52 ` Bernatowicz, Marcin 0 siblings, 0 replies; 12+ messages in thread From: Bernatowicz, Marcin @ 2024-07-25 9:52 UTC (permalink / raw) To: Michal Wajdeczko, Kamil Konieczny, igt-dev, Tvrtko Ursulin, Tvrtko Ursulin, zbigniew.kempczynski, lukasz.laguna On 7/25/2024 11:06 AM, Michal Wajdeczko wrote: > > > On 25.07.2024 09:26, Bernatowicz, Marcin wrote: >> Hi Kamil, >> >> On 7/23/2024 12:36 PM, Kamil Konieczny wrote: >>> Hi Marcin, >>> On 2023-12-14 at 21:13:02 +0100, Marcin Bernatowicz wrote: >>>> It appears that 'gem_mmap__wc' doesn't work for discrete graphics cards >>>> and 'I915_MMAP_OFFSET_FIXED' is needed instead. >>>> Adopt the mapping approach from 'lib/igt_dummyload'. >>>> >>>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >>>> --- >>>> benchmarks/gem_wsim.c | 11 ++++++++++- >>>> 1 file changed, 10 insertions(+), 1 deletion(-) >>>> >>>> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >>>> index a1db37d4e..eafd9cab8 100644 >>>> --- a/benchmarks/gem_wsim.c >>>> +++ b/benchmarks/gem_wsim.c >>>> @@ -1502,7 +1502,16 @@ static unsigned int create_bb(struct w_step >>>> *w, int self) >>>> gem_set_domain(fd, w->bb_handle, >>>> I915_GEM_DOMAIN_WC, I915_GEM_DOMAIN_WC); >>>> - cs = ptr = gem_mmap__wc(fd, w->bb_handle, 0, w->bb_size, >>>> PROT_WRITE); >>>> + if (__gem_set_caching(fd, w->bb_handle, >>>> + I915_CACHING_CACHED) == 0) { >>>> + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, >>>> + 0, w->bb_size, >>>> + PROT_READ | PROT_WRITE); >>>> + } else >>> >>> Be consistent, use brace after 'else': >>> } else { >>> >>>> + cs = ptr = gem_mmap__device_coherent(fd, >>>> + w->bb_handle, >>>> + 0, w->bb_size, >>>> + PROT_READ | PROT_WRITE); >>> >>> so it will look like: >>> } else { >>> cs = ptr = gem_mmap__device_coherent(fd, w->bb_handle, 0, >>> w->bb_size, >>> PROT_READ | PROT_WRITE); >>> } >> ok >>> >>> Please use checkpatch.pl script from Linux kernel, it could spot >>> such problems, see also CONTRIBUTE.md for some helpful options. >> >> Strange, I did run checkpatch.pl but it didn't shout: >> >> ----------------------------------------------------------------- >> ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch >> ----------------------------------------------------------------- >> total: 0 errors, 0 warnings, 230 lines checked >> >> ./0001-benchmarks-gem_wsim-Support-gens-without-relocations.patch has no >> obvious style problems and is ready for submission. >> ----------------------------------------------------------------- >> ./0002-benchmarks-gem_wsim-Fix-mmap-for-discrete-graphics-c.patch >> ----------------------------------------------------------------- >> total: 0 errors, 0 warnings, 17 lines checked >> > > try with --strict option > > CHECK: multiple assignments should be avoided > #12: FILE: benchmarks/gem_wsim.c:1507: > + cs = ptr = gem_mmap__cpu(fd, w->bb_handle, > > CHECK: Unbalanced braces around else statement > #15: FILE: benchmarks/gem_wsim.c:1510: > + } else > > CHECK: multiple assignments should be avoided > #16: FILE: benchmarks/gem_wsim.c:1511: > + cs = ptr = gem_mmap__device_coherent(fd, > > total: 0 errors, 0 warnings, 3 checks, 17 lines checked > Thanks, my bad, I missed the options mentioned in CONTRIBUTE.md > >> >>> >>> With above fixed >>> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >> >> Thanks >>> >>>> /* Store initial 64b timestamp: start */ >>>> *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; >>>> -- >>>> 2.31.1 >>>> ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for benchmarks/gem_wsim: support gens without relocations and mmap fix 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz 2023-12-14 20:13 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz 2023-12-14 20:13 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards Marcin Bernatowicz @ 2023-12-14 21:47 ` Patchwork 2023-12-14 22:39 ` ✗ Fi.CI.IGT: failure " Patchwork 2023-12-14 22:58 ` ✗ CI.xeBAT: " Patchwork 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-12-14 21:47 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2750 bytes --] == Series Details == Series: benchmarks/gem_wsim: support gens without relocations and mmap fix URL : https://patchwork.freedesktop.org/series/127840/ State : success == Summary == CI Bug Log - changes from CI_DRM_14022 -> IGTPW_10424 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html Participating hosts (38 -> 35) ------------------------------ Additional (1): fi-pnv-d510 Missing (4): bat-rpls-2 bat-jsl-1 fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in IGTPW_10424 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-7567u: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][2] ([fdo#109271]) +28 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-9: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@hangcheck: - bat-dg2-11: [PASS][5] -> [DMESG-FAIL][6] ([i915#9840]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/bat-dg2-11/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413 [i915#9840]: https://gitlab.freedesktop.org/drm/intel/issues/9840 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7643 -> IGTPW_10424 CI-20190529: 20190529 CI_DRM_14022: 87fdea3fd86a02e2e7855e372c0d3fb32e53e4e6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10424: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html [-- Attachment #2: Type: text/html, Size: 3510 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for benchmarks/gem_wsim: support gens without relocations and mmap fix 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz ` (2 preceding siblings ...) 2023-12-14 21:47 ` ✓ Fi.CI.BAT: success for benchmarks/gem_wsim: support gens without relocations and mmap fix Patchwork @ 2023-12-14 22:39 ` Patchwork 2023-12-14 22:58 ` ✗ CI.xeBAT: " Patchwork 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-12-14 22:39 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 98910 bytes --] == Series Details == Series: benchmarks/gem_wsim: support gens without relocations and mmap fix URL : https://patchwork.freedesktop.org/series/127840/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14022_full -> IGTPW_10424_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10424_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10424_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_10424/index.html Participating hosts (7 -> 8) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10424_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@persistence: - shard-mtlp: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@gem_exec_balancer@persistence.html - shard-rkl: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_exec_balancer@persistence.html #### Warnings #### * igt@i915_pm_rps@engine-order: - shard-snb: [INCOMPLETE][3] ([i915#9847]) -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/shard-snb5/igt@i915_pm_rps@engine-order.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb4/igt@i915_pm_rps@engine-order.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf}: - shard-mtlp: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html Known issues ------------ Here are the changes found in IGTPW_10424_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +21 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +13 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_caching@writes.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb6/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][27] ([i915#8898]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb2/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#9855]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html - shard-rkl: NOTRUN -> [ABORT][29] ([i915#9855]) +1 other test abort [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [ABORT][30] ([i915#9856]) +1 other test abort [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [ABORT][32] ([i915#9856]) +1 other test abort [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@busy: - shard-dg1: NOTRUN -> [ABORT][34] ([i915#9855] / [i915#9856]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@gem_exec_balancer@busy.html * igt@gem_exec_balancer@full-pulse: - shard-dg1: NOTRUN -> [INCOMPLETE][35] ([i915#9856]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@gem_exec_balancer@full-pulse.html - shard-mtlp: NOTRUN -> [ABORT][36] ([i915#9855] / [i915#9856]) +1 other test abort [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-2/igt@gem_exec_balancer@full-pulse.html - shard-dg2: NOTRUN -> [ABORT][37] ([i915#9855] / [i915#9856]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_exec_balancer@full-pulse.html - shard-rkl: NOTRUN -> [INCOMPLETE][38] ([i915#9856]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4036]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [ABORT][40] ([i915#9855]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [ABORT][41] ([i915#9855]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@gem_exec_balancer@sliced.html - shard-rkl: NOTRUN -> [ABORT][43] ([i915#9855] / [i915#9856]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_exec_balancer@sliced.html - shard-glk: NOTRUN -> [INCOMPLETE][44] ([i915#9856]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#6334]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#6334]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][49] ([i915#6334]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#6334]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@gem_exec_fair@basic-pace.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4473] / [i915#4771]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-2/igt@gem_exec_fair@basic-pace.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][54] ([i915#2842]) +2 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4537]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_whisper@basic-queues: - shard-snb: NOTRUN -> [INCOMPLETE][62] ([i915#9857]) +5 other tests incomplete [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb5/igt@gem_exec_whisper@basic-queues.html * igt@gem_exec_whisper@basic-queues-all: - shard-tglu: NOTRUN -> [INCOMPLETE][63] ([i915#9857]) +2 other tests incomplete [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@gem_exec_whisper@basic-queues-all.html - shard-glk: NOTRUN -> [INCOMPLETE][64] ([i915#9857]) +3 other tests incomplete [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk2/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-tglu: NOTRUN -> [INCOMPLETE][65] ([i915#6755] / [i915#7392] / [i915#9857]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@gem_exec_whisper@basic-queues-forked-all.html - shard-mtlp: NOTRUN -> [ABORT][66] ([i915#7392] / [i915#9857]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_exec_whisper@basic-sync: - shard-glk: NOTRUN -> [ABORT][67] ([i915#9857]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk1/igt@gem_exec_whisper@basic-sync.html - shard-mtlp: NOTRUN -> [ABORT][68] ([i915#9857]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_exec_whisper@basic-sync.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4860]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4613] / [i915#7582]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-7/igt@gem_lmem_swapping@parallel-multi.html - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#4613]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk4/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4613]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4565]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4077]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +10 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@gem_mmap_wc@read-write-distinct.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@gem_pread@bench.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@gem_pread@bench.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#4270]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@gem_pxp@fail-invalid-protected-context.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4270]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4270]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4270]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#5190]) +8 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8428]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][96] ([i915#8411]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4079]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4079]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#109312]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@gem_softpin@evict-snoop.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4885]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#109312]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-7/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4885]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4885]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4077]) +12 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@gem_userptr_blits@access-control.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][107] ([fdo#110542]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3323]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4880]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#3297]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3281]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#3297]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3297]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109289]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@gen7_exec_parse@basic-rejected.html - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#109289]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-2/igt@gen7_exec_parse@basic-rejected.html - shard-dg1: NOTRUN -> [SKIP][117] ([fdo#109289]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#109289]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@gen7_exec_parse@load-register-reg.html - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#109289]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2856]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@gen9_exec_parse@allowed-all.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#2527]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#2527]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6412]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#7178]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6412]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6412]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#9858]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk3/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-mtlp: NOTRUN -> [ABORT][128] ([i915#9855] / [i915#9858]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-dg2: NOTRUN -> [INCOMPLETE][129] ([i915#9858]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-rkl: NOTRUN -> [INCOMPLETE][130] ([i915#9847] / [i915#9858]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-snb: NOTRUN -> [INCOMPLETE][131] ([i915#9847] / [i915#9858]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb7/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-dg1: NOTRUN -> [INCOMPLETE][132] ([i915#9858]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-fence@gt0.html - shard-tglu: NOTRUN -> [INCOMPLETE][133] ([i915#9858]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8925]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#8925]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@i915_pm_rps@thresholds-idle@gt0.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#8925]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds-idle@gt1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8925]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle@gt1.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][138] ([i915#7443]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6645]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#7707]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@intel_hwmon@hwmon-write.html - shard-tglu: NOTRUN -> [SKIP][141] ([i915#7707]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7707]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4212]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4212]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#4212]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9531]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#9531]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#9531]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#9531]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#1769] / [i915#3555]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#5286]) +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#111614]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#111615] / [i915#5286]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5286]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][158] ([i915#5138]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][159] ([fdo#109271]) +177 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111614] / [i915#3638]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3638]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#111614]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#111614]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111615]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][165] ([fdo#111615]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111615]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_big_fb@yf-tiled-addfb.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6187]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4538] / [i915#5190]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#110723]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4538]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][171] ([fdo#111615]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#2705]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_big_joiner@invalid-modeset.html - shard-tglu: NOTRUN -> [SKIP][173] ([i915#2705]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2705]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html - shard-dg2: NOTRUN -> [SKIP][175] ([i915#2705]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2705]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#5354] / [i915#6095]) +19 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#5354]) +57 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#5354] / [i915#6095]) +34 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#5354] / [i915#6095]) +33 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@kms_ccs@pipe-c-crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf-tiled-ccs: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#5354] / [i915#6095]) +27 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@kms_ccs@pipe-d-bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#5354]) +22 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#7828]) +11 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][184] ([fdo#111827]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111827]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_chamelium_color@degamma.html - shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111827]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_chamelium_color@degamma.html - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#111827]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_chamelium_color@degamma.html - shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111827]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#7828]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#7828]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#7828]) +10 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#7828]) +12 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#7116]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@kms_content_protection@atomic.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3116]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3299]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3116] / [i915#3299]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3299]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6944]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@kms_content_protection@lic.html - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7118]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_content_protection@lic.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#7118]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei-interface: - shard-snb: NOTRUN -> [INCOMPLETE][202] ([i915#9878]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb7/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3359]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3359]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][205] ([fdo#109279] / [i915#3359]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3359]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][207] ([fdo#109279] / [i915#3359]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3555]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x32.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8814]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555]) +6 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8814]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#4213]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#4103]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#4103] / [i915#4213]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109274]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9809]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][218] ([fdo#109274] / [i915#5354]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9067]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9067]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#9067]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#4103]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4103] / [i915#4213]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1: - shard-snb: NOTRUN -> [FAIL][224] ([i915#9841]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3840]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3840]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3840] / [i915#9053]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3840] / [i915#9053]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3840] / [i915#9053]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1839]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#1839]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][239] ([i915#1839]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#1839]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][241] ([i915#1839]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9337]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9337]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9337]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#9337]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#9337]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][247] ([fdo#109274]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][248] ([fdo#109274] / [fdo#111767]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-rkl: NOTRUN -> [SKIP][249] ([fdo#111767] / [fdo#111825]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg1: NOTRUN -> [SKIP][250] ([fdo#111767] / [fdo#111825]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109274] / [fdo#111767] / [i915#3637]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][252] ([fdo#111767] / [i915#3637]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111825]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_flip@2x-plain-flip.html - shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109274] / [i915#3637]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@kms_flip@2x-plain-flip.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8810]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2672]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2672]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#2672]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8708]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109280]) +22 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-snb: [PASS][264] -> [SKIP][265] ([fdo#109271]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#8708]) +13 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#8708]) +13 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][268] ([fdo#111825]) +32 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][269] ([fdo#109271]) +413 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][270] ([fdo#110189]) +13 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#3023]) +22 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#1825]) +27 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][273] ([fdo#111825] / [i915#1825]) +30 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3458]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3458]) +13 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#4816]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#4816]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][283] ([i915#4070] / [i915#4816]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][286] ([i915#6301]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#6301]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8821]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8821]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][293] ([i915#8292]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][294] ([i915#8292]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9423]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][296] ([i915#9423]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#9423]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#9423]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#5176]) +5 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#5235]) +9 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#5235]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#5235]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#5235]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#5235]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#5235]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#5354]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#9812]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#9293]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#9519]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][312] ([fdo#109293]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_pm_rpm@pc8-residency.html - shard-dg2: NOTRUN -> [SKIP][313] ([fdo#109293] / [fdo#109506]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-3/igt@kms_pm_rpm@pc8-residency.html - shard-rkl: NOTRUN -> [SKIP][314] ([fdo#109293] / [fdo#109506]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-2/igt@kms_pm_rpm@pc8-residency.html - shard-dg1: NOTRUN -> [SKIP][315] ([fdo#109293] / [fdo#109506]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@kms_pm_rpm@pc8-residency.html - shard-tglu: NOTRUN -> [SKIP][316] ([fdo#109293] / [fdo#109506]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#6524]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#6524]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#6524]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-7/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#6524]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][321] ([i915#6524] / [i915#6805]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#9683]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9683]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9683]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-8/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#9683]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@kms_psr2_sf@cursor-plane-update-sf.html - shard-rkl: NOTRUN -> [SKIP][326] ([fdo#111068] / [i915#9683]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-update-sf.html - shard-dg1: NOTRUN -> [SKIP][327] ([fdo#111068] / [i915#9683]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-update-sf.html - shard-tglu: NOTRUN -> [SKIP][328] ([fdo#111068] / [i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9685]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9685]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][331] ([i915#9685]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#4884]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#4235]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-3/igt@kms_rotation_crc@exhaust-fences.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#4235]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][335] ([IGT#2] / [i915#6493]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-19/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#8808]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][337] ([fdo#109271] / [i915#2437]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk9/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#2437] / [i915#9412]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#2437] / [i915#9412]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [ABORT][343] ([i915#9847]) +3 other tests abort [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@perf@global-sseu-config-invalid@0-rcs0: - shard-rkl: NOTRUN -> [ABORT][344] ([i915#9847]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@perf@global-sseu-config-invalid@0-rcs0.html - shard-dg1: NOTRUN -> [ABORT][345] ([i915#9847]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@perf@global-sseu-config-invalid@0-rcs0.html * igt@perf@polling-parameterized: - shard-dg2: NOTRUN -> [ABORT][346] ([i915#9847]) +1 other test abort [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-7/igt@perf@polling-parameterized.html * igt@perf_pmu@busy@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#9853]) +2 other tests incomplete [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk2/igt@perf_pmu@busy@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][348] ([i915#9847] / [i915#9853]) +5 other tests abort [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-7/igt@perf_pmu@busy@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#8850]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8850]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][351] ([i915#8850]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#8850]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][353] ([i915#8850]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@enable-race@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][354] ([i915#9853]) +4 other tests incomplete [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@perf_pmu@enable-race@rcs0.html - shard-rkl: NOTRUN -> [INCOMPLETE][355] ([i915#9853]) +5 other tests incomplete [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@perf_pmu@enable-race@rcs0.html - shard-glk: NOTRUN -> [ABORT][356] ([i915#9847] / [i915#9853]) +1 other test abort [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-glk1/igt@perf_pmu@enable-race@rcs0.html * igt@perf_pmu@init-sema@rcs0: - shard-rkl: NOTRUN -> [ABORT][357] ([i915#9847] / [i915#9853]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@perf_pmu@init-sema@rcs0.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][358] ([i915#9853]) +4 other tests incomplete [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb7/igt@perf_pmu@most-busy-check-all@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][359] ([i915#9853]) +5 other tests incomplete [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-16/igt@perf_pmu@most-busy-check-all@rcs0.html - shard-tglu: NOTRUN -> [INCOMPLETE][360] ([i915#9853]) +3 other tests incomplete [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-3/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][361] ([i915#3708]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][362] ([i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#3291] / [i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-5/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][364] ([fdo#109295] / [i915#3291] / [i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-7/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#3708] / [i915#4077]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][367] ([fdo#109295] / [fdo#111656] / [i915#3708]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-17/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][369] ([fdo#109295] / [fdo#111656]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-2/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#3708] / [i915#4077]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-5/igt@prime_vgem@coherency-gtt.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][371] ([fdo#109307]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][372] ([fdo#109307] / [i915#4818]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html - shard-tglu: NOTRUN -> [SKIP][373] ([fdo#109307]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#4818]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][375] ([i915#4818]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#2575]) +9 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][377] ([i915#2575]) +9 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-13/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-rkl: NOTRUN -> [SKIP][378] ([fdo#109315]) +9 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-5/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-tglu: NOTRUN -> [SKIP][379] ([fdo#109315] / [i915#2575]) +7 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-10/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#2575]) +6 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#7711]) +9 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg1-12/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#7711]) +7 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-dg2-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html - shard-rkl: NOTRUN -> [SKIP][383] ([i915#7711]) +9 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-rkl-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#7711]) +8 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#2575]) +8 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-tglu-6/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-snb: [SKIP][386] ([fdo#109271]) -> [PASS][387] +4 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html #### Warnings #### * igt@kms_content_protection@atomic: - shard-snb: [INCOMPLETE][388] ([i915#8816]) -> [SKIP][389] ([fdo#109271]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14022/shard-snb7/igt@kms_content_protection@atomic.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/shard-snb5/igt@kms_content_protection@atomic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9841]: https://gitlab.freedesktop.org/drm/intel/issues/9841 [i915#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847 [i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853 [i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855 [i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856 [i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857 [i915#9858]: https://gitlab.freedesktop.org/drm/intel/issues/9858 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7643 -> IGTPW_10424 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14022: 87fdea3fd86a02e2e7855e372c0d3fb32e53e4e6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10424: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html [-- Attachment #2: Type: text/html, Size: 129302 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeBAT: failure for benchmarks/gem_wsim: support gens without relocations and mmap fix 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz ` (3 preceding siblings ...) 2023-12-14 22:39 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-14 22:58 ` Patchwork 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-12-14 22:58 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3836 bytes --] == Series Details == Series: benchmarks/gem_wsim: support gens without relocations and mmap fix URL : https://patchwork.freedesktop.org/series/127840/ State : failure == Summary == CI Bug Log - changes from XEIGT_7643_BAT -> XEIGTPW_10424_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_10424_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_10424_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_10424_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_threads@threads-mixed-fd-basic: - bat-atsm-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-atsm-2/igt@xe_exec_threads@threads-mixed-fd-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/bat-atsm-2/igt@xe_exec_threads@threads-mixed-fd-basic.html Known issues ------------ Here are the changes found in XEIGTPW_10424_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#480]) +3 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-dg2-oem2: [FAIL][7] ([Intel XE#480]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_create@create-execqueues-noleak: - bat-adlp-7: [FAIL][9] ([Intel XE#524]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7643 -> IGTPW_10424 * Linux: xe-577-5cd1893366708380854f4694ae57417192458a6b -> xe-578-e9f8fa579c5f7a0b1a08ffeeaa03fe7ef4981b3c IGTPW_10424: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10424/index.html IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-577-5cd1893366708380854f4694ae57417192458a6b: 5cd1893366708380854f4694ae57417192458a6b xe-578-e9f8fa579c5f7a0b1a08ffeeaa03fe7ef4981b3c: e9f8fa579c5f7a0b1a08ffeeaa03fe7ef4981b3c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10424/index.html [-- Attachment #2: Type: text/html, Size: 4613 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-07-25 9:52 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-14 20:13 [PATCH v2 i-g-t 0/2] benchmarks/gem_wsim: support gens without relocations and mmap fix Marcin Bernatowicz 2023-12-14 20:13 ` [PATCH v2 i-g-t 1/2] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz 2024-07-23 9:52 ` Kamil Konieczny 2024-07-25 9:13 ` Bernatowicz, Marcin 2023-12-14 20:13 ` [PATCH v2 i-g-t 2/2] benchmarks/gem_wsim: Fix mmap for discrete graphics cards Marcin Bernatowicz 2024-07-23 10:36 ` Kamil Konieczny 2024-07-25 7:26 ` Bernatowicz, Marcin 2024-07-25 9:06 ` Michal Wajdeczko 2024-07-25 9:52 ` Bernatowicz, Marcin 2023-12-14 21:47 ` ✓ Fi.CI.BAT: success for benchmarks/gem_wsim: support gens without relocations and mmap fix Patchwork 2023-12-14 22:39 ` ✗ Fi.CI.IGT: failure " Patchwork 2023-12-14 22:58 ` ✗ CI.xeBAT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox