* [igt-dev] [PATCH i-g-t 0/1] Fix for gem_spin_batch
@ 2022-02-14 17:22 Jasmine Newsome
2022-02-14 17:22 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence Jasmine Newsome
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jasmine Newsome @ 2022-02-14 17:22 UTC (permalink / raw)
To: igt-dev; +Cc: jasmine.newsome
Adding a fix to remove context persistence from
gem_spin_batch in order to pass test on GuC enabled
platforms.
Signed-off-by: Jasmine Newsome <jasmine.newsome@intel.com>
Jasmine Newsome (1):
tests/i915/gem_spin_batch: Removing context persistence
tests/i915/gem_spin_batch.c | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence 2022-02-14 17:22 [igt-dev] [PATCH i-g-t 0/1] Fix for gem_spin_batch Jasmine Newsome @ 2022-02-14 17:22 ` Jasmine Newsome 2022-02-15 22:58 ` Dixit, Ashutosh 2022-02-15 17:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix for gem_spin_batch Patchwork 2022-02-15 20:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Jasmine Newsome @ 2022-02-14 17:22 UTC (permalink / raw) To: igt-dev; +Cc: jasmine.newsome The spin all test relied on context persistence unecessarily by trying to destroy contexts while keeping spinners active. The current implementation of context persistence in i915 can cause failures, and persistence is not needed for this test. Moving intel_ctx_destroy after igt_spin_end/free. Signed-off-by: Jasmine Newsome <jasmine.newsome@intel.com> --- tests/i915/gem_spin_batch.c | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/tests/i915/gem_spin_batch.c b/tests/i915/gem_spin_batch.c index 653812c7..65dccd83 100644 --- a/tests/i915/gem_spin_batch.c +++ b/tests/i915/gem_spin_batch.c @@ -145,28 +145,31 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) struct igt_spin *spin, *n; uint64_t ahnd; IGT_LIST_HEAD(list); + const intel_ctx_t *local_ctx[GEM_MAX_ENGINES]; + int num_ctx; - for_each_ctx_cfg_engine(i915, &cfg, e) { + num_ctx = 0; + for_each_ctx_cfg_engine(i915, &cfg, e) { if (!gem_class_can_store_dword(i915, e->class)) continue; if (flags & PARALLEL_SPIN_NEW_CTX) - ctx = intel_ctx_create(i915, &cfg); + local_ctx[num_ctx] = intel_ctx_create(i915, &cfg); ahnd = get_reloc_ahnd(i915, ctx->id); /* Prevent preemption so only one is allowed on each engine */ spin = igt_spin_new(i915, .ahnd = ahnd, - .ctx = ctx, + .ctx = local_ctx[num_ctx], .engine = e->flags, .flags = (IGT_SPIN_POLL_RUN | IGT_SPIN_NO_PREEMPTION)); - if (flags & PARALLEL_SPIN_NEW_CTX) - intel_ctx_destroy(i915, ctx); - igt_spin_busywait_until_started(spin); - igt_list_move(&spin->link, &list); - } + igt_assert_eq(spin->execbuf.rsvd1, local_ctx[num_ctx]->id); + igt_spin_busywait_until_started(spin); + igt_list_move(&spin->link, &list); + num_ctx++; + } igt_list_for_each_entry_safe(spin, n, &list, link) { igt_assert(gem_bo_busy(i915, spin->handle)); @@ -176,6 +179,11 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) igt_spin_free(i915, spin); put_ahnd(ahnd); } + + if (flags & PARALLEL_SPIN_NEW_CTX){ + while (num_ctx) + intel_ctx_destroy(i915, local_ctx[--num_ctx]); + } } static bool has_userptr(int fd) -- 2.25.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence 2022-02-14 17:22 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence Jasmine Newsome @ 2022-02-15 22:58 ` Dixit, Ashutosh 0 siblings, 0 replies; 5+ messages in thread From: Dixit, Ashutosh @ 2022-02-15 22:58 UTC (permalink / raw) To: Jasmine Newsome; +Cc: igt-dev On Mon, 14 Feb 2022 09:22:08 -0800, Jasmine Newsome wrote: > > The spin all test relied on context persistence unecessarily > by trying to destroy contexts while keeping spinners active. > The current implementation of context persistence in i915 > can cause failures, and persistence is not needed for this > test. IGT follows the kernel coding style so 8 wide tabs and no spaces, you can run kernel checkpatch to check IGT patches "for the most part" (ignoring kernel specific issues). > Moving intel_ctx_destroy after igt_spin_end/free. > > Signed-off-by: Jasmine Newsome <jasmine.newsome@intel.com> > --- > tests/i915/gem_spin_batch.c | 24 ++++++++++++++++-------- > 1 file changed, 16 insertions(+), 8 deletions(-) > > diff --git a/tests/i915/gem_spin_batch.c b/tests/i915/gem_spin_batch.c > index 653812c7..65dccd83 100644 > --- a/tests/i915/gem_spin_batch.c > +++ b/tests/i915/gem_spin_batch.c > @@ -145,28 +145,31 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) > struct igt_spin *spin, *n; > uint64_t ahnd; > IGT_LIST_HEAD(list); > + const intel_ctx_t *local_ctx[GEM_MAX_ENGINES]; > + int num_ctx; > > - for_each_ctx_cfg_engine(i915, &cfg, e) { > + num_ctx = 0; > + for_each_ctx_cfg_engine(i915, &cfg, e) { > if (!gem_class_can_store_dword(i915, e->class)) > continue; > > if (flags & PARALLEL_SPIN_NEW_CTX) > - ctx = intel_ctx_create(i915, &cfg); > + local_ctx[num_ctx] = intel_ctx_create(i915, &cfg); > ahnd = get_reloc_ahnd(i915, ctx->id); > > /* Prevent preemption so only one is allowed on each engine */ > spin = igt_spin_new(i915, > .ahnd = ahnd, > - .ctx = ctx, > + .ctx = local_ctx[num_ctx], This is not initialized if !PARALLEL_SPIN_NEW_CTX. I would say local_ctx[] array is not needed. We could do something like: igt_spin_new(.ctx = flags & PARALLEL_SPIN_NEW_CTX ? intel_ctx_create() : ctx); And then use intel_ctx_destroy(spin->execbuf.rsvd1) before freeing the spin in the igt_list_for_each_entry_safe() loop below. > .engine = e->flags, > .flags = (IGT_SPIN_POLL_RUN | > IGT_SPIN_NO_PREEMPTION)); > - if (flags & PARALLEL_SPIN_NEW_CTX) > - intel_ctx_destroy(i915, ctx); > > - igt_spin_busywait_until_started(spin); > - igt_list_move(&spin->link, &list); > - } > + igt_assert_eq(spin->execbuf.rsvd1, local_ctx[num_ctx]->id); > + igt_spin_busywait_until_started(spin); > + igt_list_move(&spin->link, &list); > + num_ctx++; > + } > > igt_list_for_each_entry_safe(spin, n, &list, link) { > igt_assert(gem_bo_busy(i915, spin->handle)); > @@ -176,6 +179,11 @@ static void spin_all(int i915, const intel_ctx_t *ctx, unsigned int flags) > igt_spin_free(i915, spin); > put_ahnd(ahnd); > } > + > + if (flags & PARALLEL_SPIN_NEW_CTX){ > + while (num_ctx) > + intel_ctx_destroy(i915, local_ctx[--num_ctx]); > + } > } > > static bool has_userptr(int fd) > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Fix for gem_spin_batch 2022-02-14 17:22 [igt-dev] [PATCH i-g-t 0/1] Fix for gem_spin_batch Jasmine Newsome 2022-02-14 17:22 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence Jasmine Newsome @ 2022-02-15 17:18 ` Patchwork 2022-02-15 20:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-02-15 17:18 UTC (permalink / raw) To: Jasmine Newsome; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4098 bytes --] == Series Details == Series: Fix for gem_spin_batch URL : https://patchwork.freedesktop.org/series/100161/ State : success == Summary == CI Bug Log - changes from IGT_6345 -> IGTPW_6622 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/index.html Participating hosts (47 -> 46) ------------------------------ Missing (1): fi-bsw-cyan Known issues ------------ Here are the changes found in IGTPW_6622 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@semaphore: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271] / [fdo#109315]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-hsw-4770/igt@amdgpu/amd_basic@semaphore.html * igt@gem_exec_suspend@basic-s3@smem: - fi-bdw-5557u: [PASS][2] -> [INCOMPLETE][3] ([i915#146]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][4] -> [INCOMPLETE][5] ([i915#3921]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-snb-2600/igt@i915_selftest@live@hangcheck.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][6] ([i915#4785]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@workarounds: - {bat-adlp-6}: [DMESG-WARN][8] ([i915#5068]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/bat-adlp-6/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/bat-adlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][10] ([i915#4269]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc-pipe-b: - fi-cfl-8109u: [DMESG-WARN][12] ([i915#295]) -> [PASS][13] +11 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#5068]: https://gitlab.freedesktop.org/drm/intel/issues/5068 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6345 -> IGTPW_6622 CI-20190529: 20190529 CI_DRM_11228: edf25884076190dda9286ede129ab4eb8f90a167 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6622: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/index.html IGT_6345: ee18c0497ec2c74007e299c3fdd26f1613b9f514 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/index.html [-- Attachment #2: Type: text/html, Size: 4871 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Fix for gem_spin_batch 2022-02-14 17:22 [igt-dev] [PATCH i-g-t 0/1] Fix for gem_spin_batch Jasmine Newsome 2022-02-14 17:22 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence Jasmine Newsome 2022-02-15 17:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix for gem_spin_batch Patchwork @ 2022-02-15 20:22 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-02-15 20:22 UTC (permalink / raw) To: Jasmine Newsome; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30241 bytes --] == Series Details == Series: Fix for gem_spin_batch URL : https://patchwork.freedesktop.org/series/100161/ State : failure == Summary == CI Bug Log - changes from IGT_6345_full -> IGTPW_6622_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6622_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6622_full, 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_6622/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_6622_full: ### IGT changes ### #### Possible regressions #### * igt@gem_spin_batch@spin-all: - shard-apl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-apl4/igt@gem_spin_batch@spin-all.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl1/igt@gem_spin_batch@spin-all.html - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-glk7/igt@gem_spin_batch@spin-all.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk7/igt@gem_spin_batch@spin-all.html - shard-iclb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb7/igt@gem_spin_batch@spin-all.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb3/igt@gem_spin_batch@spin-all.html - shard-snb: [PASS][7] -> [CRASH][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-snb7/igt@gem_spin_batch@spin-all.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-snb7/igt@gem_spin_batch@spin-all.html - shard-tglb: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-tglb2/igt@gem_spin_batch@spin-all.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@gem_spin_batch@spin-all.html * igt@i915_selftest@live@requests: - shard-tglb: [PASS][11] -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-tglb1/igt@i915_selftest@live@requests.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@i915_selftest@live@requests.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_spin_batch@spin-all: - {shard-tglu}: NOTRUN -> [CRASH][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglu-4/igt@gem_spin_batch@spin-all.html * igt@i915_selftest@mock@hugepages: - {shard-tglu}: NOTRUN -> [INCOMPLETE][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglu-1/igt@i915_selftest@mock@hugepages.html Known issues ------------ Here are the changes found in IGTPW_6622_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-3x: - shard-tglb: NOTRUN -> [SKIP][15] ([i915#1839]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb8/igt@feature_discovery@display-3x.html * igt@gem_create@create-massive: - shard-apl: NOTRUN -> [DMESG-WARN][16] ([i915#4991]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@gem_create@create-massive.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#280]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@unwedge-stress: - shard-iclb: [PASS][18] -> [TIMEOUT][19] ([i915#2481] / [i915#3070]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb1/igt@gem_eio@unwedge-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: NOTRUN -> [DMESG-FAIL][20] ([i915#5076]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb4/igt@gem_exec_balancer@parallel-ordering.html - shard-tglb: NOTRUN -> [DMESG-FAIL][21] ([i915#5076]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@pi@bcs0: - shard-iclb: [PASS][22] -> [INCOMPLETE][23] ([i915#3371]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb3/igt@gem_exec_capture@pi@bcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb7/igt@gem_exec_capture@pi@bcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb5/igt@gem_exec_fair@basic-none-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: NOTRUN -> [FAIL][26] ([i915#2842]) +4 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][27] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html - shard-kbl: NOTRUN -> [FAIL][28] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl3/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][29] -> [FAIL][30] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109283]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@gem_exec_params@no-blt.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][34] -> [SKIP][35] ([i915#2190]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-tglb8/igt@gem_huc_copy@huc-copy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk5/igt@gem_lmem_swapping@parallel-random-engines.html - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#4613]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl4/igt@gem_lmem_swapping@parallel-random-engines.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#4613]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-kbl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#4613]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl7/igt@gem_lmem_swapping@parallel-random-verify.html - shard-iclb: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#4270]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][42] ([i915#768]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][43] ([i915#4990]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb3/igt@gem_userptr_blits@input-checking.html - shard-apl: NOTRUN -> [DMESG-WARN][44] ([i915#4990]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl3/igt@gem_userptr_blits@input-checking.html - shard-glk: NOTRUN -> [DMESG-WARN][45] ([i915#4990]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk6/igt@gem_userptr_blits@input-checking.html - shard-iclb: NOTRUN -> [DMESG-WARN][46] ([i915#4990]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb1/igt@gem_userptr_blits@input-checking.html - shard-kbl: NOTRUN -> [DMESG-WARN][47] ([i915#4990]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl4/igt@gem_userptr_blits@input-checking.html - shard-snb: NOTRUN -> [DMESG-WARN][48] ([i915#4990]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-snb4/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3297]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-chained: - shard-iclb: NOTRUN -> [SKIP][50] ([i915#2856]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb3/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@shadow-peek: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#2527] / [i915#2856]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_dc@dc9-dpms: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#4281]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271]) +120 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109293] / [fdo#109506]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109506] / [i915#2411]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@i915_pm_rpm@pc8-residency.html * igt@i915_suspend@sysfs-reader: - shard-kbl: NOTRUN -> [DMESG-WARN][56] ([i915#180]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl1/igt@i915_suspend@sysfs-reader.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#404]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3777]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3777]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#111614]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#110723]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglb: NOTRUN -> [SKIP][62] ([fdo#111615]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#3689] / [i915#3886]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3886]) +7 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][67] ([fdo#109271]) +94 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-snb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html - shard-tglb: NOTRUN -> [SKIP][68] ([i915#3689]) +6 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#3886]) +11 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl7/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][70] ([fdo#109271]) +153 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl3/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_chamelium@hdmi-audio-edid: - shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +12 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl4/igt@kms_chamelium@hdmi-audio-edid.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +6 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_chamelium@vga-hpd.html * igt@kms_color_chamelium@pipe-b-ctm-0-5: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109284] / [fdo#111827]) +8 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb6/igt@kms_color_chamelium@pipe-b-ctm-0-5.html * igt@kms_color_chamelium@pipe-c-gamma: - shard-snb: NOTRUN -> [SKIP][74] ([fdo#109271] / [fdo#111827]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-snb6/igt@kms_color_chamelium@pipe-c-gamma.html * igt@kms_color_chamelium@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-negative.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-iclb: NOTRUN -> [SKIP][76] ([i915#3116]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#3116] / [i915#3299]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm: - shard-tglb: NOTRUN -> [SKIP][78] ([i915#1063]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb3/igt@kms_content_protection@srm.html - shard-kbl: NOTRUN -> [TIMEOUT][79] ([i915#1319]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl3/igt@kms_content_protection@srm.html - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109300] / [fdo#111066]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@kms_content_protection@srm.html - shard-apl: NOTRUN -> [TIMEOUT][81] ([i915#1319]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-kbl: NOTRUN -> [FAIL][82] ([i915#2105]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl6/igt@kms_content_protection@uevent.html - shard-apl: NOTRUN -> [FAIL][83] ([i915#2105]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#109279] / [i915#3359]) +5 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-random: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#3319]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-random.html * igt@kms_cursor_crc@pipe-c-cursor-512x512-offscreen: - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109278] / [fdo#109279]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@kms_cursor_crc@pipe-c-cursor-512x512-offscreen.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#3359]) +5 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109274] / [fdo#109278]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#533]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl4/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-iclb: NOTRUN -> [SKIP][90] ([i915#426]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern.html - shard-tglb: NOTRUN -> [SKIP][91] ([i915#426]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][92] -> [INCOMPLETE][93] ([i915#180] / [i915#1982]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglb: NOTRUN -> [SKIP][94] ([fdo#109274] / [fdo#111825] / [i915#3966]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglb: NOTRUN -> [SKIP][95] ([fdo#109274] / [fdo#111825]) +6 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109274]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [PASS][97] -> [FAIL][98] ([i915#79]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-apl: [PASS][99] -> [DMESG-WARN][100] ([i915#180]) +3 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-iclb: [PASS][101] -> [SKIP][102] ([i915#3701]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-glk: [PASS][103] -> [FAIL][104] ([i915#4911]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][105] ([fdo#109280] / [fdo#111825]) +25 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][106] ([fdo#109280]) +9 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-glk: NOTRUN -> [SKIP][107] ([fdo#109271]) +26 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][108] -> [DMESG-WARN][109] ([i915#180]) +4 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-kbl4/igt@kms_hdr@bpc-switch-suspend.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-tglb: NOTRUN -> [SKIP][110] ([fdo#109289]) +4 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-kbl: NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#533]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl6/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][112] ([fdo#108145] / [i915#265]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-glk: NOTRUN -> [FAIL][113] ([fdo#108145] / [i915#265]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk1/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html - shard-kbl: NOTRUN -> [FAIL][114] ([fdo#108145] / [i915#265]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][115] ([i915#265]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_cursor@pipe-d-primary-size-64: - shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109278]) +10 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb3/igt@kms_plane_cursor@pipe-d-primary-size-64.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-apl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2733]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl2/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html - shard-kbl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2733]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl7/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html - shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2733]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk6/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglb: NOTRUN -> [SKIP][121] ([i915#1911]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-kbl: NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#658]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-glk: NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#658]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk9/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][124] ([fdo#109642] / [fdo#111068] / [i915#658]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-tglb: NOTRUN -> [FAIL][125] ([i915#132] / [i915#3467]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb3/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][126] -> [SKIP][127] ([fdo#109441]) +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_setmode@basic: - shard-glk: [PASS][128] -> [FAIL][129] ([i915#31]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-glk8/igt@kms_setmode@basic.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-glk8/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-b-accuracy-idle: - shard-snb: [PASS][130] -> [SKIP][131] ([fdo#109271]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6345/shard-snb6/igt@kms_vblank@pipe-b-accuracy-idle.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-snb7/igt@kms_vblank@pipe-b-accuracy-idle.html * igt@kms_vrr@flip-basic: - shard-iclb: NOTRUN -> [SKIP][132] ([fdo#109502]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb6/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-iclb: NOTRUN -> [SKIP][133] ([i915#2437]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-iclb1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglb: NOTRUN -> [SKIP][134] ([i915#2437]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-tglb5/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-kbl: NOTRUN -> [SKIP][135] ([fdo#109271] / [i915#2437]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pip == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6622/index.html [-- Attachment #2: Type: text/html, Size: 33733 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-02-15 22:58 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-14 17:22 [igt-dev] [PATCH i-g-t 0/1] Fix for gem_spin_batch Jasmine Newsome 2022-02-14 17:22 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/gem_spin_batch: Removing context persistence Jasmine Newsome 2022-02-15 22:58 ` Dixit, Ashutosh 2022-02-15 17:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix for gem_spin_batch Patchwork 2022-02-15 20:22 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox