* [igt-dev] [PATCH i-g-t 0/1] Correct context in rc6-idle
@ 2022-07-04 12:50 Riana Tauro
2022-07-04 12:50 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct " Riana Tauro
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Riana Tauro @ 2022-07-04 12:50 UTC (permalink / raw)
To: igt-dev; +Cc: chris.p.wilson
Pass the context id to rc6-idle to be used in execbuf
Riana Tauro (1):
tests/i915/i915_pm_rc6_residency: Use the correct context in rc6-idle
tests/i915/i915_pm_rc6_residency.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct context in rc6-idle 2022-07-04 12:50 [igt-dev] [PATCH i-g-t 0/1] Correct context in rc6-idle Riana Tauro @ 2022-07-04 12:50 ` Riana Tauro 2022-07-05 13:22 ` Ramalingam C 2022-07-04 17:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Correct " Patchwork 2022-07-04 20:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Riana Tauro @ 2022-07-04 12:50 UTC (permalink / raw) To: igt-dev; +Cc: chris.p.wilson Use the correct context id in execbuf of rc6-idle test Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/i915/i915_pm_rc6_residency.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c index e377e70c..67d25918 100644 --- a/tests/i915/i915_pm_rc6_residency.c +++ b/tests/i915/i915_pm_rc6_residency.c @@ -292,7 +292,7 @@ static void sighandler(int sig) { } -static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) +static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) { const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; struct drm_i915_gem_exec_object2 obj = { @@ -302,6 +302,7 @@ static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigne .buffers_ptr = to_user_pointer(&obj), .buffer_count = 1, .flags = engine_flags, + .rsvd1 = ctx_id, }; struct sigaction act = { .sa_handler = sighandler @@ -359,7 +360,7 @@ static void kill_children(int sig) signal(sig, old); } -static void rc6_idle(int i915, uint64_t flags) +static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) { const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; const int tolerance = 20; /* Some RC6 is better than none! */ @@ -405,7 +406,7 @@ static void rc6_idle(int i915, uint64_t flags) for (int p = 0; p < ARRAY_SIZE(phases); p++) { memset(done, 0, 2 * sizeof(*done)); igt_fork(child, 1) /* Setup up a very light load */ - bg_load(i915, flags, phases[p].flags, done); + bg_load(i915, ctx_id, flags, phases[p].flags, done); rapl_read(&rapl, &sample[0]); cycles = -READ_ONCE(done[1]); @@ -549,7 +550,7 @@ igt_main for_each_ctx_engine(i915, ctx, e) { if (e->instance == 0) { igt_dynamic_f("%s", e->name) - rc6_idle(i915, e->flags); + rc6_idle(i915, ctx->id, e->flags); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct context in rc6-idle 2022-07-04 12:50 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct " Riana Tauro @ 2022-07-05 13:22 ` Ramalingam C 2022-07-05 13:55 ` Tauro, Riana 0 siblings, 1 reply; 6+ messages in thread From: Ramalingam C @ 2022-07-05 13:22 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev, chris.p.wilson On 2022-07-04 at 18:20:08 +0530, Riana Tauro wrote: > Use the correct context id in execbuf of rc6-idle test > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> Looks good to me. Reviewed-by: Ramalingam C <ramalingam.c@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c > index e377e70c..67d25918 100644 > --- a/tests/i915/i915_pm_rc6_residency.c > +++ b/tests/i915/i915_pm_rc6_residency.c > @@ -292,7 +292,7 @@ static void sighandler(int sig) > { > } > > -static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) > +static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) > { > const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; > struct drm_i915_gem_exec_object2 obj = { > @@ -302,6 +302,7 @@ static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigne > .buffers_ptr = to_user_pointer(&obj), > .buffer_count = 1, > .flags = engine_flags, > + .rsvd1 = ctx_id, > }; > struct sigaction act = { > .sa_handler = sighandler > @@ -359,7 +360,7 @@ static void kill_children(int sig) > signal(sig, old); > } > > -static void rc6_idle(int i915, uint64_t flags) > +static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) > { > const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ > @@ -405,7 +406,7 @@ static void rc6_idle(int i915, uint64_t flags) > for (int p = 0; p < ARRAY_SIZE(phases); p++) { > memset(done, 0, 2 * sizeof(*done)); > igt_fork(child, 1) /* Setup up a very light load */ > - bg_load(i915, flags, phases[p].flags, done); > + bg_load(i915, ctx_id, flags, phases[p].flags, done); > > rapl_read(&rapl, &sample[0]); > cycles = -READ_ONCE(done[1]); > @@ -549,7 +550,7 @@ igt_main > for_each_ctx_engine(i915, ctx, e) { > if (e->instance == 0) { > igt_dynamic_f("%s", e->name) > - rc6_idle(i915, e->flags); > + rc6_idle(i915, ctx->id, e->flags); > } > } > } > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct context in rc6-idle 2022-07-05 13:22 ` Ramalingam C @ 2022-07-05 13:55 ` Tauro, Riana 0 siblings, 0 replies; 6+ messages in thread From: Tauro, Riana @ 2022-07-05 13:55 UTC (permalink / raw) To: Ramalingam C; +Cc: igt-dev On 7/5/2022 6:52 PM, Ramalingam C wrote: > On 2022-07-04 at 18:20:08 +0530, Riana Tauro wrote: >> Use the correct context id in execbuf of rc6-idle test >> >> Signed-off-by: Riana Tauro <riana.tauro@intel.com> > > Looks good to me. > > Reviewed-by: Ramalingam C <ramalingam.c@intel.com> Thanks for the review > >> --- >> tests/i915/i915_pm_rc6_residency.c | 9 +++++---- >> 1 file changed, 5 insertions(+), 4 deletions(-) >> >> diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c >> index e377e70c..67d25918 100644 >> --- a/tests/i915/i915_pm_rc6_residency.c >> +++ b/tests/i915/i915_pm_rc6_residency.c >> @@ -292,7 +292,7 @@ static void sighandler(int sig) >> { >> } >> >> -static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) >> +static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl) >> { >> const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8; >> struct drm_i915_gem_exec_object2 obj = { >> @@ -302,6 +302,7 @@ static void bg_load(int i915, uint64_t engine_flags, unsigned int flags, unsigne >> .buffers_ptr = to_user_pointer(&obj), >> .buffer_count = 1, >> .flags = engine_flags, >> + .rsvd1 = ctx_id, >> }; >> struct sigaction act = { >> .sa_handler = sighandler >> @@ -359,7 +360,7 @@ static void kill_children(int sig) >> signal(sig, old); >> } >> >> -static void rc6_idle(int i915, uint64_t flags) >> +static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags) >> { >> const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; >> const int tolerance = 20; /* Some RC6 is better than none! */ >> @@ -405,7 +406,7 @@ static void rc6_idle(int i915, uint64_t flags) >> for (int p = 0; p < ARRAY_SIZE(phases); p++) { >> memset(done, 0, 2 * sizeof(*done)); >> igt_fork(child, 1) /* Setup up a very light load */ >> - bg_load(i915, flags, phases[p].flags, done); >> + bg_load(i915, ctx_id, flags, phases[p].flags, done); >> >> rapl_read(&rapl, &sample[0]); >> cycles = -READ_ONCE(done[1]); >> @@ -549,7 +550,7 @@ igt_main >> for_each_ctx_engine(i915, ctx, e) { >> if (e->instance == 0) { >> igt_dynamic_f("%s", e->name) >> - rc6_idle(i915, e->flags); >> + rc6_idle(i915, ctx->id, e->flags); >> } >> } >> } >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Correct context in rc6-idle 2022-07-04 12:50 [igt-dev] [PATCH i-g-t 0/1] Correct context in rc6-idle Riana Tauro 2022-07-04 12:50 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct " Riana Tauro @ 2022-07-04 17:53 ` Patchwork 2022-07-04 20:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-04 17:53 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7589 bytes --] == Series Details == Series: Correct context in rc6-idle URL : https://patchwork.freedesktop.org/series/105906/ State : success == Summary == CI Bug Log - changes from CI_DRM_11848 -> IGTPW_7458 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): fi-bxt-dsi Missing (1): fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_7458 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-bxt-dsi: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bxt-dsi/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-bxt-dsi: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bxt-dsi/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_blits@basic: - fi-bxt-dsi: NOTRUN -> [SKIP][3] ([fdo#109271]) +12 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bxt-dsi/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][4] -> [INCOMPLETE][5] ([i915#4785]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - fi-bdw-5557u: NOTRUN -> [INCOMPLETE][6] ([i915#3921]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bdw-5557u/igt@i915_selftest@live@hangcheck.html * igt@kms_chamelium@hdmi-edid-read: - fi-bxt-dsi: NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bxt-dsi/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_flip@basic-flip-vs-modeset@b-edp1: - bat-adlp-4: [PASS][8] -> [DMESG-WARN][9] ([i915#3576]) +2 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - fi-tgl-u2: [PASS][10] -> [DMESG-WARN][11] ([i915#402]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/fi-tgl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-tgl-u2/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][12] ([fdo#109271] / [i915#4312] / [i915#5594] / [i915#6246]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-hsw-4770/igt@runner@aborted.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - {bat-adln-1}: [DMESG-WARN][13] ([i915#6297]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-adln-1/igt@core_hotunplug@unbind-rebind.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-adln-1/igt@core_hotunplug@unbind-rebind.html * igt@i915_selftest@live@hangcheck: - bat-dg1-5: [DMESG-FAIL][15] ([i915#4494] / [i915#4957]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-dg1-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@vma: - fi-bdw-5557u: [INCOMPLETE][17] ([i915#6332]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/fi-bdw-5557u/igt@i915_selftest@live@vma.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bdw-5557u/igt@i915_selftest@live@vma.html * igt@kms_busy@basic@flip: - bat-adlp-4: [DMESG-WARN][19] ([i915#3576]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-adlp-4/igt@kms_busy@basic@flip.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-adlp-4/igt@kms_busy@basic@flip.html - fi-tgl-u2: [DMESG-WARN][21] ([i915#402]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/fi-tgl-u2/igt@kms_busy@basic@flip.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-tgl-u2/igt@kms_busy@basic@flip.html * igt@kms_busy@basic@modeset: - {bat-adln-1}: [DMESG-WARN][23] ([i915#3576]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-adln-1/igt@kms_busy@basic@modeset.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-adln-1/igt@kms_busy@basic@modeset.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [FAIL][25] ([i915#6298]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html * igt@kms_flip@basic-flip-vs-modeset@b-edp1: - {bat-adlp-6}: [DMESG-WARN][27] ([i915#3576]) -> [PASS][28] +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246 [i915#6297]: https://gitlab.freedesktop.org/drm/intel/issues/6297 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6332]: https://gitlab.freedesktop.org/drm/intel/issues/6332 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6555 -> IGTPW_7458 CI-20190529: 20190529 CI_DRM_11848: 4d29edc48d5af43c87c0d634adcf7aacfe0c1312 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7458: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html IGT_6555: 1a3ffecd400b8f82c35745fa2e07992f6bdeede2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html [-- Attachment #2: Type: text/html, Size: 9131 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Correct context in rc6-idle 2022-07-04 12:50 [igt-dev] [PATCH i-g-t 0/1] Correct context in rc6-idle Riana Tauro 2022-07-04 12:50 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct " Riana Tauro 2022-07-04 17:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Correct " Patchwork @ 2022-07-04 20:49 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-04 20:49 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 56356 bytes --] == Series Details == Series: Correct context in rc6-idle URL : https://patchwork.freedesktop.org/series/105906/ State : success == Summary == CI Bug Log - changes from CI_DRM_11848_full -> IGTPW_7458_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html Participating hosts (13 -> 10) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7458_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode}: - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_rotation_crc@primary-rotation-270: - {shard-rkl}: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-270.html New tests --------- New tests have been introduced between CI_DRM_11848_full and IGTPW_7458_full: ### New IGT tests (1) ### * igt@kms_color@invalid-gamma-lut-sizes: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_7458_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: [PASS][3] -> [SKIP][4] ([i915#658]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@feature_discovery@psr2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@feature_discovery@psr2.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [PASS][5] -> [DMESG-WARN][6] ([i915#180]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-snb2/igt@gem_ctx_persistence@hostile.html - shard-tglb: NOTRUN -> [FAIL][8] ([i915#2410]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb3/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@in-flight-contexts-immediate: - shard-tglb: [PASS][9] -> [TIMEOUT][10] ([i915#3063]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb2/igt@gem_eio@in-flight-contexts-immediate.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [PASS][11] -> [SKIP][12] ([i915#4525]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-glk: [PASS][17] -> [DMESG-WARN][18] ([i915#118]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk6/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_exec_whisper@basic-queues: - shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271]) +45 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-snb7/igt@gem_exec_whisper@basic-queues.html * igt@gem_lmem_swapping@heavy-random: - shard-kbl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +4 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-apl: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_pxp@display-protected-crc: - shard-tglb: NOTRUN -> [SKIP][23] ([i915#4270]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb5/igt@gem_pxp@display-protected-crc.html - shard-iclb: NOTRUN -> [SKIP][24] ([i915#4270]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@gem_pxp@display-protected-crc.html * igt@gem_softpin@evict-single-offset: - shard-kbl: NOTRUN -> [FAIL][25] ([i915#4171]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#3323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-kbl: NOTRUN -> [DMESG-WARN][27] ([i915#4991]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@gem_userptr_blits@input-checking.html - shard-apl: NOTRUN -> [DMESG-WARN][28] ([i915#4991]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl2/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#3297]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb3/igt@gem_userptr_blits@unsync-overlap.html - shard-tglb: NOTRUN -> [SKIP][30] ([i915#3297]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][31] ([i915#2856]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@gen9_exec_parse@secure-batches.html - shard-tglb: NOTRUN -> [SKIP][32] ([i915#2527] / [i915#2856]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb1/igt@gen9_exec_parse@secure-batches.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#5286]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-iclb: NOTRUN -> [SKIP][34] ([i915#5286]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#1888] / [i915#5138]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html - shard-iclb: [PASS][37] -> [FAIL][38] ([i915#1888]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111615]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#110723]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +10 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#6095]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb5/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk6/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#3886]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl4/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][46] ([i915#3689] / [i915#3886]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@hdmi-hpd: - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +5 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk1/igt@kms_chamelium@hdmi-hpd.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +9 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109284] / [fdo#111827]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html - shard-snb: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_color_chamelium@pipe-c-ctm-0-5: - shard-kbl: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +20 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@kms_color_chamelium@pipe-c-ctm-0-5.html * igt@kms_content_protection@uevent: - shard-apl: NOTRUN -> [FAIL][53] ([i915#2105]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl3/igt@kms_content_protection@uevent.html * igt@kms_draw_crc@draw-method-rgb565-pwrite-4tiled: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#5287]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb1/igt@kms_draw_crc@draw-method-rgb565-pwrite-4tiled.html - shard-iclb: NOTRUN -> [SKIP][55] ([i915#5287]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-pwrite-4tiled.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: NOTRUN -> [INCOMPLETE][56] ([i915#180] / [i915#4939]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][57] -> [FAIL][58] ([i915#2122]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109274]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb1/igt@kms_flip@2x-wf_vblank-ts-check.html - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#111825] / [i915#3637]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2672]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2672] / [i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109280] / [fdo#111825]) +4 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109280]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271]) +226 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +96 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#3555]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-apl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html - shard-kbl: NOTRUN -> [DMESG-FAIL][69] ([i915#180]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_hdr@static-toggle-suspend: - shard-iclb: NOTRUN -> [SKIP][70] ([i915#3555]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-apl: [PASS][71] -> [DMESG-WARN][72] ([i915#180]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][73] ([fdo#108145] / [i915#265]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html - shard-apl: NOTRUN -> [FAIL][74] ([fdo#108145] / [i915#265]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271]) +126 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl4/igt@kms_plane_alpha_blend@pipe-d-alpha-transparent-fb.html * igt@kms_prime@basic-crc@first-to-second: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#1836]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb1/igt@kms_prime@basic-crc@first-to-second.html - shard-iclb: NOTRUN -> [SKIP][77] ([i915#1836]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb3/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-kbl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-tglb: NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb5/igt@kms_psr@psr2_cursor_mmap_gtt.html - shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109441]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109441]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb8/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: - shard-iclb: NOTRUN -> [SKIP][85] ([i915#5030]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-tglb: NOTRUN -> [SKIP][86] ([i915#5030]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb5/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-glk: [PASS][87] -> [FAIL][88] ([i915#43]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk5/igt@kms_vblank@pipe-a-accuracy-idle.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk9/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][89] ([i915#180]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-forked: - shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109278]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb2/igt@kms_vblank@pipe-d-wait-forked.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#533]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/igt@kms_vblank@pipe-d-wait-idle.html * igt@prime_nv_api@i915_self_import_to_different_fd: - shard-tglb: NOTRUN -> [SKIP][92] ([fdo#109291]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb7/igt@prime_nv_api@i915_self_import_to_different_fd.html - shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109291]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@prime_nv_api@i915_self_import_to_different_fd.html * igt@sw_sync@sync_multi_timeline_wait: - shard-kbl: NOTRUN -> [FAIL][94] ([i915#6140]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@sw_sync@sync_multi_timeline_wait.html * igt@sysfs_clients@create: - shard-kbl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@sysfs_clients@create.html * igt@sysfs_clients@recycle: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl6/igt@sysfs_clients@recycle.html - shard-tglb: NOTRUN -> [SKIP][97] ([i915#2994]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb5/igt@sysfs_clients@recycle.html - shard-glk: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2994]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk5/igt@sysfs_clients@recycle.html - shard-iclb: NOTRUN -> [SKIP][99] ([i915#2994]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb8/igt@sysfs_clients@recycle.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [DMESG-WARN][100] ([i915#180]) -> [PASS][101] +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl1/igt@gem_ctx_isolation@preservation-s3@rcs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-hang@vecs0: - {shard-dg1}: [FAIL][102] ([i915#4883]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-dg1-17/igt@gem_ctx_persistence@engines-hang@vecs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-dg1-17/igt@gem_ctx_persistence@engines-hang@vecs0.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][104] ([i915#6252]) -> [PASS][105] +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-2/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_ctx_persistence@many-contexts: - {shard-rkl}: [FAIL][106] ([i915#2410]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][108] ([i915#5784]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-dg1-12/igt@gem_eio@reset-stress.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_endless@dispatch@bcs0: - {shard-rkl}: [SKIP][110] ([i915#6247]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-4/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][112] ([i915#2842]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl3/igt@gem_exec_fair@basic-none@vecs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html - shard-kbl: [FAIL][114] ([i915#2842]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglb: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][120] ([i915#2842]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk1/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - {shard-rkl}: [SKIP][122] ([i915#3281]) -> [PASS][123] +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_partial_pwrite_pread@reads: - {shard-rkl}: [SKIP][124] ([i915#3282]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [DMESG-WARN][126] ([i915#180]) -> [PASS][127] +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][128] ([i915#5566] / [i915#716]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk8/igt@gen9_exec_parse@allowed-all.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk5/igt@gen9_exec_parse@allowed-all.html * igt@i915_hangman@engine-engine-error@bcs0: - {shard-rkl}: [SKIP][130] ([i915#6258]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@i915_hangman@engine-engine-error@bcs0.html * igt@i915_pm_backlight@fade_with_suspend: - {shard-rkl}: [SKIP][132] ([i915#3012]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-2/igt@i915_pm_backlight@fade_with_suspend.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@i915_pm_backlight@fade_with_suspend.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][134] ([i915#4281]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-rkl}: [SKIP][136] ([i915#1397]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [DMESG-WARN][138] ([i915#5591]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb3/igt@i915_selftest@live@hangcheck.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb3/igt@i915_selftest@live@hangcheck.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs: - {shard-rkl}: [SKIP][140] ([i915#1845] / [i915#4098]) -> [PASS][141] +6 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html * igt@kms_cursor_legacy@cursor-vs-flip@atomic-transitions-varying-size: - shard-iclb: [FAIL][142] ([i915#5072]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@atomic-transitions-varying-size.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_cursor_legacy@cursor-vs-flip@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][144] ([i915#2346]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1: - shard-glk: [SKIP][146] ([fdo#109271]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-glk8/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-glk9/igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - {shard-rkl}: [SKIP][148] ([i915#1257]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@kms_dp_aux_dev.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][150] ([i915#4767]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-tglb: [DMESG-WARN][152] ([i915#2411] / [i915#2867]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb5/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - {shard-rkl}: [SKIP][154] ([i915#1849] / [i915#4098]) -> [PASS][155] +7 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_invalid_mode@int-max-clock: - {shard-rkl}: [SKIP][156] ([i915#4278]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_invalid_mode@int-max-clock.html * igt@kms_lease@atomic_implicit_crtc: - shard-snb: [SKIP][158] ([fdo#109271]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-snb5/igt@kms_lease@atomic_implicit_crtc.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-snb2/igt@kms_lease@atomic_implicit_crtc.html * igt@kms_plane_cursor@pipe-a-overlay-size-128: - {shard-dg1}: [SKIP][160] ([i915#1836]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-dg1-17/igt@kms_plane_cursor@pipe-a-overlay-size-128.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-dg1-12/igt@kms_plane_cursor@pipe-a-overlay-size-128.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][162] ([i915#5176]) -> [PASS][163] +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb3/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][164] ([i915#5235]) -> [PASS][165] +2 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@dpms: - {shard-rkl}: [SKIP][166] ([i915#1072]) -> [PASS][167] +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@kms_psr@dpms.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-6/igt@kms_psr@dpms.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][168] ([fdo#109441]) -> [PASS][169] +1 similar issue [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][170] ([i915#5519]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_sequence@get-idle@hdmi-a-1-pipe-c: - {shard-dg1}: [FAIL][172] ([i915#6061]) -> [PASS][173] +3 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-dg1-17/igt@kms_sequence@get-idle@hdmi-a-1-pipe-c.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-dg1-17/igt@kms_sequence@get-idle@hdmi-a-1-pipe-c.html * igt@kms_sysfs_edid_timing: - {shard-rkl}: [FAIL][174] ([IGT#2]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-rkl-5/igt@kms_sysfs_edid_timing.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-rkl-2/igt@kms_sysfs_edid_timing.html * igt@perf_pmu@semaphore-busy@vcs1: - {shard-dg1}: [FAIL][176] ([i915#4349]) -> [PASS][177] +2 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][178] ([i915#3063]) -> [FAIL][179] ([i915#5784]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb7/igt@gem_eio@unwedge-stress.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb2/igt@gem_eio@unwedge-stress.html * igt@kms_content_protection@mei_interface: - shard-tglb: [SKIP][180] ([fdo#109300]) -> [SKIP][181] ([i915#1063]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-tglb7/igt@kms_content_protection@mei_interface.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-tglb7/igt@kms_content_protection@mei_interface.html - shard-iclb: [SKIP][182] ([fdo#109300]) -> [SKIP][183] ([fdo#109300] / [fdo#111066]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb8/igt@kms_content_protection@mei_interface.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-iclb: [SKIP][184] ([i915#2920]) -> [SKIP][185] ([i915#658]) +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][186] ([fdo#111068] / [i915#658]) -> [SKIP][187] ([i915#2920]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][188] ([i915#2920]) -> [SKIP][189] ([fdo#111068] / [i915#658]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][190], [FAIL][191], [FAIL][192], [FAIL][193]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][194], [FAIL][195], [FAIL][196], [FAIL][197]) ([i915#3002] / [i915#4312] / [i915#5257]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl8/igt@runner@aborted.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl1/igt@runner@aborted.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl8/igt@runner@aborted.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-apl1/igt@runner@aborted.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@runner@aborted.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl2/igt@runner@aborted.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl2/igt@runner@aborted.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-apl1/igt@runner@aborted.html - shard-kbl: ([FAIL][198], [FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202], [FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207], [FAIL][208], [FAIL][209], [FAIL][210], [FAIL][211]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#716]) -> ([FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216], [FAIL][217], [FAIL][218], [FAIL][219], [FAIL][220], [FAIL][221], [FAIL][222], [FAIL][223], [FAIL][224], [FAIL][225], [FAIL][226]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257] / [i915#92]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl7/igt@runner@aborted.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@runner@aborted.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl6/igt@runner@aborted.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl6/igt@runner@aborted.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl6/igt@runner@aborted.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl7/igt@runner@aborted.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl4/igt@runner@aborted.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl7/igt@runner@aborted.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl6/igt@runner@aborted.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl4/igt@runner@aborted.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@runner@aborted.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl1/igt@runner@aborted.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl4/igt@runner@aborted.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11848/shard-kbl7/igt@runner@aborted.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@runner@aborted.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@runner@aborted.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@runner@aborted.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@runner@aborted.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl1/igt@runner@aborted.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@runner@aborted.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@runner@aborted.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@runner@aborted.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@runner@aborted.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/igt@runner@aborted.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@runner@aborted.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/igt@runner@aborted.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl7/igt@runner@aborted.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl6/igt@runner@aborted.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/shard-kbl4/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2105]: https://gitlab.freedesktop.org/drm/intel/issues/2105 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016 [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#5977]: https://gitlab.freedesktop.org/drm/intel/issues/5977 [i915#6061]: https://gitlab.freedesktop.org/drm/intel/issues/6061 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6555 -> IGTPW_7458 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11848: 4d29edc48d5af43c87c0d634adcf7aacfe0c1312 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7458: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html IGT_6555: 1a3ffecd400b8f82c35745fa2e07992f6bdeede2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7458/index.html [-- Attachment #2: Type: text/html, Size: 61878 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-07-05 13:55 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-04 12:50 [igt-dev] [PATCH i-g-t 0/1] Correct context in rc6-idle Riana Tauro 2022-07-04 12:50 ` [igt-dev] [PATCH i-g-t 1/1] tests/i915/i915_pm_rc6_residency: Use the correct " Riana Tauro 2022-07-05 13:22 ` Ramalingam C 2022-07-05 13:55 ` Tauro, Riana 2022-07-04 17:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Correct " Patchwork 2022-07-04 20:49 ` [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