* [igt-dev] [PATCH i-g-t v3 0/1] Extend rc6-idle
@ 2022-06-20 6:56 Riana Tauro
2022-06-20 6:56 ` [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Riana Tauro @ 2022-06-20 6:56 UTC (permalink / raw)
To: igt-dev
Run rc6_idle on a single instance of every engine.
Rev2 : add dynamic subtest (Anshuman)
Rev3 : use intel_ctx calls from igt_fixture (Anshuman)
Riana Tauro (1):
tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines
tests/i915/i915_pm_rc6_residency.c | 30 +++++++++++++++++++-----------
1 file changed, 19 insertions(+), 11 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines 2022-06-20 6:56 [igt-dev] [PATCH i-g-t v3 0/1] Extend rc6-idle Riana Tauro @ 2022-06-20 6:56 ` Riana Tauro 2022-06-21 4:09 ` Gupta, Anshuman 2022-06-20 8:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Extend rc6-idle (rev3) Patchwork 2022-06-20 9:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Riana Tauro @ 2022-06-20 6:56 UTC (permalink / raw) To: igt-dev rc6_idle should run on a single instance of every engine v2: add dynamic subtest (Anshuman) v3: use intel_ctx calls from igt_fixture for rc6_fence (Anshuman) Signed-off-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/i915/i915_pm_rc6_residency.c | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c index cf9eae90..043370cc 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, unsigned int flags, unsigned long *ctl) +static void bg_load(int i915, 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 = { @@ -301,6 +301,7 @@ static void bg_load(int i915, unsigned int flags, unsigned long *ctl) struct drm_i915_gem_execbuffer2 execbuf = { .buffers_ptr = to_user_pointer(&obj), .buffer_count = 1, + .flags = engine_flags, }; struct sigaction act = { .sa_handler = sighandler @@ -358,7 +359,7 @@ static void kill_children(int sig) signal(sig, old); } -static void rc6_idle(int i915) +static void rc6_idle(int i915, 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! */ @@ -404,7 +405,7 @@ static void rc6_idle(int i915) 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, phases[p].flags, done); + bg_load(i915, flags, phases[p].flags, done); rapl_read(&rapl, &sample[0]); cycles = -READ_ONCE(done[1]); @@ -449,13 +450,12 @@ static void rc6_idle(int i915) } } -static void rc6_fence(int i915) +static void rc6_fence(int i915, const intel_ctx_t *ctx) { const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC; const int tolerance = 20; /* Some RC6 is better than none! */ const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); const struct intel_execution_engine2 *e; - const intel_ctx_t *ctx; struct power_sample sample[2]; unsigned long slept; uint64_t rc6, ts[2], ahnd; @@ -485,7 +485,6 @@ static void rc6_fence(int i915) assert_within_epsilon(rc6, ts[1] - ts[0], 5); /* Submit but delay execution, we should be idle and conserving power */ - ctx = intel_ctx_create_all_physical(i915); ahnd = get_reloc_ahnd(i915, ctx->id); for_each_ctx_engine(i915, ctx, e) { igt_spin_t *spin; @@ -524,7 +523,6 @@ static void rc6_fence(int i915) assert_within_epsilon(rc6, ts[1] - ts[0], tolerance); gem_quiescent_gpu(i915); } - intel_ctx_destroy(i915, ctx); put_ahnd(ahnd); rapl_close(&rapl); @@ -534,24 +532,32 @@ static void rc6_fence(int i915) igt_main { int i915 = -1; + const intel_ctx_t *ctx; + const struct intel_execution_engine2 *e; /* Use drm_open_driver to verify device existence */ igt_fixture { i915 = drm_open_driver(DRIVER_INTEL); + ctx = intel_ctx_create_all_physical(i915); } - igt_subtest("rc6-idle") { + igt_subtest_with_dynamic("rc6-idle") { igt_require_gem(i915); gem_quiescent_gpu(i915); - rc6_idle(i915); + for_each_ctx_engine(i915, ctx, e) { + if (e->instance == 0) { + igt_dynamic_f("%s", e->name) + rc6_idle(i915, e->flags); + } + } } igt_subtest("rc6-fence") { igt_require_gem(i915); gem_quiescent_gpu(i915); - rc6_fence(i915); + rc6_fence(i915, ctx); } igt_subtest_group { @@ -592,7 +598,9 @@ igt_main close(sysfs); } - igt_fixture + igt_fixture { + intel_ctx_destroy(i915, ctx); close(i915); + } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines 2022-06-20 6:56 ` [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro @ 2022-06-21 4:09 ` Gupta, Anshuman 0 siblings, 0 replies; 5+ messages in thread From: Gupta, Anshuman @ 2022-06-21 4:09 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Monday, June 20, 2022 12:27 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com> > Subject: [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test > on remaining engines > > rc6_idle should run on a single instance of every engine > > v2: add dynamic subtest (Anshuman) > v3: use intel_ctx calls from igt_fixture for rc6_fence (Anshuman) > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/i915/i915_pm_rc6_residency.c | 30 +++++++++++++++++++----------- > 1 file changed, 19 insertions(+), 11 deletions(-) > > diff --git a/tests/i915/i915_pm_rc6_residency.c > b/tests/i915/i915_pm_rc6_residency.c > index cf9eae90..043370cc 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, unsigned int flags, unsigned long *ctl) > +static void bg_load(int i915, 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 = { @@ -301,6 +301,7 @@ > static void bg_load(int i915, unsigned int flags, unsigned long *ctl) > struct drm_i915_gem_execbuffer2 execbuf = { > .buffers_ptr = to_user_pointer(&obj), > .buffer_count = 1, > + .flags = engine_flags, > }; > struct sigaction act = { > .sa_handler = sighandler > @@ -358,7 +359,7 @@ static void kill_children(int sig) > signal(sig, old); > } > > -static void rc6_idle(int i915) > +static void rc6_idle(int i915, 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! */ @@ - > 404,7 +405,7 @@ static void rc6_idle(int i915) > 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, phases[p].flags, done); > + bg_load(i915, flags, phases[p].flags, done); > > rapl_read(&rapl, &sample[0]); > cycles = -READ_ONCE(done[1]); > @@ -449,13 +450,12 @@ static void rc6_idle(int i915) > } > } > > -static void rc6_fence(int i915) > +static void rc6_fence(int i915, const intel_ctx_t *ctx) Keep this refactoring in different patch. This patch should follow the refactored patch. Thanks, Anshuman Gupta. > { > const int64_t duration_ns = SLEEP_DURATION * > (int64_t)NSEC_PER_SEC; > const int tolerance = 20; /* Some RC6 is better than none! */ > const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); > const struct intel_execution_engine2 *e; > - const intel_ctx_t *ctx; > struct power_sample sample[2]; > unsigned long slept; > uint64_t rc6, ts[2], ahnd; > @@ -485,7 +485,6 @@ static void rc6_fence(int i915) > assert_within_epsilon(rc6, ts[1] - ts[0], 5); > > /* Submit but delay execution, we should be idle and conserving power > */ > - ctx = intel_ctx_create_all_physical(i915); > ahnd = get_reloc_ahnd(i915, ctx->id); > for_each_ctx_engine(i915, ctx, e) { > igt_spin_t *spin; > @@ -524,7 +523,6 @@ static void rc6_fence(int i915) > assert_within_epsilon(rc6, ts[1] - ts[0], tolerance); > gem_quiescent_gpu(i915); > } > - intel_ctx_destroy(i915, ctx); > put_ahnd(ahnd); > > rapl_close(&rapl); > @@ -534,24 +532,32 @@ static void rc6_fence(int i915) igt_main { > int i915 = -1; > + const intel_ctx_t *ctx; > + const struct intel_execution_engine2 *e; > > /* Use drm_open_driver to verify device existence */ > igt_fixture { > i915 = drm_open_driver(DRIVER_INTEL); > + ctx = intel_ctx_create_all_physical(i915); > } > > - igt_subtest("rc6-idle") { > + igt_subtest_with_dynamic("rc6-idle") { > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - rc6_idle(i915); > + for_each_ctx_engine(i915, ctx, e) { > + if (e->instance == 0) { > + igt_dynamic_f("%s", e->name) > + rc6_idle(i915, e->flags); > + } > + } > } > > igt_subtest("rc6-fence") { > igt_require_gem(i915); > gem_quiescent_gpu(i915); > > - rc6_fence(i915); > + rc6_fence(i915, ctx); > } > > igt_subtest_group { > @@ -592,7 +598,9 @@ igt_main > close(sysfs); > } > > - igt_fixture > + igt_fixture { > + intel_ctx_destroy(i915, ctx); > close(i915); > + } > > } > -- > 2.25.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Extend rc6-idle (rev3) 2022-06-20 6:56 [igt-dev] [PATCH i-g-t v3 0/1] Extend rc6-idle Riana Tauro 2022-06-20 6:56 ` [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro @ 2022-06-20 8:01 ` Patchwork 2022-06-20 9:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-06-20 8:01 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3570 bytes --] == Series Details == Series: Extend rc6-idle (rev3) URL : https://patchwork.freedesktop.org/series/104872/ State : success == Summary == CI Bug Log - changes from CI_DRM_11778 -> IGTPW_7340 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/index.html Participating hosts (35 -> 34) ------------------------------ Missing (1): fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_7340 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - fi-hsw-g3258: [PASS][1] -> [INCOMPLETE][2] ([i915#3303] / [i915#4785]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html * igt@kms_busy@basic@flip: - fi-tgl-u2: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/fi-tgl-u2/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-tgl-u2/igt@kms_busy@basic@flip.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-cfl-8109u: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-cfl-8109u/igt@kms_chamelium@common-hpd-after-suspend.html * igt@runner@aborted: - fi-hsw-g3258: NOTRUN -> [FAIL][6] ([fdo#109271] / [i915#4312] / [i915#6246]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-hsw-g3258/igt@runner@aborted.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - fi-cfl-8109u: [DMESG-FAIL][7] ([i915#62]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence: - fi-cfl-8109u: [DMESG-WARN][9] ([i915#62]) -> [PASS][10] +15 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/fi-cfl-8109u/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6246]: https://gitlab.freedesktop.org/drm/intel/issues/6246 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6536 -> IGTPW_7340 CI-20190529: 20190529 CI_DRM_11778: dd58ba5cb816d3e74056c3a28048893d8858ee7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7340: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/index.html IGT_6536: e3de4d32b7a509635fbff4d5131c05a7767699f7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/index.html [-- Attachment #2: Type: text/html, Size: 4434 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Extend rc6-idle (rev3) 2022-06-20 6:56 [igt-dev] [PATCH i-g-t v3 0/1] Extend rc6-idle Riana Tauro 2022-06-20 6:56 ` [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro 2022-06-20 8:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Extend rc6-idle (rev3) Patchwork @ 2022-06-20 9:37 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-06-20 9:37 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46191 bytes --] == Series Details == Series: Extend rc6-idle (rev3) URL : https://patchwork.freedesktop.org/series/104872/ State : success == Summary == CI Bug Log - changes from CI_DRM_11778_full -> IGTPW_7340_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/index.html Participating hosts (10 -> 9) ------------------------------ Additional (2): shard-rkl shard-tglu 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_7340_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_pm_rc6_residency@rc6-idle@rcs0} (NEW): - shard-tglb: NOTRUN -> [WARN][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html - {shard-tglu}: NOTRUN -> [WARN][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * {igt@i915_pm_rc6_residency@rc6-idle@vcs0} (NEW): - shard-iclb: NOTRUN -> [WARN][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html New tests --------- New tests have been introduced between CI_DRM_11778_full and IGTPW_7340_full: ### New IGT tests (4) ### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.20, 12.25] s * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - Statuses : 5 pass(s) 3 warn(s) - Exec time: [12.21, 12.26] s * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - Statuses : 4 pass(s) 3 warn(s) - Exec time: [12.20, 12.26] s Known issues ------------ Here are the changes found in IGTPW_7340_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@chamelium: - shard-tglb: NOTRUN -> [SKIP][5] ([fdo#111827]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb5/igt@feature_discovery@chamelium.html - shard-iclb: NOTRUN -> [SKIP][6] ([fdo#111827]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@feature_discovery@chamelium.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: [PASS][7] -> [SKIP][8] ([i915#4525]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb1/igt@gem_exec_balancer@parallel-contexts.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-kbl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl4/igt@gem_exec_fair@basic-none@vcs1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl3/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-kbl: [PASS][17] -> [INCOMPLETE][18] ([i915#5843]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl7/igt@gem_exec_whisper@basic-fds-priority-all.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl3/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_lmem_swapping@heavy-random: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-iclb: NOTRUN -> [SKIP][23] ([i915#4613]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#4270]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb8/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-tglb: NOTRUN -> [SKIP][25] ([i915#4270]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][26] -> [DMESG-WARN][27] ([i915#5566] / [i915#716]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-glk3/igt@gen9_exec_parse@allowed-all.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk8/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@unaligned-jump: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#2856]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@gen9_exec_parse@unaligned-jump.html - shard-tglb: NOTRUN -> [SKIP][29] ([i915#2527] / [i915#2856]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][30] -> [SKIP][31] ([fdo#109271]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl8/igt@i915_pm_dc@dc9-dpms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][32] -> [DMESG-WARN][33] ([i915#5591]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb1/igt@i915_selftest@live@hangcheck.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb5/igt@i915_selftest@live@hangcheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1: - shard-kbl: [PASS][34] -> [FAIL][35] ([i915#2521]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html - shard-apl: [PASS][36] -> [FAIL][37] ([i915#2521]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-iclb: [PASS][38] -> [FAIL][39] ([i915#2521]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#5286]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html - shard-iclb: NOTRUN -> [SKIP][41] ([i915#5286]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111614]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271]) +15 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#110725] / [fdo#111614]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#110723]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#3886]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3689] / [i915#3886]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3886]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl3/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#6095]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-snb: NOTRUN -> [SKIP][52] ([fdo#109271]) +56 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-snb5/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#3689]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb3/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#111615] / [i915#3689]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb6/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs: - shard-kbl: NOTRUN -> [SKIP][55] ([fdo#109271]) +42 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html * igt@kms_chamelium@hdmi-crc-single: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +3 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@kms_chamelium@hdmi-crc-single.html - shard-kbl: NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl7/igt@kms_chamelium@hdmi-crc-single.html - shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-snb5/igt@kms_chamelium@hdmi-crc-single.html - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl4/igt@kms_chamelium@hdmi-crc-single.html * igt@kms_color_chamelium@pipe-a-ctm-0-5: - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109284] / [fdo#111827]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb6/igt@kms_color_chamelium@pipe-a-ctm-0-5.html - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk1/igt@kms_color_chamelium@pipe-a-ctm-0-5.html * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html * igt@kms_content_protection@srm: - shard-apl: NOTRUN -> [TIMEOUT][63] ([i915#1319]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl2/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109278]) +9 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html - shard-tglb: NOTRUN -> [SKIP][65] ([i915#3359]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109274] / [fdo#109278]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_flip@2x-plain-flip: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#109274] / [fdo#111825]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@kms_flip@2x-plain-flip.html - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109274]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-kbl: [PASS][69] -> [DMESG-WARN][70] ([i915#180]) +8 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip@flip-vs-suspend@b-dp1: - shard-apl: [PASS][71] -> [DMESG-WARN][72] ([i915#180]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl1/igt@kms_flip@flip-vs-suspend@b-dp1.html - shard-kbl: [PASS][73] -> [INCOMPLETE][74] ([i915#180] / [i915#3614]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl4/igt@kms_flip@flip-vs-suspend@b-dp1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@kms_flip@flip-vs-suspend@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-iclb: [PASS][75] -> [SKIP][76] ([i915#3701]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#2587]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling: - shard-iclb: NOTRUN -> [SKIP][78] ([i915#2587]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#109280] / [fdo#111825]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109280]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [PASS][81] -> [SKIP][82] ([i915#433]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][83] ([fdo#108145] / [i915#265]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html - shard-kbl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html - shard-apl: NOTRUN -> [FAIL][85] ([fdo#108145] / [i915#265]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#2920]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-kbl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#658]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#658]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-tglb: NOTRUN -> [SKIP][89] ([i915#2920]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#111068] / [i915#658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][92] -> [SKIP][93] ([fdo#109441]) +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb7/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109441]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb7/igt@kms_psr@psr2_no_drrs.html - shard-tglb: NOTRUN -> [FAIL][95] ([i915#132] / [i915#3467]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb1/igt@kms_psr@psr2_no_drrs.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][96] -> [SKIP][97] ([i915#5519]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-kbl: [PASS][98] -> [INCOMPLETE][99] ([i915#3614]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][100] ([i915#2530]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@nouveau_crc@pipe-b-source-outp-inactive.html - shard-iclb: NOTRUN -> [SKIP][101] ([i915#2530]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb3/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_pcopy@test3_1: - shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109291]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb5/igt@prime_nv_pcopy@test3_1.html * igt@prime_nv_pcopy@test3_4: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271]) +95 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl4/igt@prime_nv_pcopy@test3_4.html * igt@sw_sync@sync_multi_timeline_wait: - shard-snb: NOTRUN -> [FAIL][104] ([i915#6140]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-snb4/igt@sw_sync@sync_multi_timeline_wait.html * igt@sysfs_clients@create: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl3/igt@sysfs_clients@create.html #### Possible fixes #### * igt@gem_eio@kms: - shard-tglb: [FAIL][106] ([i915#5784]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb1/igt@gem_eio@kms.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb7/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [SKIP][108] ([i915#4525]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][110] ([i915#2842]) -> [PASS][111] +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][112] ([i915#2842]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: [FAIL][114] ([i915#2842]) -> [PASS][115] +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][116] ([i915#2842]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html - shard-kbl: [FAIL][118] ([i915#2842]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_whisper@basic-queues-all: - shard-glk: [DMESG-WARN][120] ([i915#118]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-glk3/igt@gem_exec_whisper@basic-queues-all.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk8/igt@gem_exec_whisper@basic-queues-all.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][122] ([i915#4281]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@sysfs-read: - shard-iclb: [INCOMPLETE][124] -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb4/igt@i915_pm_rpm@sysfs-read.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@i915_pm_rpm@sysfs-read.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [DMESG-WARN][126] ([i915#4528]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-snb6/igt@i915_suspend@basic-s2idle-without-i915.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-snb4/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][128] ([i915#180]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][130] ([i915#2346]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [INCOMPLETE][132] ([i915#180] / [i915#1982] / [i915#4939]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_hdr@bpc-switch@pipe-a-dp-1: - shard-kbl: [FAIL][134] ([i915#1188]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl7/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl7/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][136] ([i915#5235]) -> [PASS][137] +2 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][138] ([fdo#109441]) -> [PASS][139] +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][140] ([i915#180]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-query-idle-hang: - shard-tglb: [SKIP][142] -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-tglb2/igt@kms_vblank@pipe-d-query-idle-hang.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-tglb2/igt@kms_vblank@pipe-d-query-idle-hang.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][144] ([i915#6117]) -> [SKIP][145] ([i915#4525]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb4/igt@gem_exec_balancer@parallel-ordering.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: [FAIL][146] ([i915#2851]) -> [FAIL][147] ([i915#2842]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl6/igt@gem_exec_fair@basic-pace@rcs0.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][148] ([i915#588]) -> [SKIP][149] ([i915#658]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb5/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@kms_content_protection@mei_interface: - shard-iclb: [SKIP][150] ([fdo#109300]) -> [SKIP][151] ([fdo#109300] / [fdo#111066]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb1/igt@kms_content_protection@mei_interface.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb4/igt@kms_content_protection@mei_interface.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-iclb: [SKIP][152] ([i915#2920]) -> [SKIP][153] ([i915#658]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-iclb: [SKIP][154] ([i915#658]) -> [SKIP][155] ([i915#2920]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@runner@aborted: - shard-kbl: ([FAIL][156], [FAIL][157], [FAIL][158]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][159], [FAIL][160], [FAIL][161], [FAIL][162], [FAIL][163], [FAIL][164], [FAIL][165], [FAIL][166]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl6/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl7/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11778/shard-kbl1/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl3/igt@runner@aborted.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@runner@aborted.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl4/igt@runner@aborted.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@runner@aborted.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl3/igt@runner@aborted.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/igt@runner@aborted.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/shard-kbl6/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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [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#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [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#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849 [i915#2851]: https://gitlab.freedesktop.org/drm/intel/issues/2851 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [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#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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [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#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [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#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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5843]: https://gitlab.freedesktop.org/drm/intel/issues/5843 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6536 -> IGTPW_7340 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11778: dd58ba5cb816d3e74056c3a28048893d8858ee7d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7340: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7340/index.html IGT_6536: e3de4d32b7a509635fbff4d5131c05a7767699f7 @ 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_7340/index.html [-- Attachment #2: Type: text/html, Size: 49057 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-06-21 4:09 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-06-20 6:56 [igt-dev] [PATCH i-g-t v3 0/1] Extend rc6-idle Riana Tauro 2022-06-20 6:56 ` [igt-dev] [PATCH i-g-t v3 1/1] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro 2022-06-21 4:09 ` Gupta, Anshuman 2022-06-20 8:01 ` [igt-dev] ✓ Fi.CI.BAT: success for Extend rc6-idle (rev3) Patchwork 2022-06-20 9:37 ` [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