* [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw()
@ 2019-08-22 20:04 Lyude Paul
2019-08-22 20:08 ` Lyude Paul
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Lyude Paul @ 2019-08-22 20:04 UTC (permalink / raw)
To: intel-gfx
Cc: Chris Wilson, stable, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
David Airlie, Daniel Vetter, dri-devel, linux-kernel
Currently, we don't call dma_set_max_seg_size() for i915 because we
intentionally do not limit the segment length that the device supports.
However, this results in a warning being emitted if we try to map
anything larger than SZ_64K on a kernel with CONFIG_DMA_API_DEBUG_SG
enabled:
[ 7.751926] DMA-API: i915 0000:00:02.0: mapping sg segment longer
than device claims to support [len=98304] [max=65536]
[ 7.751934] WARNING: CPU: 5 PID: 474 at kernel/dma/debug.c:1220
debug_dma_map_sg+0x20f/0x340
This was originally brought up on
https://bugs.freedesktop.org/show_bug.cgi?id=108517 , and the consensus
there was it wasn't really useful to set a limit (and that dma-debug
isn't really all that useful for i915 in the first place). Unfortunately
though, CONFIG_DMA_API_DEBUG_SG is enabled in the debug configs for
various distro kernels. Since a WARN_ON() will disable automatic problem
reporting (and cause any CI with said option enabled to start
complaining), we really should just fix the problem.
Note that as me and Chris Wilson discussed, the other solution for this
would be to make DMA-API not make such assumptions when a driver hasn't
explicitly set a maximum segment size. But, taking a look at the commit
which originally introduced this behavior, commit 78c47830a5cb
("dma-debug: check scatterlist segments"), there is an explicit mention
of this assumption and how it applies to devices with no segment size:
Conversely, devices which are less limited than the rather
conservative defaults, or indeed have no limitations at all
(e.g. GPUs with their own internal MMU), should be encouraged to
set appropriate dma_parms, as they may get more efficient DMA
mapping performance out of it.
So unless there's any concerns (I'm open to discussion!), let's just
follow suite and call dma_set_max_seg_size() with UINT_MAX as our limit
to silence any warnings.
Signed-off-by: Lyude Paul <lyude@redhat.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: <stable@vger.kernel.org> # v4.18+
---
drivers/gpu/drm/i915/i915_gem_gtt.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c
index 0b81e0b64393..a1475039d182 100644
--- a/drivers/gpu/drm/i915/i915_gem_gtt.c
+++ b/drivers/gpu/drm/i915/i915_gem_gtt.c
@@ -3152,6 +3152,11 @@ static int ggtt_probe_hw(struct i915_ggtt *ggtt, struct intel_gt *gt)
if (ret)
return ret;
+ /* We don't have a max segment size, so set it to the max so sg's
+ * debugging layer doesn't complain
+ */
+ dma_set_max_seg_size(ggtt->vm.dma, UINT_MAX);
+
if ((ggtt->vm.total - 1) >> 32) {
DRM_ERROR("We never expected a Global GTT with more than 32bits"
" of address space! Found %lldM!\n",
--
2.21.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() 2019-08-22 20:04 [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() Lyude Paul @ 2019-08-22 20:08 ` Lyude Paul 2019-08-22 20:38 ` Sasha Levin ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Lyude Paul @ 2019-08-22 20:08 UTC (permalink / raw) To: intel-gfx Cc: Chris Wilson, stable, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Daniel Vetter, dri-devel, linux-kernel ...whoops. Ignore this patch-Chris Wilson had requested that I send a patch along with this one to enable CONFIG_DMA_API_DEBUG_SG in CI, but I completely forgot to do that before sending. Will send out a reroll with that in just a moment On Thu, 2019-08-22 at 16:04 -0400, Lyude Paul wrote: > Currently, we don't call dma_set_max_seg_size() for i915 because we > intentionally do not limit the segment length that the device supports. > However, this results in a warning being emitted if we try to map > anything larger than SZ_64K on a kernel with CONFIG_DMA_API_DEBUG_SG > enabled: > > [ 7.751926] DMA-API: i915 0000:00:02.0: mapping sg segment longer > than device claims to support [len=98304] [max=65536] > [ 7.751934] WARNING: CPU: 5 PID: 474 at kernel/dma/debug.c:1220 > debug_dma_map_sg+0x20f/0x340 > > This was originally brought up on > https://bugs.freedesktop.org/show_bug.cgi?id=108517 , and the consensus > there was it wasn't really useful to set a limit (and that dma-debug > isn't really all that useful for i915 in the first place). Unfortunately > though, CONFIG_DMA_API_DEBUG_SG is enabled in the debug configs for > various distro kernels. Since a WARN_ON() will disable automatic problem > reporting (and cause any CI with said option enabled to start > complaining), we really should just fix the problem. > > Note that as me and Chris Wilson discussed, the other solution for this > would be to make DMA-API not make such assumptions when a driver hasn't > explicitly set a maximum segment size. But, taking a look at the commit > which originally introduced this behavior, commit 78c47830a5cb > ("dma-debug: check scatterlist segments"), there is an explicit mention > of this assumption and how it applies to devices with no segment size: > > Conversely, devices which are less limited than the rather > conservative defaults, or indeed have no limitations at all > (e.g. GPUs with their own internal MMU), should be encouraged to > set appropriate dma_parms, as they may get more efficient DMA > mapping performance out of it. > > So unless there's any concerns (I'm open to discussion!), let's just > follow suite and call dma_set_max_seg_size() with UINT_MAX as our limit > to silence any warnings. > > Signed-off-by: Lyude Paul <lyude@redhat.com> > Cc: Chris Wilson <chris@chris-wilson.co.uk> > Cc: <stable@vger.kernel.org> # v4.18+ > --- > drivers/gpu/drm/i915/i915_gem_gtt.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c > b/drivers/gpu/drm/i915/i915_gem_gtt.c > index 0b81e0b64393..a1475039d182 100644 > --- a/drivers/gpu/drm/i915/i915_gem_gtt.c > +++ b/drivers/gpu/drm/i915/i915_gem_gtt.c > @@ -3152,6 +3152,11 @@ static int ggtt_probe_hw(struct i915_ggtt *ggtt, > struct intel_gt *gt) > if (ret) > return ret; > > + /* We don't have a max segment size, so set it to the max so sg's > + * debugging layer doesn't complain > + */ > + dma_set_max_seg_size(ggtt->vm.dma, UINT_MAX); > + > if ((ggtt->vm.total - 1) >> 32) { > DRM_ERROR("We never expected a Global GTT with more than > 32bits" > " of address space! Found %lldM!\n", -- Cheers, Lyude Paul ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() 2019-08-22 20:04 [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() Lyude Paul 2019-08-22 20:08 ` Lyude Paul @ 2019-08-22 20:38 ` Sasha Levin 2019-08-22 20:51 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-08-23 14:42 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Sasha Levin @ 2019-08-22 20:38 UTC (permalink / raw) To: Sasha Levin, Lyude Paul, intel-gfx; +Cc: stable Hi, [This is an automated email] This commit has been processed because it contains a -stable tag. The stable tag indicates that it's relevant for the following trees: 4.18+ The bot has tested the following trees: v5.2.9, v4.19.67. v5.2.9: Failed to apply! Possible dependencies: Unable to calculate v4.19.67: Failed to apply! Possible dependencies: Unable to calculate NOTE: The patch will not be queued to stable trees until it is upstream. How should we proceed with this patch? -- Thanks, Sasha _______________________________________________ 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
* ✓ Fi.CI.BAT: success for drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() 2019-08-22 20:04 [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() Lyude Paul 2019-08-22 20:08 ` Lyude Paul 2019-08-22 20:38 ` Sasha Levin @ 2019-08-22 20:51 ` Patchwork 2019-08-23 14:42 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-08-22 20:51 UTC (permalink / raw) To: Lyude Paul; +Cc: intel-gfx == Series Details == Series: drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() URL : https://patchwork.freedesktop.org/series/65642/ State : success == Summary == CI Bug Log - changes from CI_DRM_6767 -> Patchwork_14147 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/ Known issues ------------ Here are the changes found in Patchwork_14147 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload: - fi-blb-e6850: [PASS][1] -> [INCOMPLETE][2] ([fdo#107718]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-blb-e6850/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-blb-e6850/igt@i915_module_load@reload.html * igt@kms_chamelium@dp-crc-fast: - fi-cml-u2: [PASS][3] -> [FAIL][4] ([fdo#110627]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html * igt@vgem_basic@second-client: - fi-icl-u3: [PASS][5] -> [DMESG-WARN][6] ([fdo#107724]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-icl-u3/igt@vgem_basic@second-client.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-icl-u3/igt@vgem_basic@second-client.html #### Possible fixes #### * igt@core_auth@basic-auth: - fi-icl-u3: [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-icl-u3/igt@core_auth@basic-auth.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-icl-u3/igt@core_auth@basic-auth.html * igt@gem_ctx_switch@legacy-render: - fi-bxt-dsi: [INCOMPLETE][9] ([fdo#103927]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-bxt-dsi/igt@gem_ctx_switch@legacy-render.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-bxt-dsi/igt@gem_ctx_switch@legacy-render.html #### Warnings #### * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][11] ([fdo#111407]) -> [FAIL][12] ([fdo#109483]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#110627]: https://bugs.freedesktop.org/show_bug.cgi?id=110627 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 Participating hosts (55 -> 48) ------------------------------ Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_6767 -> Patchwork_14147 CI-20190529: 20190529 CI_DRM_6767: 3e978f97d4682186cc9734adbe834865e5eb9aca @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5148: 50390dd7adaccae21cafa85b866c17606cec94c3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_14147: 14ddadf36749e31710c55c308659336d718425a4 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 14ddadf36749 drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/ _______________________________________________ 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
* ✓ Fi.CI.IGT: success for drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() 2019-08-22 20:04 [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() Lyude Paul ` (2 preceding siblings ...) 2019-08-22 20:51 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-23 14:42 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-08-23 14:42 UTC (permalink / raw) To: Lyude Paul; +Cc: intel-gfx == Series Details == Series: drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() URL : https://patchwork.freedesktop.org/series/65642/ State : success == Summary == CI Bug Log - changes from CI_DRM_6767_full -> Patchwork_14147_full ==================================================== Summary ------- **SUCCESS** No regressions found. Known issues ------------ Here are the changes found in Patchwork_14147_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#109276]) +16 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb2/igt@gem_exec_schedule@independent-bsd2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@wide-bsd: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +6 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb5/igt@gem_exec_schedule@wide-bsd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb2/igt@gem_exec_schedule@wide-bsd.html * igt@gem_tiled_swapping@non-threaded: - shard-apl: [PASS][5] -> [INCOMPLETE][6] ([fdo#103927] / [fdo#108686]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-apl5/igt@gem_tiled_swapping@non-threaded.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-apl6/igt@gem_tiled_swapping@non-threaded.html - shard-glk: [PASS][7] -> [INCOMPLETE][8] ([fdo#103359] / [fdo#108686] / [k.org#198133]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-glk6/igt@gem_tiled_swapping@non-threaded.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-glk3/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_backlight@fade_with_suspend: - shard-skl: [PASS][9] -> [INCOMPLETE][10] ([fdo#104108]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl8/igt@i915_pm_backlight@fade_with_suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl9/igt@i915_pm_backlight@fade_with_suspend.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][11] -> [DMESG-WARN][12] ([fdo#108566]) +6 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_busy@basic-modeset-a: - shard-apl: [PASS][13] -> [INCOMPLETE][14] ([fdo#103927]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-apl5/igt@kms_busy@basic-modeset-a.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-apl6/igt@kms_busy@basic-modeset-a.html * igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen: - shard-skl: [PASS][15] -> [FAIL][16] ([fdo#103232]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl5/igt@kms_cursor_crc@pipe-b-cursor-256x256-onscreen.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-skl: [PASS][17] -> [FAIL][18] ([fdo#105363]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [PASS][19] -> [INCOMPLETE][20] ([fdo#103359] / [k.org#198133]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-skl: [PASS][21] -> [INCOMPLETE][22] ([fdo#109507]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl2/igt@kms_flip@flip-vs-suspend-interruptible.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-skl: [PASS][23] -> [FAIL][24] ([fdo#103167]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-iclb: [PASS][25] -> [FAIL][26] ([fdo#103167]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-skl: [PASS][27] -> [FAIL][28] ([fdo#108040]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][29] -> [FAIL][30] ([fdo#108145]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_psr@psr2_suspend: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb2/igt@kms_psr@psr2_suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb6/igt@kms_psr@psr2_suspend.html #### Possible fixes #### * igt@gem_ctx_isolation@vcs0-s3: - shard-skl: [INCOMPLETE][33] ([fdo#104108]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl5/igt@gem_ctx_isolation@vcs0-s3.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl4/igt@gem_ctx_isolation@vcs0-s3.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][35] ([fdo#111325]) -> [PASS][36] +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb5/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_exec_schedule@promotion-bsd1: - shard-iclb: [SKIP][37] ([fdo#109276]) -> [PASS][38] +20 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb8/igt@gem_exec_schedule@promotion-bsd1.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][39] ([fdo#108566]) -> [PASS][40] +6 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-apl2/igt@gem_workarounds@suspend-resume-context.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-apl8/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [SKIP][41] ([fdo#109271]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-snb4/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [FAIL][43] ([fdo#105767]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-suspend: - shard-skl: [INCOMPLETE][45] ([fdo#109507]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl4/igt@kms_flip@flip-vs-suspend.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl3/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-iclb: [FAIL][47] ([fdo#103167]) -> [PASS][48] +8 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: - shard-skl: [FAIL][49] ([fdo#108145] / [fdo#110403]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html * igt@kms_plane_multiple@atomic-pipe-a-tiling-yf: - shard-skl: [DMESG-WARN][51] ([fdo#106885]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-skl6/igt@kms_plane_multiple@atomic-pipe-a-tiling-yf.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-skl3/igt@kms_plane_multiple@atomic-pipe-a-tiling-yf.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [SKIP][53] ([fdo#109441]) -> [PASS][54] +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_setmode@basic: - shard-kbl: [FAIL][55] ([fdo#99912]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-kbl2/igt@kms_setmode@basic.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-kbl3/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_mocs_settings@mocs-settings-bsd2: - shard-iclb: [FAIL][57] ([fdo#111330]) -> [SKIP][58] ([fdo#109276]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb2/igt@gem_mocs_settings@mocs-settings-bsd2.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb5/igt@gem_mocs_settings@mocs-settings-bsd2.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [DMESG-WARN][59] ([fdo#107724]) -> [SKIP][60] ([fdo#109349]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-iclb8/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_flip@flip-vs-suspend: - shard-snb: [INCOMPLETE][61] ([fdo#105411]) -> [DMESG-WARN][62] ([fdo#110684] / [fdo#111115]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6767/shard-snb1/igt@kms_flip@flip-vs-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14147/shard-snb6/igt@kms_flip@flip-vs-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#106885]: https://bugs.freedesktop.org/show_bug.cgi?id=106885 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108040]: https://bugs.freedesktop.org/show_bug.cgi?id=108040 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109507]: https://bugs.freedesktop.org/show_bug.cgi?id=109507 [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403 [fdo#110684]: https://bugs.freedesktop.org/show_bug.cgi?id=110684 [fdo#111115]: https://bugs.freedesktop.org/show_bug.cgi?id=111115 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111473 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111473 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * Linux: CI_DRM_6767 -> Patchwork_14147 CI-20190529: 20190529 CI_DRM_6767: 3e978f97d4682186cc9734adbe834865e5eb9aca @ git://anongit.freedesktop.org/gfx-ci/linux IGT_5148: 50390dd7adaccae21cafa85b866c17606cec94c3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_14147: 14ddadf36749e31710c55c308659336d718425a4 @ 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_14147/ _______________________________________________ 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:[~2019-08-23 14:42 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-22 20:04 [PATCH] drm/i915: Call dma_set_max_seg_size() in i915_ggtt_probe_hw() Lyude Paul 2019-08-22 20:08 ` Lyude Paul 2019-08-22 20:38 ` Sasha Levin 2019-08-22 20:51 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-08-23 14:42 ` ✓ 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