* [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync
@ 2021-11-02 8:39 Zbigniew Kempczyński
2021-11-02 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Zbigniew Kempczyński @ 2021-11-02 8:39 UTC (permalink / raw)
To: igt-dev
On CI we're running only basic tests but we want to have code up-to-date
and ready for no-reloc path.
v2: remove timeout definitions
Zbigniew Kempczyński (1):
tests/gem_sync: Use softpin path for no-reloc gens
tests/i915/gem_sync.c | 59 ++++++++++++++++++++++++++++++++++++++++---
1 file changed, 55 insertions(+), 4 deletions(-)
--
2.26.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens 2021-11-02 8:39 [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync Zbigniew Kempczyński @ 2021-11-02 8:39 ` Zbigniew Kempczyński 2021-11-02 19:40 ` Dixit, Ashutosh 2021-11-02 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Zbigniew Kempczyński @ 2021-11-02 8:39 UTC (permalink / raw) To: igt-dev Migrate to softpin with pre-warming batch or an allocator. Some tests which don't fork can use pre-warming batch which establishes offsets in the kernel before real work is performed. For such adding pinned flag + zeroing relocation is enough. For multiprocess scenarios we need to arbitrate and an allocator need to be used instead. v2: fix also tests which are not running on CI (Ashutosh) v3: use appropriate allocator handle (ahnd) within active_wakeup_ring spinners (Ashutosh) Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/i915/gem_sync.c | 59 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 55 insertions(+), 4 deletions(-) diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c index 0093ca25f..8c435845e 100644 --- a/tests/i915/gem_sync.c +++ b/tests/i915/gem_sync.c @@ -237,6 +237,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout, int wlen) { struct intel_engine_data ied; + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -250,8 +251,13 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, unsigned long cycles; igt_spin_t *spin; + ahnd = get_reloc_ahnd(fd, ctx->id); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.flags = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -261,6 +267,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.rsvd1 = ctx->id; spin = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | @@ -323,8 +330,11 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, igt_spin_free(fd, spin); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -332,6 +342,7 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, int num_children, int timeout) { struct intel_engine_data ied; + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -342,12 +353,16 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, unsigned long cycles; igt_spin_t *spin[2]; + ahnd = get_reloc_ahnd(fd, ctx->id); + spin[0] = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = ied_flags(&ied, child), .flags = IGT_SPIN_FAST); spin[1] = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = ied_flags(&ied, child), .flags = IGT_SPIN_FAST); @@ -370,12 +385,14 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, } while ((elapsed = gettime()) < end); igt_spin_free(fd, spin[1]); igt_spin_free(fd, spin[0]); + put_ahnd(ahnd); igt_info("%s %ld cycles: %.3f us\n", ied_name(&ied, child), cycles, (elapsed - start) * 1e6 / cycles); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -384,6 +401,8 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout, int wlen) { struct intel_engine_data ied; + uint64_t ahnd0 = get_reloc_ahnd(fd, 0); + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -397,8 +416,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, unsigned long cycles; igt_spin_t *spin[2]; + ahnd0 = get_reloc_ahnd(fd, 0); + ahnd = get_reloc_ahnd(fd, ctx->id); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.offset = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -408,12 +433,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.rsvd1 = ctx->id; spin[0] = __igt_spin_new(fd, + .ahnd = ahnd0, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | IGT_SPIN_FAST)); igt_assert(igt_spin_has_poll(spin[0])); spin[1] = __igt_spin_new(fd, + .ahnd = ahnd0, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | IGT_SPIN_FAST)); @@ -490,8 +517,13 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, igt_spin_free(fd, spin[1]); igt_spin_free(fd, spin[0]); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); + put_ahnd(ahnd0); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); + put_ahnd(ahnd0); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -501,6 +533,7 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -532,10 +565,11 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].handle = gem_create(fd, 20*1024); object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; batch = gem_mmap__cpu(fd, object[1].handle, 0, 20*1024, PROT_WRITE | PROT_READ); @@ -599,6 +633,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); gem_require_contexts(fd); @@ -644,7 +679,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, c->object[1].handle = gem_create(fd, sz); c->object[1].relocs_ptr = to_user_pointer(c->reloc); - c->object[1].relocation_count = 1024 * i; + c->object[1].relocation_count = has_relocs ? 1024 * i : 0; batch = gem_mmap__cpu(fd, c->object[1].handle, 0, sz, PROT_WRITE | PROT_READ); @@ -789,6 +824,7 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, int order[64]; uint32_t *batch, *b; int done; + bool has_relocs = gem_has_relocations(fd); memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(object); @@ -805,9 +841,10 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.buffer_count = 1; gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; execbuf.buffer_count = 2; memset(reloc, 0, sizeof(reloc)); @@ -990,6 +1027,7 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); ied = list_store_engines(fd, ctx, ALL_ENGINES); igt_require(ied.nengines); @@ -1019,10 +1057,11 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].handle = gem_create(fd, 1024*16 + 4096); object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; batch = gem_mmap__cpu(fd, object[1].handle, 0, 16*1024 + 4096, PROT_WRITE | PROT_READ); @@ -1091,6 +1130,7 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, { struct intel_engine_data ied; const intel_ctx_t *tmp_ctx[2]; + uint64_t ahnd = get_reloc_ahnd(fd, 0); /* just offset provider */ ied = list_engines(fd, ctx, ALL_ENGINES); igt_require(ied.nengines); @@ -1110,8 +1150,13 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, double start, elapsed; unsigned long cycles; + ahnd = get_reloc_ahnd(fd, 0); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.flags = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -1127,6 +1172,7 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, do { igt_spin_t *spin = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = tmp_ctx[0], .engine = execbuf.flags); @@ -1142,8 +1188,11 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, ied_name(&ied, child), cycles, elapsed * 1e6/cycles); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); } igt_waitchildren_timeout(timeout+10, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); intel_ctx_destroy(fd, tmp_ctx[1]); @@ -1201,6 +1250,7 @@ igt_main ctx = intel_ctx_create_all_physical(fd); igt_fork_hang_detector(fd); + intel_allocator_multiprocess_start(); } /* Legacy for selecting rings. */ @@ -1264,6 +1314,7 @@ igt_main } igt_fixture { + intel_allocator_multiprocess_stop(); igt_stop_hang_detector(); intel_ctx_destroy(fd, ctx); close(fd); -- 2.26.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens 2021-11-02 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński @ 2021-11-02 19:40 ` Dixit, Ashutosh 2021-11-03 7:51 ` Zbigniew Kempczyński 0 siblings, 1 reply; 9+ messages in thread From: Dixit, Ashutosh @ 2021-11-02 19:40 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Tue, 02 Nov 2021 01:39:41 -0700, Zbigniew Kempczyński wrote: > > Migrate to softpin with pre-warming batch or an allocator. Some tests > which don't fork can use pre-warming batch which establishes offsets in > the kernel before real work is performed. For such adding pinned flag > + zeroing relocation is enough. For multiprocess scenarios we need to > arbitrate and an allocator need to be used instead. > > v2: fix also tests which are not running on CI (Ashutosh) > > v3: use appropriate allocator handle (ahnd) within active_wakeup_ring > spinners (Ashutosh) Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> One question below though. > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > --- > tests/i915/gem_sync.c | 59 ++++++++++++++++++++++++++++++++++++++++--- > 1 file changed, 55 insertions(+), 4 deletions(-) > > diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c > index 0093ca25f..8c435845e 100644 > --- a/tests/i915/gem_sync.c > +++ b/tests/i915/gem_sync.c > @@ -237,6 +237,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > int timeout, int wlen) > { > struct intel_engine_data ied; > + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); Is this really needed in the parent even when they are only used in the child processes? This pattern is used everywhere in this patch. Is this a requirement of the allocator API? Thanks. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens 2021-11-02 19:40 ` Dixit, Ashutosh @ 2021-11-03 7:51 ` Zbigniew Kempczyński 0 siblings, 0 replies; 9+ messages in thread From: Zbigniew Kempczyński @ 2021-11-03 7:51 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On Tue, Nov 02, 2021 at 12:40:14PM -0700, Dixit, Ashutosh wrote: > On Tue, 02 Nov 2021 01:39:41 -0700, Zbigniew Kempczyński wrote: > > > > Migrate to softpin with pre-warming batch or an allocator. Some tests > > which don't fork can use pre-warming batch which establishes offsets in > > the kernel before real work is performed. For such adding pinned flag > > + zeroing relocation is enough. For multiprocess scenarios we need to > > arbitrate and an allocator need to be used instead. > > > > v2: fix also tests which are not running on CI (Ashutosh) > > > > v3: use appropriate allocator handle (ahnd) within active_wakeup_ring > > spinners (Ashutosh) > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > One question below though. > > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > > --- > > tests/i915/gem_sync.c | 59 ++++++++++++++++++++++++++++++++++++++++--- > > 1 file changed, 55 insertions(+), 4 deletions(-) > > > > diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c > > index 0093ca25f..8c435845e 100644 > > --- a/tests/i915/gem_sync.c > > +++ b/tests/i915/gem_sync.c > > @@ -237,6 +237,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > > int timeout, int wlen) > > { > > struct intel_engine_data ied; > > + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); > > Is this really needed in the parent even when they are only used in the > child processes? This pattern is used everywhere in this patch. Is this a > requirement of the allocator API? Thanks. It removes race which may generate errors when children requests for offsets from the allocator. Example of error behavior (order in time): child 1: ahnd = get_reloc_ahnd(); // creates new allocator, ahnd refcount 0->1 offset = get_offset(ahnd, ...); //allocator returns first offset, lets say 0x10000 put_ahnd(ahnd); // ahnd refcount 1->0, thus frees allocator child 2: ahnd = get_reloc_ahnd(); // creates new allocator, ahnd refcount 0->1 offset = get_offset(ahnd, ...); //allocator returns first offset, again same 0x10000 put_ahnd(ahnd); // ahnd refcount 1->0, thus frees allocator Additional empty handler around children keeps refcount > 0 so allocator won't be free and recreated so proposed offsets in reloc pseudoallocator will be contigues. -- Zbigniew ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync 2021-11-02 8:39 [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync Zbigniew Kempczyński 2021-11-02 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński @ 2021-11-02 9:22 ` Patchwork 2021-11-02 9:51 ` Zbigniew Kempczyński 2021-11-02 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success for Add no-reloc path in gem_sync (rev2) Patchwork 2021-11-02 16:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2021-11-02 9:22 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4513 bytes --] == Series Details == Series: Add no-reloc path in gem_sync URL : https://patchwork.freedesktop.org/series/96486/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10826 -> IGTPW_6368 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6368 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6368, please notify your bug team 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_6368/index.html Participating hosts (40 -> 32) ------------------------------ Additional (1): fi-pnv-d510 Missing (9): fi-kbl-soraka fi-cml-u2 bat-dg1-6 fi-bsw-n3050 fi-hsw-4200u fi-bsw-cyan bat-adlp-4 fi-elk-e7500 fi-bsw-kefka Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6368: ### IGT changes ### #### Possible regressions #### * igt@core_auth@basic-auth: - fi-kbl-8809g: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10826/fi-kbl-8809g/igt@core_auth@basic-auth.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-kbl-8809g/igt@core_auth@basic-auth.html Known issues ------------ Here are the changes found in IGTPW_6368 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [PASS][3] -> [FAIL][4] ([i915#1888]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10826/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][5] ([fdo#109271]) +53 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][6] ([i915#3363] / [i915#4312]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-kbl-8809g/igt@runner@aborted.html - fi-bdw-5557u: NOTRUN -> [FAIL][7] ([i915#1602] / [i915#2426] / [i915#4312]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-bdw-5557u/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-bdw-5557u: [INCOMPLETE][8] ([i915#146]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10826/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@gem_contexts: - fi-icl-u2: [DMESG-WARN][10] -> [PASS][11] +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10826/fi-icl-u2/igt@i915_selftest@live@gem_contexts.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-icl-u2/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@objects: - fi-icl-u2: [DMESG-WARN][12] ([i915#2867]) -> [PASS][13] +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10826/fi-icl-u2/igt@i915_selftest@live@objects.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/fi-icl-u2/igt@i915_selftest@live@objects.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6266 -> IGTPW_6368 CI-20190529: 20190529 CI_DRM_10826: 8b8fbc1dc64274b9eed192df4bfaeced03bdf0ae @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6368: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html IGT_6266: fa0291675a7a3ade6c219cc52fceac9a0a4a63d8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html [-- Attachment #2: Type: text/html, Size: 5379 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync 2021-11-02 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync Patchwork @ 2021-11-02 9:51 ` Zbigniew Kempczyński 2021-11-02 16:00 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 9+ messages in thread From: Zbigniew Kempczyński @ 2021-11-02 9:51 UTC (permalink / raw) To: igt-dev; +Cc: Vudum, Lakshminarayana On Tue, Nov 02, 2021 at 09:22:56AM +0000, Patchwork wrote: > Patch Details > > Series: Add no-reloc path in gem_sync > URL: https://patchwork.freedesktop.org/series/96486/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html > > CI Bug Log - changes from CI_DRM_10826 -> IGTPW_6368 > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6368 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6368, please notify your bug team 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_6368/index.html > > Participating hosts (40 -> 32) > > Additional (1): fi-pnv-d510 > Missing (9): fi-kbl-soraka fi-cml-u2 bat-dg1-6 fi-bsw-n3050 fi-hsw-4200u > fi-bsw-cyan bat-adlp-4 fi-elk-e7500 fi-bsw-kefka > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_6368: > > IGT changes > > Possible regressions > > * igt@core_auth@basic-auth: > * fi-kbl-8809g: PASS -> FAIL Not related, I've changed gem_sync only. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6368 that come from known issues: > > IGT changes > > Issues hit > > * igt@gem_exec_suspend@basic-s3: > > * fi-tgl-1115g4: PASS -> FAIL (i915#1888) > * igt@prime_vgem@basic-userptr: > > * fi-pnv-d510: NOTRUN -> SKIP (fdo#109271) +53 similar issues > * igt@runner@aborted: > > * fi-kbl-8809g: NOTRUN -> FAIL (i915#3363 / i915#4312) > > * fi-bdw-5557u: NOTRUN -> FAIL (i915#1602 / i915#2426 / i915#4312) > > Possible fixes > > * igt@gem_exec_suspend@basic-s3: > > * fi-bdw-5557u: INCOMPLETE (i915#146) -> PASS > * igt@i915_selftest@live@gem_contexts: > > * fi-icl-u2: DMESG-WARN -> PASS +1 similar issue > * igt@i915_selftest@live@objects: > > * fi-icl-u2: DMESG-WARN (i915#2867) -> PASS +2 similar issues > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_6266 -> IGTPW_6368 > > CI-20190529: 20190529 > CI_DRM_10826: 8b8fbc1dc64274b9eed192df4bfaeced03bdf0ae @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_6368: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html > IGT_6266: fa0291675a7a3ade6c219cc52fceac9a0a4a63d8 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync 2021-11-02 9:51 ` Zbigniew Kempczyński @ 2021-11-02 16:00 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 9+ messages in thread From: Vudum, Lakshminarayana @ 2021-11-02 16:00 UTC (permalink / raw) To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org We have a bug for the regression, I have updated the filter to include the below test https://gitlab.freedesktop.org/drm/intel/-/issues/4301 Few tests - fail - *ERROR* flip_done timed out, *ERROR* commit wait timed out Lakshmi. -----Original Message----- From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> Sent: Tuesday, November 2, 2021 3:52 AM To: igt-dev@lists.freedesktop.org Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync On Tue, Nov 02, 2021 at 09:22:56AM +0000, Patchwork wrote: > Patch Details > > Series: Add no-reloc path in gem_sync > URL: https://patchwork.freedesktop.org/series/96486/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html > > CI Bug Log - changes from CI_DRM_10826 -> IGTPW_6368 > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6368 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6368, please notify your bug team 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_6368/index.html > > Participating hosts (40 -> 32) > > Additional (1): fi-pnv-d510 > Missing (9): fi-kbl-soraka fi-cml-u2 bat-dg1-6 fi-bsw-n3050 fi-hsw-4200u > fi-bsw-cyan bat-adlp-4 fi-elk-e7500 fi-bsw-kefka > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_6368: > > IGT changes > > Possible regressions > > * igt@core_auth@basic-auth: > * fi-kbl-8809g: PASS -> FAIL Not related, I've changed gem_sync only. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6368 that come from known issues: > > IGT changes > > Issues hit > > * igt@gem_exec_suspend@basic-s3: > > * fi-tgl-1115g4: PASS -> FAIL (i915#1888) > * igt@prime_vgem@basic-userptr: > > * fi-pnv-d510: NOTRUN -> SKIP (fdo#109271) +53 similar issues > * igt@runner@aborted: > > * fi-kbl-8809g: NOTRUN -> FAIL (i915#3363 / i915#4312) > > * fi-bdw-5557u: NOTRUN -> FAIL (i915#1602 / i915#2426 / i915#4312) > > Possible fixes > > * igt@gem_exec_suspend@basic-s3: > > * fi-bdw-5557u: INCOMPLETE (i915#146) -> PASS > * igt@i915_selftest@live@gem_contexts: > > * fi-icl-u2: DMESG-WARN -> PASS +1 similar issue > * igt@i915_selftest@live@objects: > > * fi-icl-u2: DMESG-WARN (i915#2867) -> PASS +2 similar issues > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_6266 -> IGTPW_6368 > > CI-20190529: 20190529 > CI_DRM_10826: 8b8fbc1dc64274b9eed192df4bfaeced03bdf0ae @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_6368: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6368/index.html > IGT_6266: fa0291675a7a3ade6c219cc52fceac9a0a4a63d8 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add no-reloc path in gem_sync (rev2) 2021-11-02 8:39 [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync Zbigniew Kempczyński 2021-11-02 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński 2021-11-02 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync Patchwork @ 2021-11-02 13:44 ` Patchwork 2021-11-02 16:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-11-02 13:44 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2868 bytes --] == Series Details == Series: Add no-reloc path in gem_sync (rev2) URL : https://patchwork.freedesktop.org/series/96486/ State : success == Summary == CI Bug Log - changes from CI_DRM_10827 -> IGTPW_6369 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/index.html Participating hosts (39 -> 35) ------------------------------ Missing (4): fi-bsw-cyan bat-adlp-4 bat-dg1-6 fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_6369 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3: - fi-bdw-5557u: [PASS][1] -> [INCOMPLETE][2] ([i915#146]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][3] -> [INCOMPLETE][4] ([i915#3921]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#295]) +12 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][7] ([i915#4269]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6267 -> IGTPW_6369 CI-20190529: 20190529 CI_DRM_10827: e6d8dc4d0d95b13d1575f02beead4517de3ee045 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6369: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/index.html IGT_6267: 5c3b8f7ad9a5cfe1f0e747d92da7910243cf287d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/index.html [-- Attachment #2: Type: text/html, Size: 3548 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add no-reloc path in gem_sync (rev2) 2021-11-02 8:39 [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync Zbigniew Kempczyński ` (2 preceding siblings ...) 2021-11-02 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success for Add no-reloc path in gem_sync (rev2) Patchwork @ 2021-11-02 16:08 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2021-11-02 16:08 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30254 bytes --] == Series Details == Series: Add no-reloc path in gem_sync (rev2) URL : https://patchwork.freedesktop.org/series/96486/ State : success == Summary == CI Bug Log - changes from CI_DRM_10827_full -> IGTPW_6369_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/index.html Participating hosts (10 -> 7) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Known issues ------------ Here are the changes found in IGTPW_6369_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-kbl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][7] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: NOTRUN -> [FAIL][8] ([i915#2842]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][9] -> [FAIL][10] ([i915#2849]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-queues-all: - shard-glk: NOTRUN -> [DMESG-WARN][11] ([i915#118]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk6/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-iclb: NOTRUN -> [SKIP][12] ([i915#4270]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb3/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-tglb: NOTRUN -> [SKIP][13] ([i915#4270]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][14] ([fdo#109312]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglb: NOTRUN -> [SKIP][15] ([i915#3297]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#3297]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@unaligned-access: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#2856]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: NOTRUN -> [FAIL][18] ([i915#454]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1937]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1937]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1937]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk9/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][22] ([i915#1902]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-iclb: NOTRUN -> [SKIP][23] ([fdo#110892]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109506] / [i915#2411]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][25] ([fdo#110725] / [fdo#111614]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#111614]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#3777]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#111615]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#3886]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#3689] / [i915#3886]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3886]) +7 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html - shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3886]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#3689]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][34] ([fdo#109271]) +109 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-snb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html * igt@kms_chamelium@dp-hpd-for-each-pipe: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109284] / [fdo#111827]) +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb5/igt@kms_chamelium@dp-hpd-for-each-pipe.html * igt@kms_chamelium@dp-hpd-storm-disable: - shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271] / [fdo#111827]) +9 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk9/igt@kms_chamelium@dp-hpd-storm-disable.html * igt@kms_chamelium@hdmi-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +5 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl2/igt@kms_chamelium@hdmi-edid-change-during-suspend.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [fdo#111827]) +23 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl4/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_color@pipe-d-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278] / [i915#1149]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb6/igt@kms_color@pipe-d-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-0-75: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +8 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html * igt@kms_color_chamelium@pipe-c-ctm-red-to-blue: - shard-snb: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +7 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-snb5/igt@kms_color_chamelium@pipe-c-ctm-red-to-blue.html * igt@kms_content_protection@content_type_change: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109300] / [fdo#111066]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@lic: - shard-kbl: NOTRUN -> [TIMEOUT][43] ([i915#1319]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent: - shard-kbl: NOTRUN -> [FAIL][44] ([i915#2105]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl2/igt@kms_content_protection@uevent.html - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111828]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb7/igt@kms_content_protection@uevent.html - shard-apl: NOTRUN -> [FAIL][46] ([i915#2105]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278] / [fdo#109279]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3319]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3359]) +5 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-128x128-sliding: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109278]) +13 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb7/igt@kms_cursor_crc@pipe-d-cursor-128x128-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#109278]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#4103]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@pipe-d-single-bo: - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#533]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_cursor_legacy@pipe-d-single-bo.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [PASS][55] -> [INCOMPLETE][56] ([i915#180] / [i915#636]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109274]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb8/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-tglb: [PASS][58] -> [FAIL][59] ([i915#79]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][60] ([i915#180]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-apl: [PASS][61] -> [DMESG-WARN][62] ([i915#180]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-iclb: [PASS][63] -> [SKIP][64] ([i915#3701]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs: - shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2672]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html - shard-iclb: NOTRUN -> [SKIP][67] ([i915#2587]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#2672]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271]) +209 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-tglb: [PASS][70] -> [INCOMPLETE][71] ([i915#2411] / [i915#2828] / [i915#456]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-suspend.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +10 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu: - shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271]) +109 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][74] ([fdo#111825]) +25 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271]) +73 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-tglb: [PASS][76] -> [INCOMPLETE][77] ([i915#456]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb6/igt@kms_frontbuffer_tracking@psr-suspend.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-tglb: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-glk: NOTRUN -> [FAIL][79] ([fdo#108145] / [i915#265]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][80] ([i915#265]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk9/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][81] ([i915#265]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html - shard-kbl: NOTRUN -> [FAIL][82] ([i915#265]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl4/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][83] ([fdo#108145] / [i915#265]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_lowres@pipe-d-tiling-none: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#3536]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-none.html * igt@kms_prime@basic-crc@first-to-second: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#1836]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@kms_prime@basic-crc@first-to-second.html - shard-tglb: NOTRUN -> [SKIP][87] ([i915#1836]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-1: - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2920]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html - shard-iclb: NOTRUN -> [SKIP][90] ([i915#658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#658]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][93] -> [SKIP][94] ([fdo#109441]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb1/igt@kms_psr@psr2_cursor_render.html - shard-tglb: NOTRUN -> [FAIL][95] ([i915#132] / [i915#3467]) +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109441]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][97] ([i915#180] / [i915#295]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][99] ([i915#2530]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb8/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html - shard-iclb: NOTRUN -> [SKIP][100] ([i915#2530]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb4/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html * igt@perf@gen12-unprivileged-single-ctx-counters: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#109289]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb6/igt@perf@gen12-unprivileged-single-ctx-counters.html * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109291]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb6/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html - shard-tglb: NOTRUN -> [SKIP][103] ([fdo#109291]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb6/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html * igt@prime_vgem@basic-userptr: - shard-tglb: NOTRUN -> [SKIP][104] ([i915#3301]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb1/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@coherency-gtt: - shard-tglb: NOTRUN -> [SKIP][105] ([fdo#111656]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@prime_vgem@coherency-gtt.html * igt@sysfs_clients@create: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#2994]) +2 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk8/igt@sysfs_clients@create.html - shard-tglb: NOTRUN -> [SKIP][107] ([i915#2994]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb5/igt@sysfs_clients@create.html - shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2994]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl3/igt@sysfs_clients@create.html - shard-iclb: NOTRUN -> [SKIP][109] ([i915#2994]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb8/igt@sysfs_clients@create.html * igt@sysfs_clients@fair-3: - shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#2994]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@sysfs_clients@fair-3.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-kbl: [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_eio@in-flight-contexts-1us: - shard-tglb: [TIMEOUT][113] ([i915#3063]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb6/igt@gem_eio@in-flight-contexts-1us.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb8/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: [FAIL][115] ([i915#2846]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-kbl1/igt@gem_exec_fair@basic-deadline.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-kbl7/igt@gem_exec_fair@basic-deadline.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][117] ([i915#2190]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb7/igt@gem_huc_copy@huc-copy.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][119] ([i915#454]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb6/igt@i915_pm_dc@dc6-psr.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][121] ([fdo#109271]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-apl8/igt@i915_pm_dc@dc9-dpms.html * igt@kms_flip@flip-vs-suspend@a-edp1: - shard-tglb: [INCOMPLETE][123] ([i915#2411] / [i915#456]) -> [PASS][124] +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb7/igt@kms_flip@flip-vs-suspend@a-edp1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb2/igt@kms_flip@flip-vs-suspend@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-iclb: [SKIP][125] ([i915#3701]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-glk: [DMESG-WARN][127] ([i915#118]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-glk3/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-glk8/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][129] ([fdo#109441]) -> [PASS][130] +3 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: [INCOMPLETE][131] ([i915#3896]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-tglb3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-iclb: [FAIL][133] ([i915#1755]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-iclb8/igt@sysfs_timeslice_duration@timeout@vecs0.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/shard-iclb1/igt@sysfs_timeslice_duration@timeout@vecs0.html - shard-apl: [FAIL][135] ([i915#1755]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10827/shard-apl7/igt@sysfs_timeslice_duration@timeout@vecs0.html [136]: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6369/index.html [-- Attachment #2: Type: text/html, Size: 33783 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-11-03 7:51 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-11-02 8:39 [igt-dev] [PATCH i-g-t 0/1] Add no-reloc path in gem_sync Zbigniew Kempczyński 2021-11-02 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński 2021-11-02 19:40 ` Dixit, Ashutosh 2021-11-03 7:51 ` Zbigniew Kempczyński 2021-11-02 9:22 ` [igt-dev] ✗ Fi.CI.BAT: failure for Add no-reloc path in gem_sync Patchwork 2021-11-02 9:51 ` Zbigniew Kempczyński 2021-11-02 16:00 ` Vudum, Lakshminarayana 2021-11-02 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success for Add no-reloc path in gem_sync (rev2) Patchwork 2021-11-02 16:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox