* [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment @ 2020-12-07 13:02 Chris Wilson 2020-12-07 13:03 ` Chris Wilson ` (2 more replies) 0 siblings, 3 replies; 5+ messages in thread From: Chris Wilson @ 2020-12-07 13:02 UTC (permalink / raw) To: intel-gfx; +Cc: Matthew Auld, Chris Wilson When we fail to find a single block large enough to require splitting, report the largest block we did find. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Matthew Auld <matthew.auld@intel.com> Cc: Ramalingam C <ramalingam.c@intel.com> --- .../gpu/drm/i915/selftests/intel_memory_region.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/drm/i915/selftests/intel_memory_region.c b/drivers/gpu/drm/i915/selftests/intel_memory_region.c index a0b518c255de..b03c2adfcf27 100644 --- a/drivers/gpu/drm/i915/selftests/intel_memory_region.c +++ b/drivers/gpu/drm/i915/selftests/intel_memory_region.c @@ -384,16 +384,15 @@ static int igt_mock_max_segment(void *arg) goto out_put; } - err = -EINVAL; + size = 0; list_for_each_entry(block, &obj->mm.blocks, link) { - if (i915_buddy_block_size(&mem->mm, block) > max_segment) { - err = 0; - break; - } + if (i915_buddy_block_size(&mem->mm, block) > size) + size = i915_buddy_block_size(&mem->mm, block); } - if (err) { - pr_err("%s: Failed to create a huge contiguous block\n", - __func__); + if (size < max_segment) { + pr_err("%s: Failed to create a huge contiguous block, largest block %lld\n", + __func__, size); + err = -EINVAL; goto out_close; } -- 2.20.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment 2020-12-07 13:02 [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment Chris Wilson @ 2020-12-07 13:03 ` Chris Wilson 2020-12-07 13:58 ` Ramalingam C 2020-12-07 15:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) Patchwork 2020-12-07 17:21 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Chris Wilson @ 2020-12-07 13:03 UTC (permalink / raw) To: intel-gfx; +Cc: Matthew Auld, Chris Wilson When we fail to find a single block large enough to require splitting, report the largest block we did find. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Matthew Auld <matthew.auld@intel.com> Cc: Ramalingam C <ramalingam.c@intel.com> --- .../gpu/drm/i915/selftests/intel_memory_region.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/drivers/gpu/drm/i915/selftests/intel_memory_region.c b/drivers/gpu/drm/i915/selftests/intel_memory_region.c index a0b518c255de..a55079a061dd 100644 --- a/drivers/gpu/drm/i915/selftests/intel_memory_region.c +++ b/drivers/gpu/drm/i915/selftests/intel_memory_region.c @@ -384,16 +384,15 @@ static int igt_mock_max_segment(void *arg) goto out_put; } - err = -EINVAL; + size = 0; list_for_each_entry(block, &obj->mm.blocks, link) { - if (i915_buddy_block_size(&mem->mm, block) > max_segment) { - err = 0; - break; - } + if (i915_buddy_block_size(&mem->mm, block) > size) + size = i915_buddy_block_size(&mem->mm, block); } - if (err) { - pr_err("%s: Failed to create a huge contiguous block\n", - __func__); + if (size < max_segment) { + pr_err("%s: Failed to create a huge contiguous block [> %u], largest block %lld\n", + __func__, max_segment, size); + err = -EINVAL; goto out_close; } -- 2.20.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment 2020-12-07 13:03 ` Chris Wilson @ 2020-12-07 13:58 ` Ramalingam C 0 siblings, 0 replies; 5+ messages in thread From: Ramalingam C @ 2020-12-07 13:58 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx, Matthew Auld On 2020-12-07 at 13:03:46 +0000, Chris Wilson wrote: > When we fail to find a single block large enough to require splitting, > report the largest block we did find. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Ramalingam C <ramalingam.c@intel.com> > --- > .../gpu/drm/i915/selftests/intel_memory_region.c | 15 +++++++-------- > 1 file changed, 7 insertions(+), 8 deletions(-) > > diff --git a/drivers/gpu/drm/i915/selftests/intel_memory_region.c b/drivers/gpu/drm/i915/selftests/intel_memory_region.c > index a0b518c255de..a55079a061dd 100644 > --- a/drivers/gpu/drm/i915/selftests/intel_memory_region.c > +++ b/drivers/gpu/drm/i915/selftests/intel_memory_region.c > @@ -384,16 +384,15 @@ static int igt_mock_max_segment(void *arg) > goto out_put; > } > > - err = -EINVAL; > + size = 0; > list_for_each_entry(block, &obj->mm.blocks, link) { > - if (i915_buddy_block_size(&mem->mm, block) > max_segment) { > - err = 0; > - break; > - } > + if (i915_buddy_block_size(&mem->mm, block) > size) > + size = i915_buddy_block_size(&mem->mm, block); > } > - if (err) { > - pr_err("%s: Failed to create a huge contiguous block\n", > - __func__); > + if (size < max_segment) { > + pr_err("%s: Failed to create a huge contiguous block [> %u], largest block %lld\n", > + __func__, max_segment, size); > + err = -EINVAL; Reviewed-by: Ramalingam C <ramalingam.c@intel.com> > goto out_close; > } > > -- > 2.20.1 > _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) 2020-12-07 13:02 [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment Chris Wilson 2020-12-07 13:03 ` Chris Wilson @ 2020-12-07 15:00 ` Patchwork 2020-12-07 17:21 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-12-07 15:00 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 2884 bytes --] == Series Details == Series: drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) URL : https://patchwork.freedesktop.org/series/84641/ State : success == Summary == CI Bug Log - changes from CI_DRM_9453 -> Patchwork_19075 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_19075: ### CI changes ### #### Possible regressions #### * boot (NEW): - {fi-dg1-1}: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/fi-dg1-1/boot.html New tests --------- New tests have been introduced between CI_DRM_9453 and Patchwork_19075: ### New CI tests (1) ### * boot: - Statuses : 1 fail(s) 39 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_19075 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@prime_self_import@basic-with_two_bos: - fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#402]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/fi-tgl-y/igt@prime_self_import@basic-with_two_bos.html #### Possible fixes #### * igt@i915_hangman@error-state-basic: - fi-tgl-y: [DMESG-WARN][4] ([i915#402]) -> [PASS][5] +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/fi-tgl-y/igt@i915_hangman@error-state-basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/fi-tgl-y/igt@i915_hangman@error-state-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (44 -> 40) ------------------------------ Additional (1): fi-dg1-1 Missing (5): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * Linux: CI_DRM_9453 -> Patchwork_19075 CI-20190529: 20190529 CI_DRM_9453: 52e2ca46b7e2aa62c0509bce0be189d2f5a7325f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5883: 02244f60c98b4e4106b1099ade3439b159ac848e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_19075: ce3956bde786d896f93a805cd80ea0d5f06b983f @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == ce3956bde786 drm/i915/selftests: Improve error reporting for igt_mock_max_segment == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/index.html [-- Attachment #1.2: Type: text/html, Size: 3636 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) 2020-12-07 13:02 [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment Chris Wilson 2020-12-07 13:03 ` Chris Wilson 2020-12-07 15:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) Patchwork @ 2020-12-07 17:21 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-12-07 17:21 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 15588 bytes --] == Series Details == Series: drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) URL : https://patchwork.freedesktop.org/series/84641/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9453_full -> Patchwork_19075_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_19075_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_19075_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_19075_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-c: - shard-skl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl5/igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-c.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl7/igt@kms_flip_tiling@flip-yf-tiled@edp-1-pipe-c.html New tests --------- New tests have been introduced between CI_DRM_9453_full and Patchwork_19075_full: ### New CI tests (1) ### * boot: - Statuses : 200 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_19075_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][3] -> [INCOMPLETE][4] ([i915#1436]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-glk7/igt@gen9_exec_parse@allowed-all.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@kms_color@pipe-a-ctm-0-5: - shard-skl: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl1/igt@kms_color@pipe-a-ctm-0-5.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl1/igt@kms_color@pipe-a-ctm-0-5.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-random: - shard-skl: [PASS][7] -> [FAIL][8] ([i915#54]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-skl: [PASS][9] -> [FAIL][10] ([i915#2122]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: - shard-skl: [PASS][11] -> [FAIL][12] ([fdo#108145] / [i915#265]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109642] / [fdo#111068]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb2/igt@kms_psr2_su@page_flip.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb6/igt@kms_psr2_su@page_flip.html * igt@sysfs_heartbeat_interval@mixed@bcs0: - shard-kbl: [PASS][15] -> [INCOMPLETE][16] ([i915#1731]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-kbl3/igt@sysfs_heartbeat_interval@mixed@bcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-kbl3/igt@sysfs_heartbeat_interval@mixed@bcs0.html #### Possible fixes #### * igt@gem_workarounds@suspend-resume-context: - shard-apl: [INCOMPLETE][17] ([i915#2295]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-apl4/igt@gem_workarounds@suspend-resume-context.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-apl4/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-skl: [DMESG-WARN][19] ([i915#1436] / [i915#716]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl4/igt@gen9_exec_parse@allowed-single.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_selftest@live@gt_heartbeat: - shard-skl: [DMESG-FAIL][21] ([i915#2291] / [i915#541]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl9/igt@i915_selftest@live@gt_heartbeat.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl10/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-skl: [FAIL][23] ([i915#54]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl3/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl9/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-hsw: [FAIL][25] ([i915#96]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [FAIL][27] ([i915#2346] / [i915#533]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][29] ([i915#2122]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-tglb: [FAIL][31] ([i915#2598]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-tglb3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-tglb3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-skl: [FAIL][33] ([i915#79]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl9/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-iclb: [INCOMPLETE][35] ([i915#1373]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb3/igt@kms_flip@flip-vs-suspend@b-edp1.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb8/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-skl: [FAIL][37] ([i915#49]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-skl: [FAIL][39] ([fdo#108145] / [i915#265]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][41] ([fdo#109441]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb8/igt@kms_psr@psr2_cursor_render.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-skl: [INCOMPLETE][43] ([i915#146] / [i915#198]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl10/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_suspend@basic-s0: - shard-tglb: [DMESG-WARN][45] ([i915#1436] / [i915#1602] / [i915#1887] / [i915#2411]) -> [INCOMPLETE][46] ([i915#1602] / [i915#2411] / [i915#456]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-tglb7/igt@gem_exec_suspend@basic-s0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-tglb3/igt@gem_exec_suspend@basic-s0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][47] ([i915#2684]) -> [WARN][48] ([i915#2681] / [i915#2684]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb2/igt@i915_pm_rc6_residency@rc6-fence.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][49] ([i915#1226]) -> [SKIP][50] ([fdo#109349]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@runner@aborted: - shard-kbl: [FAIL][51] ([i915#2295] / [i915#2722]) -> [FAIL][52] ([i915#2295] / [i915#2722] / [i915#483]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-kbl7/igt@runner@aborted.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-kbl6/igt@runner@aborted.html - shard-iclb: [FAIL][53] ([i915#2295] / [i915#2722]) -> [FAIL][54] ([i915#2295] / [i915#2722] / [i915#483]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-iclb3/igt@runner@aborted.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-iclb1/igt@runner@aborted.html - shard-glk: ([FAIL][55], [FAIL][56]) ([i915#2295] / [i915#2722] / [k.org#202321]) -> ([FAIL][57], [FAIL][58], [FAIL][59]) ([i915#2295] / [i915#2722] / [i915#483] / [k.org#202321]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-glk6/igt@runner@aborted.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-glk7/igt@runner@aborted.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-glk2/igt@runner@aborted.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-glk3/igt@runner@aborted.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-glk3/igt@runner@aborted.html - shard-skl: ([FAIL][60], [FAIL][61], [FAIL][62]) ([i915#1436] / [i915#2029] / [i915#2295] / [i915#2722] / [i915#483]) -> [FAIL][63] ([i915#2295] / [i915#2722] / [i915#483]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl3/igt@runner@aborted.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl4/igt@runner@aborted.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9453/shard-skl3/igt@runner@aborted.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/shard-skl9/igt@runner@aborted.html [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226 [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887 [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Build changes ------------- * Linux: CI_DRM_9453 -> Patchwork_19075 CI-20190529: 20190529 CI_DRM_9453: 52e2ca46b7e2aa62c0509bce0be189d2f5a7325f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5883: 02244f60c98b4e4106b1099ade3439b159ac848e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_19075: ce3956bde786d896f93a805cd80ea0d5f06b983f @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_19075/index.html [-- Attachment #1.2: Type: text/html, Size: 19069 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-12-07 17:21 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-12-07 13:02 [Intel-gfx] [PATCH] drm/i915/selftests: Improve error reporting for igt_mock_max_segment Chris Wilson 2020-12-07 13:03 ` Chris Wilson 2020-12-07 13:58 ` Ramalingam C 2020-12-07 15:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/selftests: Improve error reporting for igt_mock_max_segment (rev2) Patchwork 2020-12-07 17:21 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).