* [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while
@ 2022-02-15 16:32 Andy Shevchenko
2022-02-15 17:14 ` Jani Nikula
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Andy Shevchenko @ 2022-02-15 16:32 UTC (permalink / raw)
To: Andy Shevchenko, intel-gfx, dri-devel, linux-kernel
Cc: Thomas Zimmermann, David Airlie, Geert Uytterhoeven
It's hard to parse for-loop which has some magic calculations inside.
Much cleaner to use while-loop directly.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpu/drm/i915/selftests/i915_syncmap.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/selftests/i915_syncmap.c b/drivers/gpu/drm/i915/selftests/i915_syncmap.c
index 47f4ae18a1ef..26981d1c3025 100644
--- a/drivers/gpu/drm/i915/selftests/i915_syncmap.c
+++ b/drivers/gpu/drm/i915/selftests/i915_syncmap.c
@@ -36,10 +36,10 @@ __sync_print(struct i915_syncmap *p,
unsigned int i, X;
if (depth) {
- unsigned int d;
+ unsigned int d = depth;
- for (d = 0; d < depth - 1; d++) {
- if (last & BIT(depth - d - 1))
+ while (d--) {
+ if (last & BIT(d))
len = scnprintf(buf, *sz, "| ");
else
len = scnprintf(buf, *sz, " ");
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-15 16:32 [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while Andy Shevchenko @ 2022-02-15 17:14 ` Jani Nikula 2022-02-15 18:58 ` Andy Shevchenko 2022-02-16 23:28 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v1,1/1] " Patchwork 2022-02-17 7:56 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 7+ messages in thread From: Jani Nikula @ 2022-02-15 17:14 UTC (permalink / raw) To: Andy Shevchenko, Andy Shevchenko, intel-gfx, dri-devel, linux-kernel Cc: David Airlie, Geert Uytterhoeven, Thomas Zimmermann On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > It's hard to parse for-loop which has some magic calculations inside. > Much cleaner to use while-loop directly. I assume you're trying to prove a point following our recent for-vs-while loop discussion. I really can't think of any other reason you'd end up looking at this file or this loop. With the change, the loop indeed becomes simpler, but it also runs one iteration further than the original. Whoops. It's a selftest. The loop's been there for five years. What are we trying to achieve here? So we disagree on loops, fine. Perhaps this is not the best use of either of our time? Please just let the for loops in i915 be. BR, Jani. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > --- > drivers/gpu/drm/i915/selftests/i915_syncmap.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/selftests/i915_syncmap.c b/drivers/gpu/drm/i915/selftests/i915_syncmap.c > index 47f4ae18a1ef..26981d1c3025 100644 > --- a/drivers/gpu/drm/i915/selftests/i915_syncmap.c > +++ b/drivers/gpu/drm/i915/selftests/i915_syncmap.c > @@ -36,10 +36,10 @@ __sync_print(struct i915_syncmap *p, > unsigned int i, X; > > if (depth) { > - unsigned int d; > + unsigned int d = depth; > > - for (d = 0; d < depth - 1; d++) { > - if (last & BIT(depth - d - 1)) > + while (d--) { > + if (last & BIT(d)) > len = scnprintf(buf, *sz, "| "); > else > len = scnprintf(buf, *sz, " "); -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-15 17:14 ` Jani Nikula @ 2022-02-15 18:58 ` Andy Shevchenko 2022-02-16 8:55 ` Jani Nikula 0 siblings, 1 reply; 7+ messages in thread From: Andy Shevchenko @ 2022-02-15 18:58 UTC (permalink / raw) To: Jani Nikula Cc: Thomas Zimmermann, David Airlie, intel-gfx, linux-kernel, dri-devel, Geert Uytterhoeven On Tue, Feb 15, 2022 at 07:14:49PM +0200, Jani Nikula wrote: > On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > It's hard to parse for-loop which has some magic calculations inside. > > Much cleaner to use while-loop directly. > > I assume you're trying to prove a point following our recent > for-vs-while loop discussion. I really can't think of any other reason > you'd end up looking at this file or this loop. > > With the change, the loop indeed becomes simpler, but it also runs one > iteration further than the original. Whoops. Yeah, sorry for that, the initial condition should be d = depth - 1, of course. > It's a selftest. The loop's been there for five years. What are we > trying to achieve here? So we disagree on loops, fine. Perhaps this is > not the best use of either of our time? Please just let the for loops in > i915 be. Yes, I'm pretty much was sure that no-one will go and apply this anyway (so I haven't paid too much attention), but to prove my point in the certain discussion. And yes, the point is for the new code, I'm not going to change existing suboptimal and too hard to read for-loops, it will consume my time later when I will try to understand the code. -- With Best Regards, Andy Shevchenko ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-15 18:58 ` Andy Shevchenko @ 2022-02-16 8:55 ` Jani Nikula 2022-02-16 9:02 ` Geert Uytterhoeven 0 siblings, 1 reply; 7+ messages in thread From: Jani Nikula @ 2022-02-16 8:55 UTC (permalink / raw) To: Andy Shevchenko Cc: Thomas Zimmermann, David Airlie, intel-gfx, linux-kernel, dri-devel, Geert Uytterhoeven On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > On Tue, Feb 15, 2022 at 07:14:49PM +0200, Jani Nikula wrote: >> On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: >> > It's hard to parse for-loop which has some magic calculations inside. >> > Much cleaner to use while-loop directly. >> >> I assume you're trying to prove a point following our recent >> for-vs-while loop discussion. I really can't think of any other reason >> you'd end up looking at this file or this loop. >> >> With the change, the loop indeed becomes simpler, but it also runs one >> iteration further than the original. Whoops. > > Yeah, sorry for that, the initial condition should be d = depth - 1, > of course. Well, no, the condition should be while (--i) instead to also match the values the original loop takes. ;D Cheers, Jani. > >> It's a selftest. The loop's been there for five years. What are we >> trying to achieve here? So we disagree on loops, fine. Perhaps this is >> not the best use of either of our time? Please just let the for loops in >> i915 be. > > Yes, I'm pretty much was sure that no-one will go and apply this anyway > (so I haven't paid too much attention), but to prove my point in the > certain discussion. > > And yes, the point is for the new code, I'm not going to change existing > suboptimal and too hard to read for-loops, it will consume my time later > when I will try to understand the code. -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-16 8:55 ` Jani Nikula @ 2022-02-16 9:02 ` Geert Uytterhoeven 0 siblings, 0 replies; 7+ messages in thread From: Geert Uytterhoeven @ 2022-02-16 9:02 UTC (permalink / raw) To: Jani Nikula Cc: Thomas Zimmermann, David Airlie, Intel Graphics Development, Linux Kernel Mailing List, DRI Development, Andy Shevchenko On Wed, Feb 16, 2022 at 9:55 AM Jani Nikula <jani.nikula@linux.intel.com> wrote: > On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > On Tue, Feb 15, 2022 at 07:14:49PM +0200, Jani Nikula wrote: > >> On Tue, 15 Feb 2022, Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > >> > It's hard to parse for-loop which has some magic calculations inside. > >> > Much cleaner to use while-loop directly. > >> > >> I assume you're trying to prove a point following our recent > >> for-vs-while loop discussion. I really can't think of any other reason > >> you'd end up looking at this file or this loop. > >> > >> With the change, the loop indeed becomes simpler, but it also runs one > >> iteration further than the original. Whoops. > > > > Yeah, sorry for that, the initial condition should be d = depth - 1, > > of course. > > Well, no, the condition should be while (--i) instead to also match the > values the original loop takes. ;D "There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors." Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v1,1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-15 16:32 [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while Andy Shevchenko 2022-02-15 17:14 ` Jani Nikula @ 2022-02-16 23:28 ` Patchwork 2022-02-17 7:56 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-02-16 23:28 UTC (permalink / raw) To: Andy Shevchenko; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5021 bytes --] == Series Details == Series: series starting with [v1,1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while URL : https://patchwork.freedesktop.org/series/100189/ State : success == Summary == CI Bug Log - changes from CI_DRM_11238 -> Patchwork_22285 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/index.html Participating hosts (46 -> 43) ------------------------------ Missing (3): fi-bsw-cyan shard-tglu bat-jsl-1 Known issues ------------ Here are the changes found in Patchwork_22285 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_prime@amd-to-i915: - fi-ivb-3770: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-ivb-3770/igt@amdgpu/amd_prime@amd-to-i915.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/CI_DRM_11238/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_flink_basic@bad-flink: - fi-skl-6600u: NOTRUN -> [INCOMPLETE][4] ([i915#4547]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][5] -> [INCOMPLETE][6] ([i915#3921]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [PASS][7] -> [DMESG-WARN][8] ([i915#4269]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@i915_selftest@live@gem_contexts: - {fi-tgl-dsi}: [DMESG-WARN][9] ([i915#2867]) -> [PASS][10] +16 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-tgl-dsi/igt@i915_selftest@live@gem_contexts.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-tgl-dsi/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][11] ([i915#4957]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/bat-dg1-6/igt@i915_selftest@live@hangcheck.html - fi-ivb-3770: [INCOMPLETE][13] ([i915#3303]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@runner@aborted: - fi-skl-6600u: [FAIL][15] ([i915#4312]) -> [FAIL][16] ([i915#2722] / [i915#4312]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-skl-6600u/igt@runner@aborted.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/fi-skl-6600u/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 Build changes ------------- * Linux: CI_DRM_11238 -> Patchwork_22285 CI-20190529: 20190529 CI_DRM_11238: e141e36b2871c529379f7ec7d5d6ebae3137a51b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6347: 37ea4c86f97c0e05fcb6b04cff72ec927930536e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_22285: a857a5cf7f5524d1d76d66b097f7f62726b5a145 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == a857a5cf7f55 drm/i915/selftests: Replace too verbose for-loop with simpler while == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/index.html [-- Attachment #2: Type: text/html, Size: 5909 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v1,1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while 2022-02-15 16:32 [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while Andy Shevchenko 2022-02-15 17:14 ` Jani Nikula 2022-02-16 23:28 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v1,1/1] " Patchwork @ 2022-02-17 7:56 ` Patchwork 2 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-02-17 7:56 UTC (permalink / raw) To: Andy Shevchenko; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30321 bytes --] == Series Details == Series: series starting with [v1,1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while URL : https://patchwork.freedesktop.org/series/100189/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11238_full -> Patchwork_22285_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_22285_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_22285_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_22285_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk2/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_vblank@pipe-a-ts-continuation-modeset-hang: - shard-glk: [PASS][3] -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk9/igt@kms_vblank@pipe-a-ts-continuation-modeset-hang.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk8/igt@kms_vblank@pipe-a-ts-continuation-modeset-hang.html Known issues ------------ Here are the changes found in Patchwork_22285_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#4991]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@many-contexts: - shard-tglb: [PASS][6] -> [FAIL][7] ([i915#2410]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb3/igt@gem_ctx_persistence@many-contexts.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_capture@pi@vecs0: - shard-skl: NOTRUN -> [INCOMPLETE][8] ([i915#4547]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl7/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-kbl: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl3/igt@gem_exec_fair@basic-none-vip@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2849]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-kbl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-skl: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-iclb: NOTRUN -> [SKIP][17] ([i915#4613]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][18] ([i915#2658]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#768]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#3297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-fd: - shard-skl: NOTRUN -> [INCOMPLETE][21] ([i915#5129]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@chained-batch: - shard-iclb: NOTRUN -> [SKIP][22] ([fdo#109289]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@gen7_exec_parse@chained-batch.html * igt@i915_pm_backlight@fade_with_suspend: - shard-skl: [PASS][23] -> [INCOMPLETE][24] ([i915#4939]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl2/igt@i915_pm_backlight@fade_with_suspend.html * igt@i915_pm_dc@dc6-dpms: - shard-skl: NOTRUN -> [FAIL][25] ([i915#454]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl1/igt@i915_pm_dc@dc6-dpms.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][26] -> [INCOMPLETE][27] ([i915#3921]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-snb4/igt@i915_selftest@live@hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-snb7/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@forcewake: - shard-kbl: [PASS][28] -> [INCOMPLETE][29] ([i915#636]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl6/igt@i915_suspend@forcewake.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl4/igt@i915_suspend@forcewake.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#110725] / [fdo#111614]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: [PASS][31] -> [DMESG-WARN][32] ([i915#118]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3777]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][34] ([i915#3743]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#111615]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#110723]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271]) +6 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-skl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3777]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk9/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#3886]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb4/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-skl: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +11 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl9/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@dp-hpd-enable-disable-mode: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_chamelium@dp-hpd-enable-disable-mode.html * igt@kms_chamelium@hdmi-cmp-planar-formats: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl3/igt@kms_chamelium@hdmi-cmp-planar-formats.html * igt@kms_color@pipe-d-ctm-blue-to-red: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#1149]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_color@pipe-d-ctm-blue-to-red.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3359]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen.html * igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278]) +6 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109274] / [fdo#109278]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-skl: [PASS][50] -> [FAIL][51] ([i915#2346]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@pipe-d-torture-move: - shard-skl: NOTRUN -> [SKIP][52] ([fdo#109271]) +180 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl1/igt@kms_cursor_legacy@pipe-d-torture-move.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109274]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][54] -> [DMESG-WARN][55] ([i915#180]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-skl: [PASS][56] -> [FAIL][57] ([i915#2122]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl1/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl2/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-iclb: [PASS][58] -> [SKIP][59] ([i915#3701]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-skl: NOTRUN -> [INCOMPLETE][60] ([i915#3701]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [PASS][61] -> [DMESG-WARN][62] ([i915#180]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) +4 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271]) +21 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@static-toggle-dpms: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#1187]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - shard-skl: NOTRUN -> [INCOMPLETE][67] ([i915#4939]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][68] ([fdo#108145] / [i915#265]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl3/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-skl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl9/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-kbl: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][71] -> [SKIP][72] ([fdo#109441]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb7/igt@kms_psr@psr2_cursor_render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [PASS][74] -> [FAIL][75] ([i915#43]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk2/igt@kms_vblank@pipe-a-accuracy-idle.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk1/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_writeback@writeback-fb-id: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2437]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@kms_writeback@writeback-fb-id.html * igt@prime_nv_test@nv_write_i915_gtt_mmap_read: - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109291]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@prime_nv_test@nv_write_i915_gtt_mmap_read.html * igt@sysfs_clients@recycle-many: - shard-skl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2994]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl9/igt@sysfs_clients@recycle-many.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-iclb: [TIMEOUT][79] ([i915#2481] / [i915#3070]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb4/igt@gem_eio@unwedge-stress.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb4/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@individual: - {shard-dg1}: [FAIL][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-dg1-12/igt@gem_exec_balancer@individual.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-dg1-12/igt@gem_exec_balancer@individual.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][83] ([i915#2842]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_whisper@basic-normal: - shard-glk: [DMESG-WARN][85] ([i915#118]) -> [PASS][86] +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk7/igt@gem_exec_whisper@basic-normal.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk9/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][87] ([i915#2190]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb7/igt@gem_huc_copy@huc-copy.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][89] ([i915#1436] / [i915#716]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk5/igt@gen9_exec_parse@allowed-all.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk9/igt@gen9_exec_parse@allowed-all.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][91] ([i915#180]) -> [PASS][92] +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@linear-16bpp-rotate-180: - {shard-tglu}: [DMESG-WARN][93] ([i915#402]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-180.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-tglu-1/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: [FAIL][95] ([i915#2346]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [FAIL][97] ([i915#79]) -> [PASS][98] +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-skl: [FAIL][101] ([i915#2122]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl7/igt@kms_flip@plain-flip-ts-check@c-edp1.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl10/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-skl: [INCOMPLETE][103] ([i915#123]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl4/igt@kms_frontbuffer_tracking@psr-suspend.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [FAIL][105] ([i915#1188]) -> [PASS][106] +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl3/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [SKIP][107] ([fdo#109441]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html #### Warnings #### * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [SKIP][109] ([i915#4525]) -> [DMESG-WARN][110] ([i915#5076]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [DMESG-WARN][111] ([i915#5076]) -> [SKIP][112] ([i915#4525]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb5/igt@gem_exec_balancer@parallel-out-fence.html * igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen: - shard-glk: [DMESG-WARN][113] ([i915#118] / [i915#1888]) -> [DMESG-FAIL][114] ([i915#118] / [i915#1888]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk9/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-glk8/igt@kms_cursor_crc@pipe-a-cursor-128x128-offscreen.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [INCOMPLETE][115] ([i915#636]) -> [DMESG-WARN][116] ([i915#180]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_psr2_su@page_flip-nv12: - shard-iclb: [FAIL][117] ([i915#4148]) -> [SKIP][118] ([fdo#109642] / [fdo#111068] / [i915#658]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-iclb: [SKIP][119] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][120] ([i915#4148]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb3/igt@kms_psr2_su@page_flip-p010.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-iclb2/igt@kms_psr2_su@page_flip-p010.html * igt@runner@aborted: - shard-apl: ([FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127]) ([i915#180] / [i915#1814] / [i915#2426] / [i915#3002] / [i915#4312]) -> ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([fdo#109271] / [i915#1814] / [i915#2426] / [i915#3002] / [i915#4312]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl1/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl6/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl2/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl7/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl3/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl2/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl2/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl7/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl6/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl8/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl2/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl1/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-apl4/igt@runner@aborted.html - shard-skl: ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139]) ([i915#1436] / [i915#2029] / [i915#2426] / [i915#3002] / [i915#4312]) -> ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145]) ([i915#1436] / [i915#2426] / [i915#3002] / [i915#4312]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl2/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl8/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl4/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl9/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl9/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl2/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl3/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl3/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl7/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl3/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl8/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/shard-skl4/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22285/index.html [-- Attachment #2: Type: text/html, Size: 34981 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-02-17 7:56 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-15 16:32 [Intel-gfx] [PATCH v1 1/1] drm/i915/selftests: Replace too verbose for-loop with simpler while Andy Shevchenko 2022-02-15 17:14 ` Jani Nikula 2022-02-15 18:58 ` Andy Shevchenko 2022-02-16 8:55 ` Jani Nikula 2022-02-16 9:02 ` Geert Uytterhoeven 2022-02-16 23:28 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v1,1/1] " Patchwork 2022-02-17 7:56 ` [Intel-gfx] ✗ 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