* [igt-dev] [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle @ 2019-10-25 21:49 ` Chris Wilson 0 siblings, 0 replies; 7+ messages in thread From: Chris Wilson @ 2019-10-25 21:49 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev Check the actual frequency, and not just the current requested, before delaying the system stable. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Andi Shyti <andi.shyti@intel.com> --- tests/i915/i915_pm_rps.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c index 478c7be76..c67759d06 100644 --- a/tests/i915/i915_pm_rps.c +++ b/tests/i915/i915_pm_rps.c @@ -46,6 +46,7 @@ static int drm_fd; enum { CUR, + ACT, MIN, MAX, RP0, @@ -63,6 +64,7 @@ struct sysfs_file { FILE *filp; } sysfs_files[] = { { "cur", "r", NULL }, + { "act", "r", NULL }, { "min", "rb+", NULL }, { "max", "rb+", NULL }, { "RP0", "r", NULL }, @@ -469,14 +471,14 @@ static void idle_check(void) read_freqs(freqs); dump(freqs); check_freq_constraints(freqs); - if (freqs[CUR] == freqs[RPn]) + if (freqs[ACT] == freqs[RPn]) break; usleep(1000 * IDLE_WAIT_TIMESTEP_MSEC); wait += IDLE_WAIT_TIMESTEP_MSEC; } while (wait < IDLE_WAIT_TIMEOUT_MSEC); igt_debugfs_dump(drm_fd, "i915_rps_boost_info"); - igt_assert_eq(freqs[CUR], freqs[RPn]); + igt_assert_eq(freqs[ACT], freqs[RPn]); igt_debug("Required %d msec to reach cur=idle\n", wait); } -- 2.24.0.rc1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Intel-gfx] [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle @ 2019-10-25 21:49 ` Chris Wilson 0 siblings, 0 replies; 7+ messages in thread From: Chris Wilson @ 2019-10-25 21:49 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev Check the actual frequency, and not just the current requested, before delaying the system stable. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Andi Shyti <andi.shyti@intel.com> --- tests/i915/i915_pm_rps.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c index 478c7be76..c67759d06 100644 --- a/tests/i915/i915_pm_rps.c +++ b/tests/i915/i915_pm_rps.c @@ -46,6 +46,7 @@ static int drm_fd; enum { CUR, + ACT, MIN, MAX, RP0, @@ -63,6 +64,7 @@ struct sysfs_file { FILE *filp; } sysfs_files[] = { { "cur", "r", NULL }, + { "act", "r", NULL }, { "min", "rb+", NULL }, { "max", "rb+", NULL }, { "RP0", "r", NULL }, @@ -469,14 +471,14 @@ static void idle_check(void) read_freqs(freqs); dump(freqs); check_freq_constraints(freqs); - if (freqs[CUR] == freqs[RPn]) + if (freqs[ACT] == freqs[RPn]) break; usleep(1000 * IDLE_WAIT_TIMESTEP_MSEC); wait += IDLE_WAIT_TIMESTEP_MSEC; } while (wait < IDLE_WAIT_TIMEOUT_MSEC); igt_debugfs_dump(drm_fd, "i915_rps_boost_info"); - igt_assert_eq(freqs[CUR], freqs[RPn]); + igt_assert_eq(freqs[ACT], freqs[RPn]); igt_debug("Required %d msec to reach cur=idle\n", wait); } -- 2.24.0.rc1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle @ 2019-10-25 21:49 ` Chris Wilson 0 siblings, 0 replies; 7+ messages in thread From: Chris Wilson @ 2019-10-25 21:49 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev Check the actual frequency, and not just the current requested, before delaying the system stable. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Andi Shyti <andi.shyti@intel.com> --- tests/i915/i915_pm_rps.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c index 478c7be76..c67759d06 100644 --- a/tests/i915/i915_pm_rps.c +++ b/tests/i915/i915_pm_rps.c @@ -46,6 +46,7 @@ static int drm_fd; enum { CUR, + ACT, MIN, MAX, RP0, @@ -63,6 +64,7 @@ struct sysfs_file { FILE *filp; } sysfs_files[] = { { "cur", "r", NULL }, + { "act", "r", NULL }, { "min", "rb+", NULL }, { "max", "rb+", NULL }, { "RP0", "r", NULL }, @@ -469,14 +471,14 @@ static void idle_check(void) read_freqs(freqs); dump(freqs); check_freq_constraints(freqs); - if (freqs[CUR] == freqs[RPn]) + if (freqs[ACT] == freqs[RPn]) break; usleep(1000 * IDLE_WAIT_TIMESTEP_MSEC); wait += IDLE_WAIT_TIMESTEP_MSEC; } while (wait < IDLE_WAIT_TIMEOUT_MSEC); igt_debugfs_dump(drm_fd, "i915_rps_boost_info"); - igt_assert_eq(freqs[CUR], freqs[RPn]); + igt_assert_eq(freqs[ACT], freqs[RPn]); igt_debug("Required %d msec to reach cur=idle\n", wait); } -- 2.24.0.rc1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/pm_rps: Wait for the actual frequency to settle 2019-10-25 21:49 ` Chris Wilson (?) (?) @ 2019-10-25 23:19 ` Patchwork -1 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2019-10-25 23:19 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/pm_rps: Wait for the actual frequency to settle URL : https://patchwork.freedesktop.org/series/68587/ State : success == Summary == CI Bug Log - changes from CI_DRM_7190 -> IGTPW_3617 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html Known issues ------------ Here are the changes found in IGTPW_3617 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-process: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/fi-icl-u3/igt@gem_close_race@basic-process.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/fi-icl-u3/igt@gem_close_race@basic-process.html #### Possible fixes #### * {igt@i915_selftest@live_gt_heartbeat}: - fi-skl-iommu: [DMESG-FAIL][3] ([fdo#112096]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/fi-skl-iommu/igt@i915_selftest@live_gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/fi-skl-iommu/igt@i915_selftest@live_gt_heartbeat.html - fi-cfl-guc: [DMESG-FAIL][5] ([fdo#112096]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/fi-cfl-guc/igt@i915_selftest@live_gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/fi-cfl-guc/igt@i915_selftest@live_gt_heartbeat.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-kbl-guc: [SKIP][7] ([fdo#109271]) -> [FAIL][8] ([fdo#110829]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#110829]: https://bugs.freedesktop.org/show_bug.cgi?id=110829 [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#112096]: https://bugs.freedesktop.org/show_bug.cgi?id=112096 Participating hosts (49 -> 43) ------------------------------ Additional (1): fi-snb-2600 Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5242 -> IGTPW_3617 CI-20190529: 20190529 CI_DRM_7190: 070eb39193f77efb9ee1965ca99e0953c17e6116 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3617: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html IGT_5242: 15c11e2df77f769b5fa9ca5b40a94f266370a479 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle 2019-10-25 21:49 ` Chris Wilson @ 2019-10-26 17:40 ` Andi Shyti -1 siblings, 0 replies; 7+ messages in thread From: Andi Shyti @ 2019-10-26 17:40 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx Hi Chris, On Fri, Oct 25, 2019 at 10:49:19PM +0100, Chris Wilson wrote: > Check the actual frequency, and not just the current requested, before > delaying the system stable. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Andi Shyti <andi.shyti@intel.com> Reviewed-by: Andi Shyti <andi.shyti@intel.com> Thanks, Andi _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle @ 2019-10-26 17:40 ` Andi Shyti 0 siblings, 0 replies; 7+ messages in thread From: Andi Shyti @ 2019-10-26 17:40 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx Hi Chris, On Fri, Oct 25, 2019 at 10:49:19PM +0100, Chris Wilson wrote: > Check the actual frequency, and not just the current requested, before > delaying the system stable. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Andi Shyti <andi.shyti@intel.com> Reviewed-by: Andi Shyti <andi.shyti@intel.com> Thanks, Andi _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/pm_rps: Wait for the actual frequency to settle 2019-10-25 21:49 ` Chris Wilson ` (3 preceding siblings ...) (?) @ 2019-10-27 18:00 ` Patchwork -1 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2019-10-27 18:00 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/pm_rps: Wait for the actual frequency to settle URL : https://patchwork.freedesktop.org/series/68587/ State : success == Summary == CI Bug Log - changes from CI_DRM_7190_full -> IGTPW_3617_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3617_full: ### IGT changes ### #### 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-tglb}: NOTRUN -> [FAIL][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@i915_pm_rps@reset: - {shard-tglb}: [FAIL][2] ([fdo#102250]) -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb3/igt@i915_pm_rps@reset.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb5/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@waitboost: - {shard-tglb}: [FAIL][4] ([fdo#111839 ]) -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb4/igt@i915_pm_rps@waitboost.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb6/igt@i915_pm_rps@waitboost.html Known issues ------------ Here are the changes found in IGTPW_3617_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_basic@basic-vcs1: - shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#112080]) +8 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb2/igt@gem_exec_basic@basic-vcs1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb7/igt@gem_exec_basic@basic-vcs1.html * igt@gem_exec_schedule@in-order-bsd: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#111325]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb7/igt@gem_exec_schedule@in-order-bsd.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb4/igt@gem_exec_schedule@in-order-bsd.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#109276]) +19 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_linear_blits@normal: - shard-apl: [PASS][12] -> [INCOMPLETE][13] ([fdo#103927]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl4/igt@gem_linear_blits@normal.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl1/igt@gem_linear_blits@normal.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-snb: [PASS][14] -> [DMESG-WARN][15] ([fdo#111870]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@i915_selftest@mock_requests: - shard-glk: [PASS][16] -> [INCOMPLETE][17] ([fdo#103359] / [k.org#198133]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-glk3/igt@i915_selftest@mock_requests.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-glk3/igt@i915_selftest@mock_requests.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-apl: [PASS][18] -> [FAIL][19] ([fdo#103232]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html - shard-kbl: [PASS][20] -> [DMESG-FAIL][21] ([fdo#103232] / [fdo#108566]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][22] -> [FAIL][23] ([fdo#105363]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [PASS][24] -> [DMESG-WARN][25] ([fdo#108566]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-iclb: [PASS][26] -> [FAIL][27] ([fdo#103167]) +3 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [PASS][28] -> [DMESG-WARN][29] ([fdo#108566]) +5 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_vblank@pipe-b-wait-idle-hang: - shard-iclb: [PASS][30] -> [INCOMPLETE][31] ([fdo#107713]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb6/igt@kms_vblank@pipe-b-wait-idle-hang.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb7/igt@kms_vblank@pipe-b-wait-idle-hang.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][32] ([fdo#112080]) -> [PASS][33] +10 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb6/igt@gem_busy@busy-vcs1.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb2/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@vcs1-clean: - shard-iclb: [SKIP][34] ([fdo#109276] / [fdo#112080]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb6/igt@gem_ctx_isolation@vcs1-clean.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb4/igt@gem_ctx_isolation@vcs1-clean.html * igt@gem_ctx_shared@q-smoketest-all: - {shard-tglb}: [INCOMPLETE][36] ([fdo#111735]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb6/igt@gem_ctx_shared@q-smoketest-all.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb8/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_exec_async@concurrent-writes-bsd: - shard-iclb: [SKIP][38] ([fdo#111325]) -> [PASS][39] +5 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb2/igt@gem_exec_async@concurrent-writes-bsd.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb5/igt@gem_exec_async@concurrent-writes-bsd.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][40] ([fdo#110854]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb8/igt@gem_exec_balancer@smoke.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb1/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [SKIP][42] ([fdo#109276]) -> [PASS][43] +11 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd1.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_linear_blits@interruptible: - shard-apl: [INCOMPLETE][44] ([fdo#103927] / [fdo#112067]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl3/igt@gem_linear_blits@interruptible.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl2/igt@gem_linear_blits@interruptible.html * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing: - {shard-tglb}: [INCOMPLETE][46] -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb8/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-hsw: [INCOMPLETE][48] ([fdo#103540]) -> [PASS][49] +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-hsw7/igt@gem_ppgtt@blt-vs-render-ctx0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-hsw8/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [DMESG-WARN][50] ([fdo#111870]) -> [PASS][51] +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-hsw2/igt@gem_userptr_blits@sync-unmap-after-close.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-hsw8/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][52] ([fdo#111870]) -> [PASS][53] +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-snb7/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-hsw: [DMESG-WARN][54] ([fdo#110789] / [fdo#111870]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-hsw5/igt@gem_userptr_blits@sync-unmap-cycles.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-hsw2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@i915_selftest@mock_fence: - {shard-tglb}: [INCOMPLETE][56] ([fdo#111747]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb7/igt@i915_selftest@mock_fence.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb4/igt@i915_selftest@mock_fence.html * igt@i915_suspend@sysfs-reader: - {shard-tglb}: [INCOMPLETE][58] ([fdo#111832] / [fdo#111850]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb7/igt@i915_suspend@sysfs-reader.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb4/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding: - shard-apl: [FAIL][60] ([fdo#103232]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html - shard-kbl: [FAIL][62] ([fdo#103232]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-kbl: [DMESG-WARN][64] ([fdo#108566]) -> [PASS][65] +5 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][66] ([fdo#105363]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - {shard-tglb}: [INCOMPLETE][68] ([fdo#111832] / [fdo#111850] / [fdo#112031]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-glk: [FAIL][70] ([fdo#103167]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - {shard-tglb}: [FAIL][72] ([fdo#103167]) -> [PASS][73] +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][74] ([fdo#103167]) -> [PASS][75] +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane@pixel-format-pipe-b-planes: - shard-apl: [INCOMPLETE][76] ([fdo#103927]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-apl7/igt@kms_plane@pixel-format-pipe-b-planes.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-apl3/igt@kms_plane@pixel-format-pipe-b-planes.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [FAIL][78] ([fdo#103166]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][80] ([fdo#109441]) -> [PASS][81] +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][82] ([fdo#111329]) -> [SKIP][83] ([fdo#109276] / [fdo#112080]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [SKIP][84] ([fdo#109276]) -> [FAIL][85] ([fdo#111330]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7190/shard-iclb6/igt@gem_mocs_settings@mocs-reset-bsd2.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 [fdo#102250]: https://bugs.freedesktop.org/show_bug.cgi?id=102250 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111703]: https://bugs.freedesktop.org/show_bug.cgi?id=111703 [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735 [fdo#111747]: https://bugs.freedesktop.org/show_bug.cgi?id=111747 [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832 [fdo#111839 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111839 [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850 [fdo#111855]: https://bugs.freedesktop.org/show_bug.cgi?id=111855 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884 [fdo#112031]: https://bugs.freedesktop.org/show_bug.cgi?id=112031 [fdo#112067]: https://bugs.freedesktop.org/show_bug.cgi?id=112067 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112081]: https://bugs.freedesktop.org/show_bug.cgi?id=112081 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5242 -> IGTPW_3617 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7190: 070eb39193f77efb9ee1965ca99e0953c17e6116 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3617: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html IGT_5242: 15c11e2df77f769b5fa9ca5b40a94f266370a479 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3617/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-10-27 18:00 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-10-25 21:49 [igt-dev] [PATCH i-g-t] i915/pm_rps: Wait for the actual frequency to settle Chris Wilson 2019-10-25 21:49 ` [Intel-gfx] " Chris Wilson 2019-10-25 21:49 ` Chris Wilson 2019-10-25 23:19 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-10-26 17:40 ` [Intel-gfx] [PATCH i-g-t] " Andi Shyti 2019-10-26 17:40 ` Andi Shyti 2019-10-27 18:00 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.