* [PATCH] drm/i915/hangcheck: Track context changes @ 2019-05-01 8:33 Chris Wilson 2019-05-01 9:49 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-05-01 22:30 ` ✗ Fi.CI.IGT: failure " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Chris Wilson @ 2019-05-01 8:33 UTC (permalink / raw) To: intel-gfx Given sufficient preemption, we may see a busy system that doesn't advance seqno while performing work across multiple contexts, and given sufficient pathology not even notice a change in ACTHD. What does change between the preempting contexts is their RING, so take note of that and treat a change in the ring address as being an indication of forward progress. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com> --- drivers/gpu/drm/i915/gt/intel_engine_types.h | 1 + drivers/gpu/drm/i915/gt/intel_hangcheck.c | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_types.h b/drivers/gpu/drm/i915/gt/intel_engine_types.h index d972c339309c..3b8d2f692bd5 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_types.h +++ b/drivers/gpu/drm/i915/gt/intel_engine_types.h @@ -53,6 +53,7 @@ struct intel_instdone { struct intel_engine_hangcheck { u64 acthd; + u32 last_ring; u32 last_seqno; u32 next_seqno; unsigned long action_timestamp; diff --git a/drivers/gpu/drm/i915/gt/intel_hangcheck.c b/drivers/gpu/drm/i915/gt/intel_hangcheck.c index e5eaa06fe74d..721ab74a382f 100644 --- a/drivers/gpu/drm/i915/gt/intel_hangcheck.c +++ b/drivers/gpu/drm/i915/gt/intel_hangcheck.c @@ -27,6 +27,7 @@ struct hangcheck { u64 acthd; + u32 ring; u32 seqno; enum intel_engine_hangcheck_action action; unsigned long action_timestamp; @@ -134,6 +135,7 @@ static void hangcheck_load_sample(struct intel_engine_cs *engine, { hc->acthd = intel_engine_get_active_head(engine); hc->seqno = intel_engine_get_hangcheck_seqno(engine); + hc->ring = ENGINE_READ(engine, RING_START); } static void hangcheck_store_sample(struct intel_engine_cs *engine, @@ -141,18 +143,22 @@ static void hangcheck_store_sample(struct intel_engine_cs *engine, { engine->hangcheck.acthd = hc->acthd; engine->hangcheck.last_seqno = hc->seqno; + engine->hangcheck.last_ring = hc->ring; } static enum intel_engine_hangcheck_action hangcheck_get_action(struct intel_engine_cs *engine, const struct hangcheck *hc) { - if (engine->hangcheck.last_seqno != hc->seqno) - return ENGINE_ACTIVE_SEQNO; - if (intel_engine_is_idle(engine)) return ENGINE_IDLE; + if (engine->hangcheck.last_ring != hc->ring) + return ENGINE_ACTIVE_SEQNO; + + if (engine->hangcheck.last_seqno != hc->seqno) + return ENGINE_ACTIVE_SEQNO; + return engine_stuck(engine, hc->acthd); } -- 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/hangcheck: Track context changes 2019-05-01 8:33 [PATCH] drm/i915/hangcheck: Track context changes Chris Wilson @ 2019-05-01 9:49 ` Patchwork 2019-05-01 22:30 ` ✗ Fi.CI.IGT: failure " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-05-01 9:49 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx == Series Details == Series: drm/i915/hangcheck: Track context changes URL : https://patchwork.freedesktop.org/series/60143/ State : success == Summary == CI Bug Log - changes from CI_DRM_6020 -> Patchwork_12920 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/60143/revisions/1/mbox/ Known issues ------------ Here are the changes found in Patchwork_12920 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_hangcheck: - fi-skl-iommu: [PASS][1] -> [INCOMPLETE][2] ([fdo#108602] / [fdo#108744]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html - 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_12920/fi-icl-y/igt@i915_selftest@live_hangcheck.html * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence: - fi-glk-dsi: [PASS][5] -> [FAIL][6] ([fdo#103191]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-glk-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/fi-glk-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live_hangcheck: - fi-bsw-kefka: [INCOMPLETE][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/fi-bsw-kefka/igt@i915_selftest@live_hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/fi-bsw-kefka/igt@i915_selftest@live_hangcheck.html [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602 [fdo#108744]: https://bugs.freedesktop.org/show_bug.cgi?id=108744 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_12920 CI_DRM_6020: 087f11254b9a7a79156a88509afc4c1e2d640a7f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4971: fc5e0467eb6913d21ad932aa8a31c77fdb5a9c77 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12920: 0dc7a3940822a55060bd58878bdd5644e854c2a1 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 0dc7a3940822 drm/i915/hangcheck: Track context changes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/ _______________________________________________ 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/hangcheck: Track context changes 2019-05-01 8:33 [PATCH] drm/i915/hangcheck: Track context changes Chris Wilson 2019-05-01 9:49 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2019-05-01 22:30 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-05-01 22:30 UTC (permalink / raw) To: Chris Wilson; +Cc: intel-gfx == Series Details == Series: drm/i915/hangcheck: Track context changes URL : https://patchwork.freedesktop.org/series/60143/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6020_full -> Patchwork_12920_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_12920_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_12920_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_12920_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-64x21-sliding: - shard-skl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl4/igt@kms_cursor_crc@cursor-64x21-sliding.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl3/igt@kms_cursor_crc@cursor-64x21-sliding.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-skl: NOTRUN -> [INCOMPLETE][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html Known issues ------------ Here are the changes found in Patchwork_12920_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-rte: - shard-skl: [PASS][4] -> [INCOMPLETE][5] ([fdo#107807]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl7/igt@i915_pm_rpm@basic-rte.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl9/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@legacy-planes-dpms: - shard-iclb: [PASS][6] -> [INCOMPLETE][7] ([fdo#107713] / [fdo#108840] / [fdo#109960]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb2/igt@i915_pm_rpm@legacy-planes-dpms.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb3/igt@i915_pm_rpm@legacy-planes-dpms.html * igt@kms_flip@2x-flip-vs-dpms-interruptible: - shard-glk: [PASS][8] -> [INCOMPLETE][9] ([fdo#103359] / [k.org#198133]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-glk1/igt@kms_flip@2x-flip-vs-dpms-interruptible.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-glk4/igt@kms_flip@2x-flip-vs-dpms-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-kbl: [PASS][10] -> [DMESG-WARN][11] ([fdo#108566]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl1/igt@kms_flip@flip-vs-suspend.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-kbl1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@basic: - shard-iclb: [PASS][12] -> [FAIL][13] ([fdo#103167]) +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@kms_frontbuffer_tracking@basic.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-apl: [PASS][14] -> [DMESG-WARN][15] ([fdo#108566]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-apl5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-skl: [PASS][16] -> [INCOMPLETE][17] ([fdo#104108]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl9/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min: - shard-skl: [PASS][18] -> [FAIL][19] ([fdo#108145]) +1 similar issue [18]: 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 [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl5/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [PASS][20] -> [FAIL][21] ([fdo#103166]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-y.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][22] -> [SKIP][23] ([fdo#109441]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb7/igt@kms_psr@psr2_primary_page_flip.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-glk: [INCOMPLETE][24] ([fdo#103359] / [k.org#198133]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-glk4/igt@gem_eio@unwedge-stress.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-glk1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-iclb: [INCOMPLETE][26] ([fdo#107713]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_softpin@noreloc-s3: - shard-skl: [INCOMPLETE][28] ([fdo#104108] / [fdo#107773]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl3/igt@gem_softpin@noreloc-s3.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl9/igt@gem_softpin@noreloc-s3.html * igt@gem_workarounds@suspend-resume: - shard-kbl: [DMESG-WARN][30] ([fdo#108566]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl1/igt@gem_workarounds@suspend-resume.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-kbl1/igt@gem_workarounds@suspend-resume.html * igt@i915_suspend@debugfs-reader: - shard-apl: [DMESG-WARN][32] ([fdo#108566]) -> [PASS][33] +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-apl7/igt@i915_suspend@debugfs-reader.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-apl1/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@cursor-256x85-offscreen: - shard-skl: [INCOMPLETE][34] -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl6/igt@kms_cursor_crc@cursor-256x85-offscreen.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl5/igt@kms_cursor_crc@cursor-256x85-offscreen.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-skl: [FAIL][36] ([fdo#100368]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-skl5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-skl3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [FAIL][38] ([fdo#103167]) -> [PASS][39] +7 similar issues [38]: 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 [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr2_su@page_flip: - shard-iclb: [SKIP][40] ([fdo#109642]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb1/igt@kms_psr2_su@page_flip.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb2/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][42] ([fdo#109441]) -> [PASS][43] +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-iclb7/igt@kms_psr@psr2_no_drrs.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-iclb2/igt@kms_psr@psr2_no_drrs.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: [DMESG-FAIL][44] ([fdo#105763]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-kbl6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@perf_pmu@multi-client-vcs0: - shard-hsw: [INCOMPLETE][46] ([fdo#103540]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-hsw4/igt@perf_pmu@multi-client-vcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-hsw5/igt@perf_pmu@multi-client-vcs0.html * igt@perf_pmu@rc6: - shard-kbl: [SKIP][48] ([fdo#109271]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl5/igt@perf_pmu@rc6.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-kbl6/igt@perf_pmu@rc6.html * igt@perf_pmu@rc6-runtime-pm: - shard-kbl: [FAIL][50] ([fdo#105010]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6020/shard-kbl6/igt@perf_pmu@rc6-runtime-pm.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_12920/shard-kbl3/igt@perf_pmu@rc6-runtime-pm.html [fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [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#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773 [fdo#107807]: https://bugs.freedesktop.org/show_bug.cgi?id=107807 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#109960]: https://bugs.freedesktop.org/show_bug.cgi?id=109960 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Build changes ------------- * Linux: CI_DRM_6020 -> Patchwork_12920 CI_DRM_6020: 087f11254b9a7a79156a88509afc4c1e2d640a7f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_4971: fc5e0467eb6913d21ad932aa8a31c77fdb5a9c77 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_12920: 0dc7a3940822a55060bd58878bdd5644e854c2a1 @ 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_12920/ _______________________________________________ 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 22:30 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:33 [PATCH] drm/i915/hangcheck: Track context changes Chris Wilson 2019-05-01 9:49 ` ✓ Fi.CI.BAT: success for " Patchwork 2019-05-01 22:30 ` ✗ 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