* [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context
@ 2020-02-05 11:59 Chris Wilson
2020-02-05 12:13 ` [igt-dev] " Tvrtko Ursulin
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2020-02-05 11:59 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx
We want to iterate the set of physical engines on this context, so
update the iterators to act on a particular context.
This tunnel keeps on getting longer.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
lib/i915/gem_engine_topology.h | 7 +++++--
tests/i915/gem_ctx_exec.c | 2 +-
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/lib/i915/gem_engine_topology.h b/lib/i915/gem_engine_topology.h
index e40d7ec83..027d86be2 100644
--- a/lib/i915/gem_engine_topology.h
+++ b/lib/i915/gem_engine_topology.h
@@ -67,9 +67,12 @@ struct intel_execution_engine2 gem_eb_flags_to_engine(unsigned int flags);
intel_next_engine(&i__))
/* needs to replace "for_each_physical_engine" when conflicts are fixed */
-#define __for_each_physical_engine(fd__, e__) \
- for (struct intel_engine_data i__ = intel_init_engine_list(fd__, 0); \
+#define ____for_each_physical_engine(fd__, ctx__, e__) \
+ for (struct intel_engine_data i__ = intel_init_engine_list(fd__, ctx__); \
((e__) = intel_get_current_physical_engine(&i__)); \
intel_next_engine(&i__))
+#define __for_each_physical_engine(fd__, e__) \
+ ____for_each_physical_engine(fd__, 0, e__)
+
#endif /* GEM_ENGINE_TOPOLOGY_H */
diff --git a/tests/i915/gem_ctx_exec.c b/tests/i915/gem_ctx_exec.c
index aeb8d2976..5b4e4b3db 100644
--- a/tests/i915/gem_ctx_exec.c
+++ b/tests/i915/gem_ctx_exec.c
@@ -226,7 +226,7 @@ static void nohangcheck_hostile(int i915)
igt_require(__enable_hangcheck(dir, false));
- __for_each_physical_engine(i915, e) {
+ ____for_each_physical_engine(i915, ctx, e) {
igt_spin_t *spin;
spin = igt_spin_new(i915, ctx,
--
2.25.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context 2020-02-05 11:59 [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context Chris Wilson @ 2020-02-05 12:13 ` Tvrtko Ursulin 2020-02-05 12:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-02-07 21:10 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Tvrtko Ursulin @ 2020-02-05 12:13 UTC (permalink / raw) To: Chris Wilson, igt-dev; +Cc: intel-gfx On 05/02/2020 11:59, Chris Wilson wrote: > We want to iterate the set of physical engines on this context, so > update the iterators to act on a particular context. > > This tunnel keeps on getting longer. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > --- > lib/i915/gem_engine_topology.h | 7 +++++-- > tests/i915/gem_ctx_exec.c | 2 +- > 2 files changed, 6 insertions(+), 3 deletions(-) > > diff --git a/lib/i915/gem_engine_topology.h b/lib/i915/gem_engine_topology.h > index e40d7ec83..027d86be2 100644 > --- a/lib/i915/gem_engine_topology.h > +++ b/lib/i915/gem_engine_topology.h > @@ -67,9 +67,12 @@ struct intel_execution_engine2 gem_eb_flags_to_engine(unsigned int flags); > intel_next_engine(&i__)) > > /* needs to replace "for_each_physical_engine" when conflicts are fixed */ > -#define __for_each_physical_engine(fd__, e__) \ > - for (struct intel_engine_data i__ = intel_init_engine_list(fd__, 0); \ > +#define ____for_each_physical_engine(fd__, ctx__, e__) \ > + for (struct intel_engine_data i__ = intel_init_engine_list(fd__, ctx__); \ > ((e__) = intel_get_current_physical_engine(&i__)); \ > intel_next_engine(&i__)) > > +#define __for_each_physical_engine(fd__, e__) \ > + ____for_each_physical_engine(fd__, 0, e__) > + > #endif /* GEM_ENGINE_TOPOLOGY_H */ > diff --git a/tests/i915/gem_ctx_exec.c b/tests/i915/gem_ctx_exec.c > index aeb8d2976..5b4e4b3db 100644 > --- a/tests/i915/gem_ctx_exec.c > +++ b/tests/i915/gem_ctx_exec.c > @@ -226,7 +226,7 @@ static void nohangcheck_hostile(int i915) > > igt_require(__enable_hangcheck(dir, false)); > > - __for_each_physical_engine(i915, e) { > + ____for_each_physical_engine(i915, ctx, e) { > igt_spin_t *spin; > > spin = igt_spin_new(i915, ctx, > Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_ctx_exec: Update the list of engines on the actual context 2020-02-05 11:59 [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context Chris Wilson 2020-02-05 12:13 ` [igt-dev] " Tvrtko Ursulin @ 2020-02-05 12:36 ` Patchwork 2020-02-07 21:10 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2020-02-05 12:36 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_ctx_exec: Update the list of engines on the actual context URL : https://patchwork.freedesktop.org/series/73022/ State : success == Summary == CI Bug Log - changes from CI_DRM_7869 -> IGTPW_4099 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/index.html Known issues ------------ Here are the changes found in IGTPW_4099 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-hsw-peppy: [PASS][1] -> [INCOMPLETE][2] ([i915#694] / [i915#816]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-hsw-peppy/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-hsw-peppy/igt@gem_close_race@basic-threads.html * igt@i915_selftest@live_blt: - fi-hsw-4770r: [PASS][3] -> [DMESG-FAIL][4] ([i915#563]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-hsw-4770r/igt@i915_selftest@live_blt.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-hsw-4770r/igt@i915_selftest@live_blt.html * igt@i915_selftest@live_execlists: - fi-icl-y: [PASS][5] -> [DMESG-FAIL][6] ([fdo#108569]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-icl-y/igt@i915_selftest@live_execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-icl-y/igt@i915_selftest@live_execlists.html * igt@i915_selftest@live_gem_contexts: - fi-byt-j1900: [PASS][7] -> [DMESG-FAIL][8] ([i915#1052]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-byt-j1900/igt@i915_selftest@live_gem_contexts.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-byt-j1900/igt@i915_selftest@live_gem_contexts.html * igt@prime_self_import@basic-llseek-size: - fi-tgl-y: [PASS][9] -> [DMESG-WARN][10] ([CI#94] / [i915#402]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-byt-n2820: [INCOMPLETE][11] ([i915#45]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-byt-n2820/igt@gem_close_race@basic-threads.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-byt-n2820/igt@gem_close_race@basic-threads.html * igt@gem_exec_parallel@fds: - fi-icl-u3: [INCOMPLETE][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-icl-u3/igt@gem_exec_parallel@fds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-icl-u3/igt@gem_exec_parallel@fds.html * igt@gem_exec_suspend@basic-s4-devices: - fi-tgl-y: [FAIL][15] ([CI#94]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_getparams_basic@basic-subslice-total: - fi-tgl-y: [DMESG-WARN][17] ([CI#94] / [i915#402]) -> [PASS][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-tgl-y/igt@i915_getparams_basic@basic-subslice-total.html * igt@i915_module_load@reload: - fi-skl-6770hq: [DMESG-WARN][19] ([i915#92]) -> [PASS][20] +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-skl-6770hq/igt@i915_module_load@reload.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-skl-6770hq/igt@i915_module_load@reload.html * igt@i915_selftest@live_blt: - fi-bsw-nick: [INCOMPLETE][21] ([i915#392]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-bsw-nick/igt@i915_selftest@live_blt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-bsw-nick/igt@i915_selftest@live_blt.html - fi-ivb-3770: [DMESG-FAIL][23] ([i915#725]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-ivb-3770/igt@i915_selftest@live_blt.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-ivb-3770/igt@i915_selftest@live_blt.html - fi-hsw-4770: [DMESG-FAIL][25] ([i915#553]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-hsw-4770/igt@i915_selftest@live_blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-hsw-4770/igt@i915_selftest@live_blt.html * igt@kms_chamelium@hdmi-crc-fast: - fi-kbl-7500u: [FAIL][27] ([fdo#109635] / [i915#217]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-kbl-7500u/igt@kms_chamelium@hdmi-crc-fast.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-kbl-7500u/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][29] ([fdo#111096] / [i915#323]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence: - fi-skl-6770hq: [SKIP][31] ([fdo#109271]) -> [PASS][32] +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - fi-skl-6770hq: [DMESG-WARN][33] ([i915#106] / [i915#188]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109635]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [i915#1052]: https://gitlab.freedesktop.org/drm/intel/issues/1052 [i915#106]: https://gitlab.freedesktop.org/drm/intel/issues/106 [i915#188]: https://gitlab.freedesktop.org/drm/intel/issues/188 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#392]: https://gitlab.freedesktop.org/drm/intel/issues/392 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92 Participating hosts (49 -> 47) ------------------------------ Additional (3): fi-kbl-7560u fi-gdg-551 fi-snb-2520m Missing (5): fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5419 -> IGTPW_4099 CI-20190529: 20190529 CI_DRM_7869: db0579be255412f38a450c3c577f8d10f1195034 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4099: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/index.html IGT_5419: 44913a91e77434b03001bb9ea53216cd03c476e6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_ctx_exec: Update the list of engines on the actual context 2020-02-05 11:59 [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context Chris Wilson 2020-02-05 12:13 ` [igt-dev] " Tvrtko Ursulin 2020-02-05 12:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-02-07 21:10 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2020-02-07 21:10 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_ctx_exec: Update the list of engines on the actual context URL : https://patchwork.freedesktop.org/series/73022/ State : success == Summary == CI Bug Log - changes from CI_DRM_7869_full -> IGTPW_4099_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/index.html Known issues ------------ Here are the changes found in IGTPW_4099_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@rcs0-s3: - shard-apl: [PASS][1] -> [DMESG-WARN][2] ([i915#180]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb4/igt@gem_exec_balancer@smoke.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb6/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@fifo-bsd1: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +15 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb2/igt@gem_exec_schedule@fifo-bsd1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb6/igt@gem_exec_schedule@fifo-bsd1.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#112146]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_partial_pwrite_pread@reads: - shard-hsw: [PASS][9] -> [FAIL][10] ([i915#694]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw7/igt@gem_partial_pwrite_pread@reads.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw4/igt@gem_partial_pwrite_pread@reads.html * igt@i915_pm_rps@reset: - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#413]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb7/igt@i915_pm_rps@reset.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb3/igt@i915_pm_rps@reset.html * igt@i915_selftest@live_blt: - shard-hsw: [PASS][13] -> [DMESG-FAIL][14] ([i915#553] / [i915#725]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw2/igt@i915_selftest@live_blt.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw6/igt@i915_selftest@live_blt.html * igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#54]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#54]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-apl: [PASS][19] -> [FAIL][20] ([i915#49]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#49]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#49]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-kbl: [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +4 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-position-covered-pipe-b-planes: - shard-kbl: [PASS][27] -> [FAIL][28] ([i915#247]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-kbl4/igt@kms_plane@plane-position-covered-pipe-b-planes.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-kbl1/igt@kms_plane@plane-position-covered-pipe-b-planes.html - shard-apl: [PASS][29] -> [FAIL][30] ([i915#247]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl2/igt@kms_plane@plane-position-covered-pipe-b-planes.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl2/igt@kms_plane@plane-position-covered-pipe-b-planes.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#899]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-glk9/igt@kms_plane_lowres@pipe-a-tiling-x.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-glk3/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb4/igt@kms_psr@psr2_cursor_render.html * igt@perf_pmu@busy-accuracy-2-vcs1: - shard-iclb: [PASS][35] -> [SKIP][36] ([fdo#112080]) +13 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb2/igt@perf_pmu@busy-accuracy-2-vcs1.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb6/igt@perf_pmu@busy-accuracy-2-vcs1.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-iclb: [INCOMPLETE][37] -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb2/igt@gem_ctx_exec@basic-nohangcheck.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-apl: [INCOMPLETE][39] ([fdo#103927]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl6/igt@gem_ctx_exec@basic-nohangcheck.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_parallel@vcs1: - shard-iclb: [SKIP][41] ([fdo#112080]) -> [PASS][42] +12 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb5/igt@gem_exec_parallel@vcs1.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb1/igt@gem_exec_parallel@vcs1.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][43] ([fdo#112146]) -> [PASS][44] +8 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb1/igt@gem_exec_schedule@reorder-wide-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb3/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_partial_pwrite_pread@write: - shard-hsw: [FAIL][45] ([i915#694]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw7/igt@gem_partial_pwrite_pread@write.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw1/igt@gem_partial_pwrite_pread@write.html * igt@i915_pm_rps@reset: - shard-apl: [FAIL][47] ([i915#39]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl1/igt@i915_pm_rps@reset.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@waitboost: - shard-tglb: [FAIL][49] ([i915#413]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-tglb7/igt@i915_pm_rps@waitboost.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-tglb8/igt@i915_pm_rps@waitboost.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [DMESG-WARN][51] ([i915#180]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][53] ([i915#180]) -> [PASS][54] +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][55] ([fdo#109441]) -> [PASS][56] +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb8/igt@kms_psr@psr2_basic.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb2/igt@kms_psr@psr2_basic.html * igt@perf_pmu@cpu-hotplug: - shard-hsw: [INCOMPLETE][57] ([i915#61]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw4/igt@perf_pmu@cpu-hotplug.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw2/igt@perf_pmu@cpu-hotplug.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][59] ([fdo#109276]) -> [PASS][60] +25 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv-switch: - shard-iclb: [FAIL][61] ([IGT#28]) -> [SKIP][62] ([fdo#112080]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv-switch.html * igt@gem_tiled_blits@interruptible: - shard-hsw: [FAIL][63] ([i915#818]) -> [FAIL][64] ([i915#694]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw8/igt@gem_tiled_blits@interruptible.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw2/igt@gem_tiled_blits@interruptible.html * igt@gem_tiled_blits@normal: - shard-hsw: [FAIL][65] ([i915#694]) -> [FAIL][66] ([i915#818]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-hsw1/igt@gem_tiled_blits@normal.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-hsw1/igt@gem_tiled_blits@normal.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-snb: [DMESG-WARN][67] ([fdo#111870] / [i915#478]) -> [DMESG-WARN][68] ([fdo#110789] / [fdo#111870] / [i915#478]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-snb1/igt@gem_userptr_blits@dmabuf-unsync.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-snb6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: [FAIL][69] ([i915#454]) -> [SKIP][70] ([i915#468]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7869/shard-tglb6/igt@i915_pm_dc@dc6-psr.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/shard-tglb2/igt@i915_pm_dc@dc6-psr.html [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#247]: https://gitlab.freedesktop.org/drm/intel/issues/247 [i915#39]: https://gitlab.freedesktop.org/drm/intel/issues/39 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5419 -> IGTPW_4099 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7869: db0579be255412f38a450c3c577f8d10f1195034 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4099: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4099/index.html IGT_5419: 44913a91e77434b03001bb9ea53216cd03c476e6 @ 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_4099/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-02-07 21:10 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-05 11:59 [Intel-gfx] [PATCH i-g-t] i915/gem_ctx_exec: Update the list of engines on the actual context Chris Wilson 2020-02-05 12:13 ` [igt-dev] " Tvrtko Ursulin 2020-02-05 12:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-02-07 21:10 ` [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