* [PATCH] drm/i915: Complete both freed-object passes before draining the workqueue @ 2019-05-01 8:13 Chris Wilson 2019-05-01 8:58 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-05-01 21:59 ` ✗ Fi.CI.IGT: failure " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Chris Wilson @ 2019-05-01 8:13 UTC (permalink / raw) To: intel-gfx The workqueue code complains viciously if we try to queue more work onto the queue while attampting to drain it. As we asynchronously free objects and defer their enqueuing with RCU, it is quite tricky to quiesce the system before attempting to drain the workqueue. Yet drain we must to ensure that the worker is idle before unloading the module. Give the freed object drain 3 whole passes with multiple rcu_barrier() to give the defer freeing of several levels each protected by RCU and needing a grace period before its parent can be freed, ultimately resulting in a GEM object being freed after another RCU period. A consequence is that it will make module unload even slower. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110550 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> --- drivers/gpu/drm/i915/i915_drv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 886a30243fe3..54258cb8ccee 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -2829,15 +2829,15 @@ static inline void i915_gem_drain_workqueue(struct drm_i915_private *i915) * grace period so that we catch work queued via RCU from the first * pass. As neither drain_workqueue() nor flush_workqueue() report * a result, we make an assumption that we only don't require more - * than 2 passes to catch all recursive RCU delayed work. + * than 3 passes to catch all _recursive_ RCU delayed work. * */ - int pass = 2; + int pass = 3; do { rcu_barrier(); i915_gem_drain_freed_objects(i915); - drain_workqueue(i915->wq); } while (--pass); + drain_workqueue(i915->wq); } struct i915_vma * __must_check -- 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] 3+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: Complete both freed-object passes before draining the workqueue 2019-05-01 8:13 [PATCH] drm/i915: Complete both freed-object passes before draining the workqueue Chris Wilson @ 2019-05-01 8:58 ` Patchwork 2019-05-01 21:59 ` ✗ Fi.CI.IGT: failure " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-05-01 8:58 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx == Series Details == Series: drm/i915: Complete both freed-object passes before draining the workqueue URL : https://patchwork.freedesktop.org/series/60142/ State : success == Summary == CI Bug Log - changes from CI_DRM_6020 -> Patchwork_12919 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/60142/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_12919: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_basic@gtt-render: - {fi-cml-u2}: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-cml-u2/igt@gem_exec_basic@gtt-render.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/fi-cml-u2/igt@gem_exec_basic@gtt-render.html Known issues ------------ Here are the changes found in Patchwork_12919 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_hangcheck: - fi-icl-y: [PASS][3] -> [INCOMPLETE][4] ([fdo#107713] / [fdo#108569]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-icl-y/igt@i915_selftest@live_hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/fi-icl-y/igt@i915_selftest@live_hangcheck.html #### Possible fixes #### * igt@i915_selftest@live_hangcheck: - fi-bsw-kefka: [INCOMPLETE][5] -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-bsw-kefka/igt@i915_selftest@live_hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/fi-bsw-kefka/igt@i915_selftest@live_hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 Participating hosts (53 -> 46) ------------------------------ Additional (1): fi-pnv-d510 Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * Linux: CI_DRM_6020 -> Patchwork_12919 CI_DRM_6020: 087f11254b9a7a79156a88509afc4c1e2d640a7f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4971: fc5e0467eb6913d21ad932aa8a31c77fdb5a9c77 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12919: c1388d9bba25cb0ed241fceda3a627cd4a8eccd3 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == c1388d9bba25 drm/i915: Complete both freed-object passes before draining the workqueue == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 3+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: Complete both freed-object passes before draining the workqueue 2019-05-01 8:13 [PATCH] drm/i915: Complete both freed-object passes before draining the workqueue Chris Wilson 2019-05-01 8:58 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-05-01 21:59 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-05-01 21:59 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx == Series Details == Series: drm/i915: Complete both freed-object passes before draining the workqueue URL : https://patchwork.freedesktop.org/series/60142/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6020_full -> Patchwork_12919_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_12919_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_12919_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_12919_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@preempt-hang-vebox: - shard-skl: NOTRUN -> [INCOMPLETE][1] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl8/igt@gem_exec_schedule@preempt-hang-vebox.html * igt@gem_softpin@softpin: - shard-skl: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl2/igt@gem_softpin@softpin.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl6/igt@gem_softpin@softpin.html #### Warnings #### * igt@gem_tiled_blits@normal: - shard-skl: [SKIP][4] ([fdo#109271]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl10/igt@gem_tiled_blits@normal.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl9/igt@gem_tiled_blits@normal.html ### Piglit changes ### #### Possible regressions #### * spec@glsl-1.30@execution@tex-miplevel-selection texturelod 2darray (NEW): - pig-snb-2600: NOTRUN -> [FAIL][6] [6]: None New tests --------- New tests have been introduced between CI_DRM_6020_full and Patchwork_12919_full: ### New Piglit tests (1) ### * spec@glsl-1.30@execution@tex-miplevel-selection texturelod 2darray: - Statuses : 1 fail(s) - Exec time: [7.00] s Known issues ------------ Here are the changes found in Patchwork_12919_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][7] -> [DMESG-WARN][8] ([fdo#108566]) +4 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl7/igt@gem_workarounds@suspend-resume.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-apl1/igt@gem_workarounds@suspend-resume.html * igt@kms_cursor_crc@cursor-256x256-suspend: - shard-skl: [PASS][9] -> [INCOMPLETE][10] ([fdo#104108]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl7/igt@kms_cursor_crc@cursor-256x256-suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl7/igt@kms_cursor_crc@cursor-256x256-suspend.html * igt@kms_cursor_edge_walk@pipe-c-64x64-top-edge: - shard-iclb: [PASS][11] -> [INCOMPLETE][12] ([fdo#107713]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb6/igt@kms_cursor_edge_walk@pipe-c-64x64-top-edge.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb8/igt@kms_cursor_edge_walk@pipe-c-64x64-top-edge.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-hsw: [PASS][13] -> [FAIL][14] ([fdo#105767]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_flip@flip-vs-expired-vblank: - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#102887] / [fdo#105363]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl7/igt@kms_flip@flip-vs-expired-vblank.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl3/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][17] -> [FAIL][18] ([fdo#105363]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][19] -> [INCOMPLETE][20] ([fdo#103540]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-hsw6/igt@kms_flip@flip-vs-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103167]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-stridechange.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][23] -> [FAIL][24] ([fdo#108145]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl3/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl3/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb5/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@suspend: - shard-skl: [PASS][27] -> [INCOMPLETE][28] ([fdo#107773]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl1/igt@kms_psr@suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl7/igt@kms_psr@suspend.html * igt@kms_setmode@basic: - shard-apl: [PASS][29] -> [FAIL][30] ([fdo#99912]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl4/igt@kms_setmode@basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-apl3/igt@kms_setmode@basic.html - shard-kbl: [PASS][31] -> [FAIL][32] ([fdo#99912]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl4/igt@kms_setmode@basic.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl1/igt@kms_setmode@basic.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-glk: [INCOMPLETE][33] ([fdo#103359] / [k.org#198133]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-glk4/igt@gem_eio@unwedge-stress.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-glk5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-iclb: [INCOMPLETE][35] ([fdo#107713]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb1/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_fence_thrash@bo-write-verify-threaded-x: - shard-skl: [INCOMPLETE][37] -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl7/igt@gem_fence_thrash@bo-write-verify-threaded-x.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl8/igt@gem_fence_thrash@bo-write-verify-threaded-x.html * igt@gem_softpin@noreloc-s3: - shard-skl: [INCOMPLETE][39] ([fdo#104108] / [fdo#107773]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl3/igt@gem_softpin@noreloc-s3.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl8/igt@gem_softpin@noreloc-s3.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [DMESG-WARN][41] ([fdo#108566]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl1/igt@gem_workarounds@suspend-resume.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl5/igt@gem_workarounds@suspend-resume.html * igt@i915_suspend@forcewake: - shard-apl: [DMESG-WARN][43] ([fdo#108566]) -> [PASS][44] +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl2/igt@i915_suspend@forcewake.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-apl3/igt@i915_suspend@forcewake.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_6020/shard-skl4/igt@kms_flip@flip-vs-suspend.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-skl: [FAIL][47] ([fdo#100368]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-skl2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [FAIL][49] ([fdo#103167]) -> [PASS][50] +7 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-glk: [SKIP][51] ([fdo#109271]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-glk8/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-glk9/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][53] ([fdo#109441]) -> [PASS][54] +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@kms_psr@psr2_cursor_plane_onoff.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: [DMESG-FAIL][55] ([fdo#105763]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@perf_pmu@rc6: - shard-kbl: [SKIP][57] ([fdo#109271]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl5/igt@perf_pmu@rc6.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl7/igt@perf_pmu@rc6.html * igt@perf_pmu@rc6-runtime-pm: - shard-kbl: [FAIL][59] ([fdo#105010]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl6/igt@perf_pmu@rc6-runtime-pm.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-kbl2/igt@perf_pmu@rc6-runtime-pm.html #### Warnings #### * igt@gem_exec_schedule@fifo-bsd2: - shard-apl: [SKIP][61] ([fdo#109271]) -> [INCOMPLETE][62] ([fdo#103927]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl2/igt@gem_exec_schedule@fifo-bsd2.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12919/shard-apl7/igt@gem_exec_schedule@fifo-bsd2.html [fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368 [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [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#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109507]: https://bugs.freedesktop.org/show_bug.cgi?id=109507 [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 (10 -> 11) ------------------------------ Additional (1): pig-snb-2600 Build changes ------------- * Linux: CI_DRM_6020 -> Patchwork_12919 CI_DRM_6020: 087f11254b9a7a79156a88509afc4c1e2d640a7f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4971: fc5e0467eb6913d21ad932aa8a31c77fdb5a9c77 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12919: c1388d9bba25cb0ed241fceda3a627cd4a8eccd3 @ 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_12919/ _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-05-01 21:59 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-05-01 8:13 [PATCH] drm/i915: Complete both freed-object passes before draining the workqueue Chris Wilson 2019-05-01 8:58 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-05-01 21:59 ` ✗ 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