* [igt-dev] [PATCH i-g-t] i915/gem_exec_schedule: Limit the plug to fit small rings @ 2019-08-13 6:19 Chris Wilson 2019-08-13 7:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-13 13:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Chris Wilson @ 2019-08-13 6:19 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev If we are not running with a scheduler, we are using a global ringbuffer which may not accommodate 16 extra batches. Fortunately, we only need one such batch to block the submission queue as without a scheduler, it is in order submission (and so the batch is after the main setup anyway!). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> --- tests/i915/gem_exec_schedule.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/i915/gem_exec_schedule.c b/tests/i915/gem_exec_schedule.c index 6e8466299..058102103 100644 --- a/tests/i915/gem_exec_schedule.c +++ b/tests/i915/gem_exec_schedule.c @@ -164,8 +164,13 @@ static uint32_t create_highest_priority(int fd) static void unplug_show_queue(int fd, struct igt_cork *c, unsigned int engine) { igt_spin_t *spin[MAX_ELSP_QLEN]; + int max = MAX_ELSP_QLEN; - for (int n = 0; n < ARRAY_SIZE(spin); n++) { + /* If no scheduler, all batches are emitted in submission order */ + if (!gem_scheduler_enabled(fd)) + max = 1; + + for (int n = 0; n < max; n++) { const struct igt_spin_factory opts = { .ctx = create_highest_priority(fd), .engine = engine, @@ -177,7 +182,7 @@ static void unplug_show_queue(int fd, struct igt_cork *c, unsigned int engine) igt_cork_unplug(c); /* batches will now be queued on the engine */ igt_debugfs_dump(fd, "i915_engine_info"); - for (int n = 0; n < ARRAY_SIZE(spin); n++) + for (int n = 0; n < max; n++) igt_spin_free(fd, spin[n]); } -- 2.23.0.rc1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_exec_schedule: Limit the plug to fit small rings 2019-08-13 6:19 [igt-dev] [PATCH i-g-t] i915/gem_exec_schedule: Limit the plug to fit small rings Chris Wilson @ 2019-08-13 7:01 ` Patchwork 2019-08-13 13:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-08-13 7:01 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_schedule: Limit the plug to fit small rings URL : https://patchwork.freedesktop.org/series/65108/ State : success == Summary == CI Bug Log - changes from CI_DRM_6690 -> IGTPW_3336 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65108/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3336 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@read_all_entries: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/fi-icl-u3/igt@debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/fi-icl-u3/igt@debugfs_test@read_all_entries.html * igt@i915_selftest@live_requests: - fi-byt-j1900: [PASS][3] -> [INCOMPLETE][4] ([fdo#102657]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/fi-byt-j1900/igt@i915_selftest@live_requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/fi-byt-j1900/igt@i915_selftest@live_requests.html * igt@kms_chamelium@dp-crc-fast: - fi-cml-u2: [PASS][5] -> [FAIL][6] ([fdo#110627]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: [PASS][7] -> [DMESG-WARN][8] ([fdo#102614]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices: - fi-blb-e6850: [INCOMPLETE][9] ([fdo#107718]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#102657]: https://bugs.freedesktop.org/show_bug.cgi?id=102657 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#110627]: https://bugs.freedesktop.org/show_bug.cgi?id=110627 [fdo#111144]: https://bugs.freedesktop.org/show_bug.cgi?id=111144 Participating hosts (54 -> 45) ------------------------------ Missing (9): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-apl-guc fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5129 -> IGTPW_3336 CI-20190529: 20190529 CI_DRM_6690: cf72e4ec99679a4a65fbb94341e3b6033a76483b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3336: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/ IGT_5129: 06d5765ab2daba9f8826a36ce99eb95b58d4ccf4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_exec_schedule: Limit the plug to fit small rings 2019-08-13 6:19 [igt-dev] [PATCH i-g-t] i915/gem_exec_schedule: Limit the plug to fit small rings Chris Wilson 2019-08-13 7:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-13 13:34 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-08-13 13:34 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_schedule: Limit the plug to fit small rings URL : https://patchwork.freedesktop.org/series/65108/ State : success == Summary == CI Bug Log - changes from CI_DRM_6690_full -> IGTPW_3336_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65108/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3336_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_clone@engines: - shard-iclb: [PASS][1] -> [INCOMPLETE][2] ([fdo#107713]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb6/igt@gem_ctx_clone@engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb4/igt@gem_ctx_clone@engines.html * igt@gem_exec_schedule@deep-bsd: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +6 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb3/igt@gem_exec_schedule@deep-bsd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb2/igt@gem_exec_schedule@deep-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +17 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb3/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@i915_pm_rpm@i2c: - shard-hsw: [PASS][7] -> [FAIL][8] ([fdo#104097]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-hsw2/igt@i915_pm_rpm@i2c.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-hsw5/igt@i915_pm_rpm@i2c.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl6/igt@i915_suspend@fence-restore-untiled.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl2/igt@i915_suspend@fence-restore-untiled.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][11] -> [FAIL][12] ([fdo#105363]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-iclb: [PASS][13] -> [FAIL][14] ([fdo#103167]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#103167]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103167]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_psr@no_drrs: - shard-iclb: [PASS][19] -> [FAIL][20] ([fdo#108341]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb8/igt@kms_psr@no_drrs.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb1/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [PASS][21] -> [SKIP][22] ([fdo#109441]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_setmode@basic: - shard-apl: [PASS][23] -> [FAIL][24] ([fdo#99912]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl2/igt@kms_setmode@basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl2/igt@kms_setmode@basic.html * igt@perf_pmu@rc6-runtime-pm: - shard-apl: [PASS][25] -> [FAIL][26] ([fdo#105010]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl8/igt@perf_pmu@rc6-runtime-pm.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl2/igt@perf_pmu@rc6-runtime-pm.html #### Possible fixes #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [SKIP][27] ([fdo#110841]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_ctx_switch@legacy-blt-heavy-queue: - shard-apl: [INCOMPLETE][29] ([fdo#103927]) -> [PASS][30] +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl7/igt@gem_ctx_switch@legacy-blt-heavy-queue.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl6/igt@gem_ctx_switch@legacy-blt-heavy-queue.html * igt@gem_exec_async@concurrent-writes-bsd: - shard-iclb: [SKIP][31] ([fdo#111325]) -> [PASS][32] +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb4/igt@gem_exec_async@concurrent-writes-bsd.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb7/igt@gem_exec_async@concurrent-writes-bsd.html * igt@gem_exec_reuse@single: - shard-hsw: [INCOMPLETE][33] ([fdo#103540]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-hsw5/igt@gem_exec_reuse@single.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-hsw4/igt@gem_exec_reuse@single.html * igt@kms_cursor_crc@pipe-a-cursor-dpms: - shard-kbl: [DMESG-WARN][35] ([fdo#111390]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-dpms.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-dpms.html * igt@kms_cursor_crc@pipe-b-cursor-128x128-onscreen: - shard-kbl: [FAIL][37] ([fdo#103232]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-128x128-onscreen.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-128x128-onscreen.html * igt@kms_cursor_legacy@pipe-c-forked-move: - shard-iclb: [INCOMPLETE][39] ([fdo#107713]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb7/igt@kms_cursor_legacy@pipe-c-forked-move.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb3/igt@kms_cursor_legacy@pipe-c-forked-move.html * igt@kms_flip@plain-flip-ts-check: - shard-glk: [FAIL][41] ([fdo#100368]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-glk6/igt@kms_flip@plain-flip-ts-check.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-glk9/igt@kms_flip@plain-flip-ts-check.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][43] ([fdo#103167]) -> [PASS][44] +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [DMESG-WARN][45] ([fdo#108566]) -> [PASS][46] +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][47] ([fdo#109441]) -> [PASS][48] +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb4/igt@kms_psr@psr2_primary_mmap_cpu.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@prime_busy@hang-bsd2: - shard-iclb: [SKIP][49] ([fdo#109276]) -> [PASS][50] +14 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb3/igt@prime_busy@hang-bsd2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb1/igt@prime_busy@hang-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][51] ([fdo#109276]) -> [FAIL][52] ([fdo#111329]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [FAIL][53] ([fdo#111330]) -> [SKIP][54] ([fdo#109276]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6690/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/shard-iclb7/igt@gem_mocs_settings@mocs-reset-bsd2.html [fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104097]: https://bugs.freedesktop.org/show_bug.cgi?id=104097 [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111390]: https://bugs.freedesktop.org/show_bug.cgi?id=111390 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5129 -> IGTPW_3336 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6690: cf72e4ec99679a4a65fbb94341e3b6033a76483b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3336: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/ IGT_5129: 06d5765ab2daba9f8826a36ce99eb95b58d4ccf4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3336/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-13 13:34 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-13 6:19 [igt-dev] [PATCH i-g-t] i915/gem_exec_schedule: Limit the plug to fit small rings Chris Wilson 2019-08-13 7:01 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-13 13:34 ` [igt-dev] ✓ 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