* [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations
@ 2023-12-12 11:34 Marcin Bernatowicz
2023-12-12 12:25 ` ✗ Fi.CI.BAT: failure for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2023-12-12 11:34 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.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
benchmarks/gem_wsim.c | 106 +++++++++++++++++++++++++++++++-----------
1 file changed, 80 insertions(+), 26 deletions(-)
diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index 30673da8f..7455cd6a1 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;
@@ -1504,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;
@@ -1539,9 +1546,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 +1565,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 +1661,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 +1686,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 +1703,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 +1724,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 +1738,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 +1784,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 +2078,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 +2092,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 +2205,12 @@ 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 = get_reloc_ahnd(fd, share_vm);
+ ctx2->vm = wrk->vm_list;
break;
}
@@ -2174,6 +2226,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 +2320,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 +2900,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] 11+ messages in thread* ✗ Fi.CI.BAT: failure for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz @ 2023-12-12 12:25 ` Patchwork 2023-12-12 12:35 ` Bernatowicz, Marcin 2023-12-12 12:50 ` ✓ CI.xeBAT: success " Patchwork ` (5 subsequent siblings) 6 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2023-12-12 12:25 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8460 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : failure == Summary == CI Bug Log - changes from IGT_7636 -> IGTPW_10403 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10403 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10403, 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_10403/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): bat-kbl-2 Missing (3): fi-skl-guc fi-snb-2520m fi-pnv-d510 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10403: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-11: [PASS][1] -> [SKIP][2] +5 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_pipe_crc_basic@read-crc: - bat-adlp-11: NOTRUN -> [SKIP][3] +8 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-adlp-11: [SKIP][4] ([i915#3555] / [i915#3840]) -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_dsc@dsc-basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_dsc@dsc-basic.html Known issues ------------ Here are the changes found in IGTPW_10403 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-adlp-11: [PASS][6] -> [SKIP][7] ([i915#1849] / [i915#2582]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@info.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@info.html - bat-kbl-2: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1849]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@fbdev@info.html * igt@fbdev@nullptr: - bat-adlp-11: [PASS][9] -> [SKIP][10] ([i915#2582]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@nullptr.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@nullptr.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][11] ([fdo#109271]) +36 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-adlp-11: NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-adlp-11: NOTRUN -> [SKIP][13] ([i915#6621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@i915_pm_rps@basic-api.html * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-11: NOTRUN -> [SKIP][14] ([i915#3637]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-11: [PASS][15] -> [SKIP][16] ([i915#4342] / [i915#5354]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][17] ([i915#8668]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-11: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlp-11: NOTRUN -> [SKIP][19] ([fdo#109295] / [i915#3708]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-adlp-11: NOTRUN -> [SKIP][20] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][21] ([i915#9275]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][23] ([i915#8668]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-adlp-11: [ABORT][25] ([i915#8668]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-11: [SKIP][27] ([i915#4103] / [i915#5608]) -> [SKIP][28] ([i915#5608]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.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 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7636 -> IGTPW_10403 CI-20190529: 20190529 CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 10077 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 12:25 ` ✗ Fi.CI.BAT: failure for " Patchwork @ 2023-12-12 12:35 ` Bernatowicz, Marcin 0 siblings, 0 replies; 11+ messages in thread From: Bernatowicz, Marcin @ 2023-12-12 12:35 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra, lgci.bug.filing Hi, this is unrelated to benchmark change, Regards, marcin On 12/12/2023 1:25 PM, Patchwork wrote: > *Patch Details* > *Series:* benchmarks/gem_wsim: Support gens without relocations > *URL:* https://patchwork.freedesktop.org/series/127677/ > <https://patchwork.freedesktop.org/series/127677/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html> > > > CI Bug Log - changes from IGT_7636 -> IGTPW_10403 > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_10403 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10403, 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_10403/index.html > > > Participating hosts (36 -> 34) > > Additional (1): bat-kbl-2 > Missing (3): fi-skl-guc fi-snb-2520m fi-pnv-d510 > > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_10403: > > > IGT changes > > > Possible regressions > > * > > igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: > > o bat-adlp-11: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html> +5 other tests skip > * > > igt@kms_pipe_crc_basic@read-crc: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc.html> +8 other tests skip > > > Warnings > > * igt@kms_dsc@dsc-basic: > o bat-adlp-11: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_dsc@dsc-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/intel/issues/3840>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_dsc@dsc-basic.html> > > > Known issues > > Here are the changes found in IGTPW_10403 that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@fbdev@info: > > o > > bat-adlp-11: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@info.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@info.html> (i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849> / i915#2582 <https://gitlab.freedesktop.org/drm/intel/issues/2582>) > > o > > bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@fbdev@info.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>) > > * > > igt@fbdev@nullptr: > > o bat-adlp-11: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@nullptr.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@nullptr.html> (i915#2582 <https://gitlab.freedesktop.org/drm/intel/issues/2582>) +3 other tests skip > * > > igt@gem_lmem_swapping@parallel-random-engines: > > o bat-kbl-2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +36 other tests skip > * > > igt@gem_lmem_swapping@verify-random: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@gem_lmem_swapping@verify-random.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +3 other tests skip > * > > igt@i915_pm_rps@basic-api: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@i915_pm_rps@basic-api.html> (i915#6621 <https://gitlab.freedesktop.org/drm/intel/issues/6621>) > * > > igt@kms_flip@basic-flip-vs-dpms: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms.html> (i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +3 other tests skip > * > > igt@kms_frontbuffer_tracking@basic: > > o bat-adlp-11: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html> (i915#4342 <https://gitlab.freedesktop.org/drm/intel/issues/4342> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) > * > > igt@kms_pm_backlight@basic-brightness@edp-1: > > o bat-rplp-1: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>) > * > > igt@kms_setmode@basic-clone-single-crtc: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) > * > > igt@prime_vgem@basic-fence-flip: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-flip.html> (fdo#109295 <https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) > * > > igt@prime_vgem@basic-fence-read: > > o bat-adlp-11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-read.html> (fdo#109295 <https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) +2 other tests skip > > > Possible fixes > > * > > igt@gem_exec_suspend@basic-s0@lmem0: > > o bat-dg2-9: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html> (i915#9275 <https://gitlab.freedesktop.org/drm/intel/issues/9275>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html> > * > > igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: > > o bat-rplp-1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html> > * > > igt@kms_pm_rpm@basic-pci-d3-state: > > o bat-adlp-11: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html> > > > Warnings > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > o bat-adlp-11: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103> / i915#5608 <https://gitlab.freedesktop.org/drm/intel/issues/5608>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#5608 <https://gitlab.freedesktop.org/drm/intel/issues/5608>) +1 other test skip > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7636 -> IGTPW_10403 > > CI-20190529: 20190529 > CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html > IGT_7636: 7636 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.xeBAT: success for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz 2023-12-12 12:25 ` ✗ Fi.CI.BAT: failure for " Patchwork @ 2023-12-12 12:50 ` Patchwork 2023-12-13 6:43 ` ✗ Fi.CI.BAT: failure " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-12 12:50 UTC (permalink / raw) To: Bernatowicz, Marcin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 14451 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : success == Summary == CI Bug Log - changes from XEIGT_7636_BAT -> XEIGTPW_10403_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (1 -> 4) ------------------------------ Additional (3): bat-pvc-2 bat-dg2-oem2 bat-atsm-2 Known issues ------------ Here are the changes found in XEIGTPW_10403_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([i915#6077]) +30 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#623]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-set-prop-any: - bat-atsm-2: NOTRUN -> [SKIP][3] ([i915#6077]) +30 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#1024] / [Intel XE#784]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_dsc@dsc-basic.html - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#1024] / [Intel XE#784]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_dsc@dsc-basic.html - bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#423]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#540]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#540]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: NOTRUN -> [SKIP][13] ([i915#5274]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#1024] / [Intel XE#783]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html - bat-dg2-oem2: NOTRUN -> [FAIL][15] ([Intel XE#608]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html - bat-atsm-2: NOTRUN -> [SKIP][16] ([Intel XE#1024] / [Intel XE#783]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: NOTRUN -> [FAIL][17] ([Intel XE#400] / [Intel XE#616]) +2 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-2: NOTRUN -> [SKIP][18] ([i915#1836]) +6 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][19] ([Intel XE#829]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][20] ([Intel XE#780]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@kms_prop_blob@basic.html - bat-atsm-2: NOTRUN -> [SKIP][21] ([Intel XE#780]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@kms_prop_blob@basic.html * igt@xe_compute@compute-square: - bat-atsm-2: NOTRUN -> [SKIP][22] ([Intel XE#672]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_compute@compute-square.html - bat-dg2-oem2: NOTRUN -> [SKIP][23] ([Intel XE#672]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@xe_compute@compute-square.html * igt@xe_create@create-execqueues-noleak: - bat-adlp-7: [PASS][24] -> [FAIL][25] ([Intel XE#524]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7636/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html - bat-atsm-2: NOTRUN -> [FAIL][26] ([Intel XE#524]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][27] ([Intel XE#1000]) +3 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][28] ([Intel XE#482]) +3 other tests dmesg-fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-pvc-2: NOTRUN -> [INCOMPLETE][29] ([Intel XE#392]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_fault_mode@many-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][30] ([Intel XE#288]) +32 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm: - bat-atsm-2: NOTRUN -> [SKIP][31] ([Intel XE#288]) +32 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][32] ([Intel XE#255]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_huc_copy@huc_copy.html - bat-dg2-oem2: NOTRUN -> [SKIP][33] ([Intel XE#255]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html - bat-atsm-2: NOTRUN -> [SKIP][34] ([Intel XE#255]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][35] ([Intel XE#532]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_module_load@load: - bat-pvc-2: NOTRUN -> [SKIP][36] ([Intel XE#378]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_module_load@load.html * igt@xe_pat@pat-index-xe2: - bat-pvc-2: NOTRUN -> [SKIP][37] ([Intel XE#977]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_pat@pat-index-xe2.html - bat-atsm-2: NOTRUN -> [SKIP][38] ([Intel XE#977]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_pat@pat-index-xe2.html - bat-dg2-oem2: NOTRUN -> [SKIP][39] ([Intel XE#977]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-dg2-oem2: NOTRUN -> [SKIP][40] ([Intel XE#979]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-atsm-2: NOTRUN -> [SKIP][41] ([Intel XE#979]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html - bat-pvc-2: NOTRUN -> [SKIP][42] ([Intel XE#979]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][43] ([Intel XE#531]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html * igt@xe_prime_self_import@basic-with_one_bo: - bat-atsm-2: NOTRUN -> [FAIL][44] ([Intel XE#999]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html - bat-pvc-2: NOTRUN -> [FAIL][45] ([Intel XE#999]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][46] ([Intel XE#480]) -> [PASS][47] +1 other test pass [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7636/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-WARN][48] ([Intel XE#282] / [i915#2017]) -> [DMESG-FAIL][49] ([Intel XE#1033] / [i915#2017]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7636/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 [Intel XE#976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/976 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 Build changes ------------- * IGT: IGT_7636 -> IGTPW_10403 IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 xe-570-0c30a1b58ce6096e5d6a6c9ba32961c345fab7c8: 0c30a1b58ce6096e5d6a6c9ba32961c345fab7c8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 17518 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.BAT: failure for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz 2023-12-12 12:25 ` ✗ Fi.CI.BAT: failure for " Patchwork 2023-12-12 12:50 ` ✓ CI.xeBAT: success " Patchwork @ 2023-12-13 6:43 ` Patchwork 2023-12-13 7:15 ` ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-13 6:43 UTC (permalink / raw) To: Bernatowicz, Marcin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8916 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : failure == Summary == CI Bug Log - changes from IGT_7636 -> IGTPW_10403 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10403 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10403, 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_10403/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): bat-kbl-2 Missing (3): fi-skl-guc fi-snb-2520m fi-pnv-d510 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10403: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-11: [PASS][1] -> [SKIP][2] +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_pipe_crc_basic@read-crc: - bat-adlp-11: NOTRUN -> [SKIP][3] +8 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-adlp-11: [SKIP][4] ([i915#3555] / [i915#3840]) -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_dsc@dsc-basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_dsc@dsc-basic.html Known issues ------------ Here are the changes found in IGTPW_10403 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-adlp-11: [PASS][6] -> [SKIP][7] ([i915#1849] / [i915#2582]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@info.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@info.html - bat-kbl-2: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1849]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@fbdev@info.html * igt@fbdev@nullptr: - bat-adlp-11: [PASS][9] -> [SKIP][10] ([i915#2582]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@nullptr.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@nullptr.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][11] ([fdo#109271]) +36 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-adlp-11: NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-adlp-11: NOTRUN -> [SKIP][13] ([i915#6621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-adlp-11: [PASS][14] -> [SKIP][15] ([i915#9824]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-11: NOTRUN -> [SKIP][16] ([i915#3637]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-11: [PASS][17] -> [SKIP][18] ([i915#4342] / [i915#5354]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][19] ([i915#8668]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-11: NOTRUN -> [SKIP][20] ([i915#3555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlp-11: NOTRUN -> [SKIP][21] ([fdo#109295] / [i915#3708]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-adlp-11: NOTRUN -> [SKIP][22] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][23] ([i915#9275]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][25] ([i915#8668]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-adlp-11: [ABORT][27] ([i915#8668]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-11: [SKIP][29] ([i915#4103] / [i915#5608]) -> [SKIP][30] ([i915#5608]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.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 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9824]: https://gitlab.freedesktop.org/drm/intel/issues/9824 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7636 -> IGTPW_10403 CI-20190529: 20190529 CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 10558 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz ` (2 preceding siblings ...) 2023-12-13 6:43 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2023-12-13 7:15 ` Patchwork 2023-12-13 8:10 ` ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-13 7:15 UTC (permalink / raw) To: Bernatowicz, Marcin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8497 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : success == Summary == CI Bug Log - changes from IGT_7636 -> IGTPW_10403 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): bat-kbl-2 Missing (3): fi-skl-guc fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_10403 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-adlp-11: [PASS][1] -> [SKIP][2] ([i915#1849] / [i915#2582]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@info.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@info.html - bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@fbdev@info.html * igt@fbdev@nullptr: - bat-adlp-11: [PASS][4] -> [SKIP][5] ([i915#2582]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@fbdev@nullptr.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@fbdev@nullptr.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][6] ([fdo#109271]) +36 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-adlp-11: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-11: [PASS][9] -> [SKIP][10] ([i915#9866]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-adlp-11: [PASS][11] -> [SKIP][12] ([i915#9824]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-11: NOTRUN -> [SKIP][13] ([i915#3637]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-11: [PASS][14] -> [SKIP][15] ([i915#4342] / [i915#5354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc: - bat-adlp-11: NOTRUN -> [SKIP][16] ([i915#9866]) +8 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][17] ([i915#8668]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-11: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlp-11: NOTRUN -> [SKIP][19] ([fdo#109295] / [i915#3708]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-adlp-11: NOTRUN -> [SKIP][20] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][21] ([i915#9275]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][23] ([i915#8668]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-adlp-11: [ABORT][25] ([i915#8668]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-11: [SKIP][27] ([i915#4103] / [i915#5608]) -> [SKIP][28] ([i915#5608]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adlp-11: [SKIP][29] ([i915#3555] / [i915#3840]) -> [SKIP][30] ([i915#9866]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/bat-adlp-11/igt@kms_dsc@dsc-basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/bat-adlp-11/igt@kms_dsc@dsc-basic.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 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9824]: https://gitlab.freedesktop.org/drm/intel/issues/9824 [i915#9866]: https://gitlab.freedesktop.org/drm/intel/issues/9866 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7636 -> IGTPW_10403 CI-20190529: 20190529 CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 10260 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz ` (3 preceding siblings ...) 2023-12-13 7:15 ` ✓ Fi.CI.BAT: success " Patchwork @ 2023-12-13 8:10 ` Patchwork 2023-12-13 13:47 ` [PATCH i-g-t] " Tvrtko Ursulin 2023-12-14 7:18 ` ✓ Fi.CI.IGT: success for " Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-13 8:10 UTC (permalink / raw) To: Bernatowicz, Marcin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82997 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : failure == Summary == CI Bug Log - changes from IGT_7636_full -> IGTPW_10403_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10403_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10403_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_10403/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10403_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_freq@sysfs: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_freq@sysfs@gt0: - shard-tglu: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html - shard-dg1: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_freq@sysfs@gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@gem_ctx_freq@sysfs@gt1.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-dg2: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@perf@create-destroy-userspace-config: - shard-mtlp: NOTRUN -> [ABORT][6] +1 other test abort [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@perf@create-destroy-userspace-config.html Known issues ------------ Here are the changes found in IGTPW_10403_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +20 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +10 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#9310]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_compute@compute-square.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#9860]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb4/igt@gem_ctx_persistence@processes.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][25] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_balancer: - shard-glk: NOTRUN -> [INCOMPLETE][26] ([i915#2295]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk8/igt@gem_exec_balancer.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [ABORT][27] ([i915#9855]) +1 other test abort [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@fairslice: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#9855] / [i915#9856]) +1 other test abort [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_balancer@full-late-pulse: - shard-tglu: NOTRUN -> [INCOMPLETE][29] ([i915#9856]) +1 other test incomplete [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@gem_exec_balancer@full-late-pulse.html - shard-mtlp: NOTRUN -> [ABORT][30] ([i915#9855] / [i915#9856]) +2 other tests abort [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_exec_balancer@full-late-pulse.html - shard-rkl: NOTRUN -> [ABORT][31] ([i915#9855] / [i915#9856]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html * igt@gem_exec_balancer@individual: - shard-glk: NOTRUN -> [ABORT][32] ([i915#9855]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@gem_exec_balancer@individual.html * igt@gem_exec_balancer@nop: - shard-dg1: NOTRUN -> [INCOMPLETE][33] ([i915#9856]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_exec_balancer@nop.html * igt@gem_exec_balancer@smoke: - shard-dg2: NOTRUN -> [INCOMPLETE][34] ([i915#9856]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@gem_exec_balancer@smoke.html - shard-rkl: NOTRUN -> [INCOMPLETE][35] ([i915#9856]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@gem_exec_balancer@smoke.html - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#9856]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk9/igt@gem_exec_balancer@smoke.html - shard-mtlp: NOTRUN -> [ABORT][37] ([i915#9856]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_balancer@smoke.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_fair@basic-flow.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_fence@concurrent.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#109313]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][46] ([fdo#109313]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3711]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][56] ([i915#7975] / [i915#8213]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-sync: - shard-snb: NOTRUN -> [INCOMPLETE][58] ([i915#9857]) +5 other tests incomplete [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@gem_exec_whisper@basic-sync.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613] / [i915#7582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#4613]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +8 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_pread@bench.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@gem_pread@bench.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb7/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-tglu: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109289]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@gen7_exec_parse@load-register-reg.html - shard-mtlp: NOTRUN -> [SKIP][91] ([fdo#109289]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4881]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4881]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-glk: NOTRUN -> [ABORT][101] ([i915#9855] / [i915#9858]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [INCOMPLETE][102] ([i915#9858]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][103] ([i915#9858]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#8925]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4387]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-15/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8437]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#6245]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6229]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615] / [i915#5286]) +6 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111614]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111614] / [i915#3638]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#111614]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][122] -> [FAIL][123] ([i915#3743]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111615]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#110723]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111615]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#2705]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@kms_big_joiner@invalid-modeset.html - shard-tglu: NOTRUN -> [SKIP][131] ([i915#2705]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_big_joiner@invalid-modeset.html - shard-dg2: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +32 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +39 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_ccs@pipe-b-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][137] ([i915#5354]) +62 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +17 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +40 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@kms_chamelium_color@ctm-green-to-red.html - shard-dg1: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_chamelium_color@ctm-green-to-red.html - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111827]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_chamelium_color@ctm-green-to-red.html - shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111827]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3116]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3116] / [i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6944]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3359]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3359]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109274]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9809]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274] / [i915#5354]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][171] ([i915#2346]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9067]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9067]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9067]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9067]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][176] ([i915#9067]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#4103]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#4103]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9688]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#658]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3637]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109274] / [i915#3637]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825]) +8 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][195] ([fdo#111767] / [i915#3637]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274] / [fdo#111767]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-rkl: NOTRUN -> [SKIP][197] ([fdo#111767] / [fdo#111825]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg1: NOTRUN -> [SKIP][198] ([fdo#111767] / [fdo#111825]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109274] / [fdo#111767] / [i915#3637]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#2672]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#2587] / [i915#2672]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5274]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5274]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][207] ([fdo#111825]) +39 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][208] -> [SKIP][209] ([fdo#109271]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#5439]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#5439]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#5439]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5460]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5460]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3458]) +7 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +9 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111825] / [i915#1825]) +34 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][219] ([fdo#109280]) +35 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9766]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9766]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#9766]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#9766]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3023]) +13 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3458]) +9 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][226] ([fdo#109271]) +170 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8708]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1825]) +32 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][229] ([fdo#109271]) +504 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][230] ([fdo#110189]) +14 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#433]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#4816]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4816]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#4070] / [i915#4816]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][236] ([i915#1839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][237] ([fdo#109289]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-rkl: NOTRUN -> [SKIP][238] ([fdo#109289]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-dg1: NOTRUN -> [SKIP][239] ([fdo#109289]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][240] ([i915#4573]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9423]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9423]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9423]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#5354]) +27 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9812]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9519]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9519]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][249] ([fdo#109293]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_pm_rpm@pc8-residency.html - shard-rkl: NOTRUN -> [SKIP][250] ([fdo#109293] / [fdo#109506]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html - shard-dg1: NOTRUN -> [SKIP][251] ([fdo#109293] / [fdo#109506]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_pm_rpm@pc8-residency.html - shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109293] / [fdo#109506]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_pm_rpm@pc8-residency.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9683]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9683]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#9683]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4348]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][257] ([i915#9683]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][258] ([fdo#111068] / [i915#9683]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][259] ([fdo#111068] / [i915#9683]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#5289]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][262] ([i915#5289]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#4235]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#4235]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][266] ([i915#5465]) +1 other test fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8823]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8623]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#8623]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8623]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8623]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#2437] / [i915#9412]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][274] ([i915#2437] / [i915#9412]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#2437] / [i915#9412]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][277] ([fdo#109271] / [i915#2437]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2437] / [i915#9412]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@disabled-read-error: - shard-dg2: NOTRUN -> [ABORT][279] ([i915#9847]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-7/igt@perf@disabled-read-error.html - shard-rkl: NOTRUN -> [ABORT][280] ([i915#9847]) +3 other tests abort [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-6/igt@perf@disabled-read-error.html * igt@perf@invalid-oa-format-id: - shard-dg1: NOTRUN -> [ABORT][281] ([i915#9847]) +1 other test abort [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@perf@invalid-oa-format-id.html * igt@perf@invalid-open-flags: - shard-mtlp: NOTRUN -> [ABORT][282] ([i915#9847]) +6 other tests abort [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@perf@invalid-open-flags.html * igt@perf_pmu@busy-accuracy-2@rcs0: - shard-rkl: NOTRUN -> [ABORT][283] ([i915#9847] / [i915#9853]) +1 other test abort [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-6/igt@perf_pmu@busy-accuracy-2@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][284] ([i915#9853]) +1 other test incomplete [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-15/igt@perf_pmu@busy-accuracy-2@rcs0.html * igt@perf_pmu@gt-awake: - shard-tglu: NOTRUN -> [INCOMPLETE][285] ([i915#9853]) +3 other tests incomplete [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@perf_pmu@gt-awake.html - shard-dg2: NOTRUN -> [INCOMPLETE][286] ([i915#9853]) +1 other test incomplete [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@perf_pmu@gt-awake.html - shard-rkl: NOTRUN -> [INCOMPLETE][287] ([i915#9853]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@perf_pmu@gt-awake.html * igt@perf_pmu@module-unload: - shard-snb: NOTRUN -> [INCOMPLETE][288] ([i915#9853]) +6 other tests incomplete [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb6/igt@perf_pmu@module-unload.html * igt@perf_pmu@render-node-busy@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][289] ([i915#9853]) +3 other tests incomplete [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk4/igt@perf_pmu@render-node-busy@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][290] ([i915#9847] / [i915#9853]) +3 other tests abort [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@perf_pmu@render-node-busy@rcs0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#3291] / [i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][292] ([fdo#109295] / [i915#3291] / [i915#3708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#3708]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][294] ([fdo#109295]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@prime_vgem@fence-write-hang.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3708]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3708]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][297] ([fdo#109295] / [i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@prime_vgem@fence-write-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-snb: NOTRUN -> [FAIL][298] ([i915#9781]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#2575]) +5 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@v3d/v3d_get_bo_offset@create-get-offsets.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#2575]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109315]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109315] / [i915#2575]) +5 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@v3d/v3d_submit_cl@valid-submission.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2575]) +5 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@v3d/v3d_submit_cl@valid-submission.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#7711]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#7711]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#7711]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#2575]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#7711]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@gem_exec_whisper@basic-sync-all: - shard-mtlp: [ABORT][309] ([i915#9857]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@gem_exec_whisper@basic-sync-all.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_whisper@basic-sync-all.html #### Warnings #### * igt@gem_exec_balancer@semaphore: - shard-glk: [INCOMPLETE][311] ([i915#9856]) -> [ABORT][312] ([i915#9855] / [i915#9856]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-glk5/igt@gem_exec_balancer@semaphore.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@gem_exec_balancer@semaphore.html - shard-mtlp: [ABORT][313] ([i915#9855]) -> [ABORT][314] ([i915#9855] / [i915#9856]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@gem_exec_balancer@semaphore.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_exec_balancer@semaphore.html * igt@gem_exec_whisper@basic-sync-all: - shard-glk: [ABORT][315] ([i915#9857]) -> [INCOMPLETE][316] ([i915#9857]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-glk1/igt@gem_exec_whisper@basic-sync-all.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk4/igt@gem_exec_whisper@basic-sync-all.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-rkl: [INCOMPLETE][317] ([i915#9858]) -> [ABORT][318] ([i915#9855] / [i915#9858]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-mtlp: [ABORT][319] ([i915#9855]) -> [ABORT][320] ([i915#9855] / [i915#9858]) +1 other test abort [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - shard-dg2: [ABORT][321] ([i915#9855]) -> [INCOMPLETE][322] ([i915#9858]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@perf_pmu@render-node-busy@rcs0: - shard-rkl: [ABORT][323] ([i915#9847]) -> [INCOMPLETE][324] ([i915#9853]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-3/igt@perf_pmu@render-node-busy@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@perf_pmu@render-node-busy@rcs0.html - shard-dg1: [ABORT][325] ([i915#9847]) -> [INCOMPLETE][326] ([i915#9853]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-dg1-13/igt@perf_pmu@render-node-busy@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@perf_pmu@render-node-busy@rcs0.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 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [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#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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#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#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [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#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#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [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#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [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#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#9860]: https://gitlab.freedesktop.org/drm/intel/issues/9860 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7636 -> IGTPW_10403 CI-20190529: 20190529 CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 107348 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz ` (4 preceding siblings ...) 2023-12-13 8:10 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-13 13:47 ` Tvrtko Ursulin 2023-12-14 14:13 ` Bernatowicz, Marcin 2023-12-14 7:18 ` ✓ Fi.CI.IGT: success for " Patchwork 6 siblings, 1 reply; 11+ messages in thread From: Tvrtko Ursulin @ 2023-12-13 13:47 UTC (permalink / raw) To: Marcin Bernatowicz, igt-dev On 12/12/2023 11:34, 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. > > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > --- > benchmarks/gem_wsim.c | 106 +++++++++++++++++++++++++++++++----------- > 1 file changed, 80 insertions(+), 26 deletions(-) > > diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c > index 30673da8f..7455cd6a1 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; > @@ -1504,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); How is this hink related I did not get it? Should it be a separate patch? > > /* Store initial 64b timestamp: start */ > *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; > @@ -1539,9 +1546,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 +1565,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 +1661,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; Why does this have 'w' as an argument but doesn't use it? > } > > static uint32_t alloc_bo(int i915, unsigned long *size) > @@ -1673,6 +1686,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 +1703,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; w->bb_size is unsigned long, the two should probably match. > > if (dep->working_set == -1) { > int dep_idx = w->idx + dep->target; > @@ -1694,6 +1724,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 +1738,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 +1784,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 +2078,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 +2092,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 +2205,12 @@ 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 = get_reloc_ahnd(fd, share_vm); > + ctx2->vm = wrk->vm_list; > break; > } > > @@ -2174,6 +2226,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 +2320,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) Can some of this go to common, now that struct vm is common? Maybe not.. remind me, plan is for xe backend to support more than one vm? That's why get_vm has w_step as argument? Regards, Tvrtko > > __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 +2900,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); ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations 2023-12-13 13:47 ` [PATCH i-g-t] " Tvrtko Ursulin @ 2023-12-14 14:13 ` Bernatowicz, Marcin 2023-12-14 14:36 ` Tvrtko Ursulin 0 siblings, 1 reply; 11+ messages in thread From: Bernatowicz, Marcin @ 2023-12-14 14:13 UTC (permalink / raw) To: Tvrtko Ursulin, igt-dev Hi, On 12/13/2023 2:47 PM, Tvrtko Ursulin wrote: > > On 12/12/2023 11:34, 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. >> >> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >> --- >> benchmarks/gem_wsim.c | 106 +++++++++++++++++++++++++++++++----------- >> 1 file changed, 80 insertions(+), 26 deletions(-) >> >> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >> index 30673da8f..7455cd6a1 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; >> @@ -1504,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); > > How is this hink related I did not get it? Should it be a separate patch? It appears that 'gem_mmap__wc' is not working for atsm (it might be necessary to use I915_MMAP_OFFSET_FIXED for discrete?). Without extensive investigation, I've adopted the mapping approach from lib/igt_dummyload. This modification could potentially be applied in a separate patch. > >> /* Store initial 64b timestamp: start */ >> *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; >> @@ -1539,9 +1546,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 +1565,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 +1661,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; > > Why does this have 'w' as an argument but doesn't use it? > At present, we are operating with a single vm. However, if additional vms are introduced, the 'w' parameter will be utilized to select the appropriate one (return get_ctx(wrk, w)->vm). >> } >> static uint32_t alloc_bo(int i915, unsigned long *size) >> @@ -1673,6 +1686,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 +1703,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; > > w->bb_size is unsigned long, the two should probably match. I selected the dep_size type to match the uint64_t parameter type of the get_offset function. While the final result will remain unchanged, it might be more coherent to use unsigned long, aligning with the type of values dep_size is assigned, and pass that to the get_offset function. > >> if (dep->working_set == -1) { >> int dep_idx = w->idx + dep->target; >> @@ -1694,6 +1724,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 +1738,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 +1784,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 +2078,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 +2092,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 +2205,12 @@ 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 = get_reloc_ahnd(fd, share_vm); >> + ctx2->vm = wrk->vm_list; >> break; >> } >> @@ -2174,6 +2226,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 +2320,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) > > Can some of this go to common, now that struct vm is common? Maybe not.. > remind me, plan is for xe backend to support more than one vm? That's > why get_vm has w_step as argument? Yes, that's correct. I should tackle it when adding support for more vms. For the time being, the primary requirement for this patch is a vm id to align with intel_allocator's needs. -- marcin > > Regards, > > Tvrtko > >> __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 +2900,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); ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations 2023-12-14 14:13 ` Bernatowicz, Marcin @ 2023-12-14 14:36 ` Tvrtko Ursulin 0 siblings, 0 replies; 11+ messages in thread From: Tvrtko Ursulin @ 2023-12-14 14:36 UTC (permalink / raw) To: Bernatowicz, Marcin, igt-dev On 14/12/2023 14:13, Bernatowicz, Marcin wrote: > Hi, > > On 12/13/2023 2:47 PM, Tvrtko Ursulin wrote: >> >> On 12/12/2023 11:34, 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. >>> >>> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >>> --- >>> benchmarks/gem_wsim.c | 106 +++++++++++++++++++++++++++++++----------- >>> 1 file changed, 80 insertions(+), 26 deletions(-) >>> >>> diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c >>> index 30673da8f..7455cd6a1 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; >>> @@ -1504,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); >> >> How is this hink related I did not get it? Should it be a separate patch? > > It appears that 'gem_mmap__wc' is not working for atsm (it might be > necessary to use I915_MMAP_OFFSET_FIXED for discrete?). Without > extensive investigation, I've adopted the mapping approach from > lib/igt_dummyload. This modification could potentially be applied in a > separate patch. Yeah I would say split it since mmap and relocations are two separate topics. The rest then looks good to me. Regards, Tvrtko > >> >>> /* Store initial 64b timestamp: start */ >>> *cs++ = MI_LOAD_REGISTER_IMM(1) | MI_CS_MMIO_DST; >>> @@ -1539,9 +1546,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 +1565,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 +1661,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; >> >> Why does this have 'w' as an argument but doesn't use it? >> > > At present, we are operating with a single vm. However, if additional > vms are introduced, the 'w' parameter will be utilized to select the > appropriate one (return get_ctx(wrk, w)->vm). > >>> } >>> static uint32_t alloc_bo(int i915, unsigned long *size) >>> @@ -1673,6 +1686,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 +1703,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; >> >> w->bb_size is unsigned long, the two should probably match. > > I selected the dep_size type to match the uint64_t parameter type of the > get_offset function. While the final result will remain unchanged, it > might be more coherent to use unsigned long, aligning with the type of > values dep_size is assigned, and pass that to the get_offset function. > >> >>> if (dep->working_set == -1) { >>> int dep_idx = w->idx + dep->target; >>> @@ -1694,6 +1724,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 +1738,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 +1784,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 +2078,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 +2092,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 +2205,12 @@ 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 = get_reloc_ahnd(fd, share_vm); >>> + ctx2->vm = wrk->vm_list; >>> break; >>> } >>> @@ -2174,6 +2226,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 +2320,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) >> >> Can some of this go to common, now that struct vm is common? Maybe >> not.. remind me, plan is for xe backend to support more than one vm? >> That's why get_vm has w_step as argument? > > Yes, that's correct. I should tackle it when adding support for more vms. > For the time being, the primary requirement for this patch is a vm id to > align with intel_allocator's needs. > -- > marcin > >> >> Regards, >> >> Tvrtko >> >>> __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 +2900,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); ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.IGT: success for benchmarks/gem_wsim: Support gens without relocations 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz ` (5 preceding siblings ...) 2023-12-13 13:47 ` [PATCH i-g-t] " Tvrtko Ursulin @ 2023-12-14 7:18 ` Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-12-14 7:18 UTC (permalink / raw) To: Bernatowicz, Marcin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87831 bytes --] == Series Details == Series: benchmarks/gem_wsim: Support gens without relocations URL : https://patchwork.freedesktop.org/series/127677/ State : success == Summary == CI Bug Log - changes from IGT_7636_full -> IGTPW_10403_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between IGT_7636_full and IGTPW_10403_full: ### New IGT tests (61) ### * igt@api_intel_bb@delta-check: - Statuses : - Exec time: [None] s * igt@debugfs_test@sysfs: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@fbdev@eof: - Statuses : - Exec time: [None] s * igt@fbdev@nullptr: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@fbdev@read: - Statuses : - Exec time: [None] s * igt@fbdev@unaligned-read: - Statuses : - Exec time: [None] s * igt@fbdev@unaligned-write: - Statuses : - Exec time: [None] s * igt@fbdev@write: - Statuses : 7 pass(s) - Exec time: [0.19, 1.22] s * igt@gem_ctx_exec@basic-close-race: - Statuses : 7 pass(s) - Exec time: [5.46, 5.80] s * igt@gem_ctx_exec@basic-nohangcheck: - Statuses : 1 pass(s) - Exec time: [0.05] s * igt@gem_ctx_persistence@file: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@idempotent: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@process: - Statuses : - Exec time: [None] s * igt@gem_ctx_persistence@processes: - Statuses : 6 pass(s) 1 skip(s) - Exec time: [0.0, 2.05] s * igt@gem_ctx_persistence@smoketest: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_eio@kms: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [12.32, 21.03] s * igt@gem_exec_balancer@parallel: - Statuses : 1 abort(s) 1 skip(s) - Exec time: [0.0, 0.64] s * igt@gem_exec_balancer@parallel-balancer: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-bb-first: - Statuses : - Exec time: [None] s * igt@gem_exec_balancer@parallel-contexts: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-keep-in-fence: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-keep-submit-fence: - Statuses : 1 abort(s) 1 skip(s) - Exec time: [0.0, 0.97] s * igt@gem_exec_balancer@parallel-ordering: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_exec_balancer@parallel-out-fence: - Statuses : - Exec time: [None] s * igt@gem_exec_suspend@basic-s0: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@basic: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@basic@lmem0: - Statuses : 2 pass(s) - Exec time: [17.59, 19.74] s * igt@gem_lmem_swapping@heavy-multi: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@heavy-random: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-verify-multi: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@heavy-verify-random: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@parallel-multi: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_lmem_swapping@parallel-random: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@parallel-random-engines: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@parallel-random-verify: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@random: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@random-engines: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@smem-oom: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@verify: - Statuses : - Exec time: [None] s * igt@gem_lmem_swapping@verify-random: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@close-race: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-basic-small-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - Statuses : 1 pass(s) - Exec time: [0.86] s * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy: - Statuses : 3 pass(s) 3 skip(s) - Exec time: [0.0, 15.67] s * igt@gem_mmap_gtt@cpuset-big-copy-odd: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-big-copy-xy: - Statuses : 1 pass(s) - Exec time: [3.53] s * igt@gem_mmap_gtt@cpuset-medium-copy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@flink-race: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-busy: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@hang-user: - Statuses : - Exec time: [None] s * igt@gem_mmap_gtt@isolation: - Statuses : 2 pass(s) 3 skip(s) - Exec time: [0.0, 0.00] s * igt@gem_pread@exhaustion: - Statuses : 1 warn(s) - Exec time: [4.29] s * igt@gem_pwrite@basic-exhaustion: - Statuses : - Exec time: [None] s * igt@gem_pwrite@basic-self: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@huge-split: - Statuses : - Exec time: [None] s * igt@gem_userptr_blits@nohangcheck: - Statuses : 6 pass(s) - Exec time: [0.06, 0.26] s * igt@gem_userptr_blits@stress-purge: - Statuses : 1 pass(s) - Exec time: [5.42] s * igt@gem_userptr_blits@vma-merge: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_10403_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +20 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) +10 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3555]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#7297]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9310]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_compute@compute-square.html * igt@gem_ctx_freq@sysfs: - shard-glk: NOTRUN -> [INCOMPLETE][14] ([i915#9855]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_freq@sysfs@gt0: - shard-tglu: NOTRUN -> [INCOMPLETE][15] ([i915#9855]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#9860]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html - shard-dg1: NOTRUN -> [INCOMPLETE][17] ([i915#9855]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_freq@sysfs@gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][18] ([i915#9855]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@gem_ctx_freq@sysfs@gt1.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@processes (NEW): - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb4/igt@gem_ctx_persistence@processes.html * igt@gem_eio@kms (NEW): - shard-dg1: NOTRUN -> [FAIL][23] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_balancer: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#2295]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk8/igt@gem_exec_balancer.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [ABORT][25] ([i915#9855]) +2 other tests abort [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@fairslice: - shard-dg2: NOTRUN -> [ABORT][26] ([i915#9855] / [i915#9856]) +1 other test abort [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_balancer@full-late-pulse: - shard-tglu: NOTRUN -> [INCOMPLETE][27] ([i915#9856]) +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@gem_exec_balancer@full-late-pulse.html - shard-mtlp: NOTRUN -> [ABORT][28] ([i915#9855] / [i915#9856]) +2 other tests abort [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_exec_balancer@full-late-pulse.html - shard-rkl: NOTRUN -> [ABORT][29] ([i915#9855] / [i915#9856]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@gem_exec_balancer@full-late-pulse.html * igt@gem_exec_balancer@individual: - shard-glk: NOTRUN -> [ABORT][30] ([i915#9855]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@gem_exec_balancer@individual.html * igt@gem_exec_balancer@nop: - shard-dg1: NOTRUN -> [INCOMPLETE][31] ([i915#9856]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_exec_balancer@nop.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-dg2: NOTRUN -> [ABORT][32] ([i915#9855]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@smoke: - shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#9856]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@gem_exec_balancer@smoke.html - shard-rkl: NOTRUN -> [INCOMPLETE][34] ([i915#9856]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@gem_exec_balancer@smoke.html - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#9856]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk9/igt@gem_exec_balancer@smoke.html - shard-mtlp: NOTRUN -> [ABORT][36] ([i915#9856]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_balancer@smoke.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_fair@basic-flow.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_fence@concurrent.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][44] ([fdo#109313]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][45] ([fdo#109313]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3711]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue.html - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][56] ([i915#7975] / [i915#8213]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-sync: - shard-snb: NOTRUN -> [INCOMPLETE][57] ([i915#9857]) +5 other tests incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@gem_exec_whisper@basic-sync.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic (NEW): - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi (NEW): - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#4613]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy (NEW): - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_pread@bench.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@gem_pread@bench.html * igt@gem_pread@exhaustion (NEW): - shard-snb: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb7/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][89] ([fdo#109289]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@gen7_exec_parse@load-register-reg.html - shard-mtlp: NOTRUN -> [SKIP][90] ([fdo#109289]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4881]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4881]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8399]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-glk: NOTRUN -> [ABORT][100] ([i915#9855] / [i915#9858]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [INCOMPLETE][101] ([i915#9858]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-snb: NOTRUN -> [INCOMPLETE][102] ([i915#9858]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#8925]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][105] ([i915#4387]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-15/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8437]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6229]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#111615] / [i915#5286]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#111614]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111614]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][118] ([fdo#111614] / [i915#3638]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][121] -> [FAIL][122] ([i915#3743]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#110723]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#2705]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@kms_big_joiner@invalid-modeset.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#2705]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2705]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_big_joiner@invalid-modeset.html - shard-dg2: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +32 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +39 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_ccs@pipe-b-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][136] ([i915#5354]) +62 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +17 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +40 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#111827]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111827]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@kms_chamelium_color@ctm-green-to-red.html - shard-dg1: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_chamelium_color@ctm-green-to-red.html - shard-tglu: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_chamelium_color@ctm-green-to-red.html - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111827]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#7828]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3299]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3116]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#3116] / [i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6944]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3555]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8814]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3359]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3359]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109274]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#5354]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][170] ([i915#2346]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9067]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#9067]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9067]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#9067]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#9067]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#4103]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#4103] / [i915#4213]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3840] / [i915#9688]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3637]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#3637]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][192] ([fdo#111825]) +8 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][193] ([fdo#109274]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][194] ([fdo#111767] / [i915#3637]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [fdo#111767]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-rkl: NOTRUN -> [SKIP][196] ([fdo#111767] / [fdo#111825]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg1: NOTRUN -> [SKIP][197] ([fdo#111767] / [fdo#111825]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109274] / [fdo#111767] / [i915#3637]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#2672]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#5274]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5274]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111825]) +39 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][207] -> [SKIP][208] ([fdo#109271]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#5439]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#5439]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#5439]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#5460]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-dg2: NOTRUN -> [SKIP][213] ([i915#5460]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8708]) +9 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +9 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][217] ([fdo#111825] / [i915#1825]) +34 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +35 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9766]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9766]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#9766]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9766]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +13 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3458]) +9 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][225] ([fdo#109271]) +170 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8708]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#1825]) +32 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][228] ([fdo#109271]) +504 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][229] ([fdo#110189]) +14 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#433]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4816]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#4816]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#4070] / [i915#4816]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#1839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#1839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][236] ([fdo#109289]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109289]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-dg1: NOTRUN -> [SKIP][238] ([fdo#109289]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][239] ([i915#4573]) +1 other test fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#9423]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9423]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#9423]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#5354]) +27 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#5354]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#9812]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9519]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#9519]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-mtlp: NOTRUN -> [SKIP][248] ([fdo#109293]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_pm_rpm@pc8-residency.html - shard-rkl: NOTRUN -> [SKIP][249] ([fdo#109293] / [fdo#109506]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-7/igt@kms_pm_rpm@pc8-residency.html - shard-dg1: NOTRUN -> [SKIP][250] ([fdo#109293] / [fdo#109506]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@kms_pm_rpm@pc8-residency.html - shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109293] / [fdo#109506]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-3/igt@kms_pm_rpm@pc8-residency.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9683]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#9683]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][254] ([i915#9683]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#4348]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][256] ([i915#9683]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][257] ([fdo#111068] / [i915#9683]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][258] ([fdo#111068] / [i915#9683]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-19/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][259] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#5289]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#5289]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4235]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555]) +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][265] ([i915#5465]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8823]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#8623]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][269] ([i915#8623]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8623]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#8623]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#2437] / [i915#9412]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][273] ([i915#2437] / [i915#9412]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#2437] / [i915#9412]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][276] ([fdo#109271] / [i915#2437]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2437] / [i915#9412]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@disabled-read-error: - shard-dg2: NOTRUN -> [ABORT][278] ([i915#9847]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-7/igt@perf@disabled-read-error.html - shard-rkl: NOTRUN -> [ABORT][279] ([i915#9847]) +3 other tests abort [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-6/igt@perf@disabled-read-error.html * igt@perf@invalid-oa-format-id: - shard-dg1: NOTRUN -> [ABORT][280] ([i915#9847]) +1 other test abort [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@perf@invalid-oa-format-id.html * igt@perf@invalid-open-flags: - shard-mtlp: NOTRUN -> [ABORT][281] ([i915#9847]) +7 other tests abort [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-7/igt@perf@invalid-open-flags.html * igt@perf_pmu@busy-accuracy-2@rcs0: - shard-rkl: NOTRUN -> [ABORT][282] ([i915#9847] / [i915#9853]) +1 other test abort [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-6/igt@perf_pmu@busy-accuracy-2@rcs0.html - shard-dg1: NOTRUN -> [INCOMPLETE][283] ([i915#9853]) +1 other test incomplete [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-15/igt@perf_pmu@busy-accuracy-2@rcs0.html * igt@perf_pmu@gt-awake: - shard-tglu: NOTRUN -> [INCOMPLETE][284] ([i915#9853]) +3 other tests incomplete [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@perf_pmu@gt-awake.html - shard-dg2: NOTRUN -> [INCOMPLETE][285] ([i915#9853]) +1 other test incomplete [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@perf_pmu@gt-awake.html - shard-rkl: NOTRUN -> [INCOMPLETE][286] ([i915#9853]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@perf_pmu@gt-awake.html * igt@perf_pmu@module-unload: - shard-snb: NOTRUN -> [INCOMPLETE][287] ([i915#9853]) +6 other tests incomplete [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb6/igt@perf_pmu@module-unload.html * igt@perf_pmu@render-node-busy@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#9853]) +3 other tests incomplete [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk4/igt@perf_pmu@render-node-busy@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][289] ([i915#9847] / [i915#9853]) +3 other tests abort [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-8/igt@perf_pmu@render-node-busy@rcs0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#3291] / [i915#3708]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-6/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][291] ([fdo#109295] / [i915#3291] / [i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][293] ([fdo#109295]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-7/igt@prime_vgem@fence-write-hang.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3708]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3708]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-3/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][296] ([fdo#109295] / [i915#3708]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-1/igt@prime_vgem@fence-write-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-snb: NOTRUN -> [FAIL][297] ([i915#9781]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-snb5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#2575]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@v3d/v3d_get_bo_offset@create-get-offsets.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#2575]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-5/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][300] ([fdo#109315]) +4 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-4/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-tglu: NOTRUN -> [SKIP][301] ([fdo#109315] / [i915#2575]) +5 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-4/igt@v3d/v3d_submit_cl@valid-submission.html - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2575]) +5 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@v3d/v3d_submit_cl@valid-submission.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#7711]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#7711]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#7711]) +7 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-13/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html - shard-tglu: NOTRUN -> [SKIP][306] ([i915#2575]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-tglu-9/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#7711]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@gem_exec_whisper@basic-sync-all: - shard-mtlp: [ABORT][308] ([i915#9857]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@gem_exec_whisper@basic-sync-all.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@gem_exec_whisper@basic-sync-all.html #### Warnings #### * igt@gem_exec_balancer@semaphore: - shard-glk: [INCOMPLETE][310] ([i915#9856]) -> [ABORT][311] ([i915#9855] / [i915#9856]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-glk5/igt@gem_exec_balancer@semaphore.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk1/igt@gem_exec_balancer@semaphore.html - shard-mtlp: [ABORT][312] ([i915#9855]) -> [ABORT][313] ([i915#9855] / [i915#9856]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@gem_exec_balancer@semaphore.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-5/igt@gem_exec_balancer@semaphore.html * igt@gem_exec_whisper@basic-sync-all: - shard-glk: [ABORT][314] ([i915#9857]) -> [INCOMPLETE][315] ([i915#9857]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-glk1/igt@gem_exec_whisper@basic-sync-all.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-glk4/igt@gem_exec_whisper@basic-sync-all.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-rkl: [INCOMPLETE][316] ([i915#9858]) -> [ABORT][317] ([i915#9855] / [i915#9858]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-fence@gt0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-mtlp: [ABORT][318] ([i915#9855]) -> [ABORT][319] ([i915#9855] / [i915#9858]) +1 other test abort [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html - shard-dg2: [ABORT][320] ([i915#9855]) -> [INCOMPLETE][321] ([i915#9858]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@perf_pmu@render-node-busy@rcs0: - shard-rkl: [ABORT][322] ([i915#9847]) -> [INCOMPLETE][323] ([i915#9853]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-rkl-3/igt@perf_pmu@render-node-busy@rcs0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-rkl-2/igt@perf_pmu@render-node-busy@rcs0.html - shard-dg1: [ABORT][324] ([i915#9847]) -> [INCOMPLETE][325] ([i915#9853]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7636/shard-dg1-13/igt@perf_pmu@render-node-busy@rcs0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/shard-dg1-12/igt@perf_pmu@render-node-busy@rcs0.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 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [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#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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#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#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [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#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#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [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#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [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#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#9860]: https://gitlab.freedesktop.org/drm/intel/issues/9860 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7636 -> IGTPW_10403 CI-20190529: 20190529 CI_DRM_14010: b4182ec1538e8cebf630083ec4296bed0061d594 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10403: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html IGT_7636: 7636 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10403/index.html [-- Attachment #2: Type: text/html, Size: 114286 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-12-14 14:36 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-12 11:34 [PATCH i-g-t] benchmarks/gem_wsim: Support gens without relocations Marcin Bernatowicz 2023-12-12 12:25 ` ✗ Fi.CI.BAT: failure for " Patchwork 2023-12-12 12:35 ` Bernatowicz, Marcin 2023-12-12 12:50 ` ✓ CI.xeBAT: success " Patchwork 2023-12-13 6:43 ` ✗ Fi.CI.BAT: failure " Patchwork 2023-12-13 7:15 ` ✓ Fi.CI.BAT: success " Patchwork 2023-12-13 8:10 ` ✗ Fi.CI.IGT: failure " Patchwork 2023-12-13 13:47 ` [PATCH i-g-t] " Tvrtko Ursulin 2023-12-14 14:13 ` Bernatowicz, Marcin 2023-12-14 14:36 ` Tvrtko Ursulin 2023-12-14 7:18 ` ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox