* [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface
@ 2020-12-07 16:11 Chris Wilson
2020-12-07 16:11 ` [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM Chris Wilson
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Chris Wilson @ 2020-12-07 16:11 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev, Tvrtko Ursulin, Chris Wilson
Check that every engine listed can be used in execbuf.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Andi Shyti <andi.shyti@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tests/i915/i915_query.c | 35 ++++++++++++++++++++++++++++++++++-
1 file changed, 34 insertions(+), 1 deletion(-)
diff --git a/tests/i915/i915_query.c b/tests/i915/i915_query.c
index e7c6fc91e..cdf2d3403 100644
--- a/tests/i915/i915_query.c
+++ b/tests/i915/i915_query.c
@@ -633,6 +633,16 @@ has_engine(struct drm_i915_query_engine_info *engines,
return false;
}
+static void gem_context_reset_engines(int i915, uint32_t ctx)
+{
+ struct drm_i915_gem_context_param param = {
+ .ctx_id = ctx,
+ .param = I915_CONTEXT_PARAM_ENGINES,
+ };
+
+ gem_context_set_param(i915, ¶m);
+}
+
static void engines(int fd)
{
struct drm_i915_query_engine_info *engines;
@@ -678,10 +688,24 @@ static void engines(int fd)
igt_assert_eq(engines->rsvd[1], 0);
igt_assert_eq(engines->rsvd[2], 0);
- /* Check results match the legacy GET_PARAM (where we can). */
+ /* Confirm the individual engines exist with EXECBUFFER2 */
for (i = 0; i < engines->num_engines; i++) {
struct drm_i915_engine_info *engine =
(struct drm_i915_engine_info *)&engines->engines[i];
+ I915_DEFINE_CONTEXT_PARAM_ENGINES(p_engines, 1) = {
+ .engines = { engine->engine }
+ };
+ struct drm_i915_gem_context_param param = {
+ .param = I915_CONTEXT_PARAM_ENGINES,
+ .value = to_user_pointer(&p_engines),
+ .size = sizeof(p_engines),
+ };
+
+ struct drm_i915_gem_exec_object2 obj = {};
+ struct drm_i915_gem_execbuffer2 execbuf = {
+ .buffers_ptr = to_user_pointer(&obj),
+ .buffer_count = 1,
+ };
igt_debug("%u: class=%u instance=%u flags=%llx capabilities=%llx\n",
i,
@@ -689,6 +713,15 @@ static void engines(int fd)
engine->engine.engine_instance,
engine->flags,
engine->capabilities);
+ gem_context_set_param(fd, ¶m);
+ igt_assert_eq(__gem_execbuf(fd, &execbuf), -ENOENT);
+ }
+ gem_context_reset_engines(fd, 0);
+
+ /* Check results match the legacy GET_PARAM (where we can). */
+ for (i = 0; i < engines->num_engines; i++) {
+ struct drm_i915_engine_info *engine =
+ (struct drm_i915_engine_info *)&engines->engines[i];
switch (engine->engine.engine_class) {
case I915_ENGINE_CLASS_RENDER:
--
2.29.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson @ 2020-12-07 16:11 ` Chris Wilson 2020-12-08 11:04 ` Petri Latvala 2020-12-07 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Chris Wilson @ 2020-12-07 16:11 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev, Petri Latvala, Chris Wilson Simplify the cross-check by asserting that the existence of an engine in the list matches the existence of the engine as reported by GETPARAM. By using the comparison, we check both directions at once. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Petri Latvala <petri.latvala@intel.com> --- tests/i915/i915_query.c | 49 ++++++++--------------------------------- 1 file changed, 9 insertions(+), 40 deletions(-) diff --git a/tests/i915/i915_query.c b/tests/i915/i915_query.c index cdf2d3403..b415650ae 100644 --- a/tests/i915/i915_query.c +++ b/tests/i915/i915_query.c @@ -719,46 +719,15 @@ static void engines(int fd) gem_context_reset_engines(fd, 0); /* Check results match the legacy GET_PARAM (where we can). */ - for (i = 0; i < engines->num_engines; i++) { - struct drm_i915_engine_info *engine = - (struct drm_i915_engine_info *)&engines->engines[i]; - - switch (engine->engine.engine_class) { - case I915_ENGINE_CLASS_RENDER: - /* Will be tested later. */ - break; - case I915_ENGINE_CLASS_COPY: - igt_assert(gem_has_blt(fd)); - break; - case I915_ENGINE_CLASS_VIDEO: - switch (engine->engine.engine_instance) { - case 0: - igt_assert(gem_has_bsd(fd)); - break; - case 1: - igt_assert(gem_has_bsd2(fd)); - break; - } - break; - case I915_ENGINE_CLASS_VIDEO_ENHANCE: - igt_assert(gem_has_vebox(fd)); - break; - default: - igt_assert(0); - } - } - - /* Reverse check to the above - all GET_PARAM engines are present. */ - igt_assert(has_engine(engines, I915_ENGINE_CLASS_RENDER, 0)); - if (gem_has_blt(fd)) - igt_assert(has_engine(engines, I915_ENGINE_CLASS_COPY, 0)); - if (gem_has_bsd(fd)) - igt_assert(has_engine(engines, I915_ENGINE_CLASS_VIDEO, 0)); - if (gem_has_bsd2(fd)) - igt_assert(has_engine(engines, I915_ENGINE_CLASS_VIDEO, 1)); - if (gem_has_vebox(fd)) - igt_assert(has_engine(engines, I915_ENGINE_CLASS_VIDEO_ENHANCE, - 0)); + igt_assert_eq(has_engine(engines, I915_ENGINE_CLASS_RENDER, 0), 1); + igt_assert_eq(has_engine(engines, I915_ENGINE_CLASS_COPY, 0), + gem_has_blt(fd)); + igt_assert_eq(has_engine(engines, I915_ENGINE_CLASS_VIDEO, 0), + gem_has_bsd(fd)); + igt_assert_eq(has_engine(engines, I915_ENGINE_CLASS_VIDEO, 1), + gem_has_bsd2(fd)); + igt_assert_eq(has_engine(engines, I915_ENGINE_CLASS_VIDEO_ENHANCE, 0), + gem_has_vebox(fd)); free(engines); } -- 2.29.2 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM 2020-12-07 16:11 ` [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM Chris Wilson @ 2020-12-08 11:04 ` Petri Latvala 2020-12-08 11:18 ` [igt-dev] [Intel-gfx] " Tvrtko Ursulin 0 siblings, 1 reply; 10+ messages in thread From: Petri Latvala @ 2020-12-08 11:04 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx On Mon, Dec 07, 2020 at 04:11:50PM +0000, Chris Wilson wrote: > Simplify the cross-check by asserting that the existence of an engine in > the list matches the existence of the engine as reported by GETPARAM. > By using the comparison, we check both directions at once. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Petri Latvala <petri.latvala@intel.com> For the series, Reviewed-by: Petri Latvala <petri.latvala@intel.com> Thanks! _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM 2020-12-08 11:04 ` Petri Latvala @ 2020-12-08 11:18 ` Tvrtko Ursulin 2020-12-08 11:31 ` Chris Wilson 0 siblings, 1 reply; 10+ messages in thread From: Tvrtko Ursulin @ 2020-12-08 11:18 UTC (permalink / raw) To: Petri Latvala, Chris Wilson; +Cc: igt-dev, intel-gfx On 08/12/2020 11:04, Petri Latvala wrote: > On Mon, Dec 07, 2020 at 04:11:50PM +0000, Chris Wilson wrote: >> Simplify the cross-check by asserting that the existence of an engine in >> the list matches the existence of the engine as reported by GETPARAM. >> By using the comparison, we check both directions at once. >> >> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> >> Cc: Petri Latvala <petri.latvala@intel.com> > > > For the series, > Reviewed-by: Petri Latvala <petri.latvala@intel.com> Yeah it's a yes from me as well. Either test was merged with or before the engine map feature so it had to be a bit more backward compatible. I wonder at which point we re-implement gem_has_xcs family to use the query and move the get_param based tests to a single legacy test. Regards, Tvrtko _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM 2020-12-08 11:18 ` [igt-dev] [Intel-gfx] " Tvrtko Ursulin @ 2020-12-08 11:31 ` Chris Wilson 0 siblings, 0 replies; 10+ messages in thread From: Chris Wilson @ 2020-12-08 11:31 UTC (permalink / raw) To: Petri Latvala, Tvrtko Ursulin; +Cc: igt-dev, intel-gfx Quoting Tvrtko Ursulin (2020-12-08 11:18:56) > > On 08/12/2020 11:04, Petri Latvala wrote: > > On Mon, Dec 07, 2020 at 04:11:50PM +0000, Chris Wilson wrote: > >> Simplify the cross-check by asserting that the existence of an engine in > >> the list matches the existence of the engine as reported by GETPARAM. > >> By using the comparison, we check both directions at once. > >> > >> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > >> Cc: Petri Latvala <petri.latvala@intel.com> > > > > > > For the series, > > Reviewed-by: Petri Latvala <petri.latvala@intel.com> > > Yeah it's a yes from me as well. Either test was merged with or before > the engine map feature so it had to be a bit more backward compatible. As a sanity check, drm/i915: Allow a context to define its set of engines CommitDate: Wed May 22 08:40:31 2019 +0100 drm/i915: Engine discovery query CommitDate: Wed May 22 14:17:55 2019 +0100 So they are paired. If the kernel supports the engine query, it will support the engine map. > I wonder at which point we re-implement gem_has_xcs family to use the > query and move the get_param based tests to a single legacy test. gem_has_xcs() is a quirk of igt, and we are very very close to completely removing it. The only place where it remains relevant is verifying that we do not break the existing GETPARAM (so this test and gem_exec_param). That seems like an afternoon task to move the GETPARAM into a dungeon and throw away the key. -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson 2020-12-07 16:11 ` [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM Chris Wilson @ 2020-12-07 17:40 ` Patchwork 2020-12-07 19:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-12-07 17:40 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 2458 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface URL : https://patchwork.freedesktop.org/series/84646/ State : success == Summary == CI Bug Log - changes from CI_DRM_9455 -> IGTPW_5256 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html Known issues ------------ Here are the changes found in IGTPW_5256 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_timelines: - fi-apl-guc: [PASS][1] -> [INCOMPLETE][2] ([i915#2750]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/fi-apl-guc/igt@i915_selftest@live@gt_timelines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/fi-apl-guc/igt@i915_selftest@live@gt_timelines.html * igt@prime_self_import@basic-with_one_bo_two_files: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html #### Possible fixes #### * igt@gem_mmap_gtt@basic: - fi-tgl-y: [DMESG-WARN][5] ([i915#402]) -> [PASS][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/fi-tgl-y/igt@gem_mmap_gtt@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/fi-tgl-y/igt@gem_mmap_gtt@basic.html [i915#2750]: https://gitlab.freedesktop.org/drm/intel/issues/2750 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (45 -> 39) ------------------------------ Missing (6): fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5884 -> IGTPW_5256 CI-20190529: 20190529 CI_DRM_9455: 269c3f66691cf86195fc4ee0c537138dd16038d0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5256: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html IGT_5884: b1015a3267bbccb985b2fa7e3accb778c7bff0ed @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html [-- Attachment #1.2: Type: text/html, Size: 3174 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson 2020-12-07 16:11 ` [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM Chris Wilson 2020-12-07 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface Patchwork @ 2020-12-07 19:47 ` Patchwork 2020-12-08 11:01 ` Petri Latvala 2020-12-08 11:56 ` [Intel-gfx] [PATCH i-g-t 1/2] " Andi Shyti 2020-12-09 5:51 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] " Patchwork 4 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2020-12-07 19:47 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 20066 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface URL : https://patchwork.freedesktop.org/series/84646/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9455_full -> IGTPW_5256_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5256_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5256_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5256_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_lpsp@screens-disabled: - shard-hsw: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw6/igt@i915_pm_lpsp@screens-disabled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw5/igt@i915_pm_lpsp@screens-disabled.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-hsw: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html Known issues ------------ Here are the changes found in IGTPW_5256_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@q-smoketest-all: - shard-tglb: [PASS][5] -> [INCOMPLETE][6] ([i915#1889]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb5/igt@gem_ctx_shared@q-smoketest-all.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_exec_capture@pi@vcs1: - shard-kbl: [PASS][7] -> [INCOMPLETE][8] ([i915#2295]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@gem_exec_capture@pi@vcs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl7/igt@gem_exec_capture@pi@vcs1.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][9] -> [DMESG-WARN][10] ([i915#1436] / [i915#716]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk1/igt@gen9_exec_parse@allowed-all.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][11] -> [FAIL][12] ([i915#454]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-hsw: [PASS][13] -> [SKIP][14] ([fdo#109271]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-kbl: [PASS][15] -> [SKIP][16] ([fdo#109271]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-apl: [PASS][17] -> [SKIP][18] ([fdo#109271]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-glk: [PASS][19] -> [SKIP][20] ([fdo#109271]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [PASS][21] -> [SKIP][22] ([i915#579]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [PASS][23] -> [FAIL][24] ([i915#2597]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb2/igt@kms_async_flips@test-time-stamp.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_async_flips@test-time-stamp.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-tglb: [PASS][25] -> [FAIL][26] ([i915#2346]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - shard-tglb: [PASS][27] -> [INCOMPLETE][28] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][29] -> [SKIP][30] ([fdo#109642] / [fdo#111068]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_primary_render: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109441]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@kms_psr@psr2_primary_render.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb3/igt@kms_psr@psr2_primary_render.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][33] -> [DMESG-WARN][34] ([i915#295]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-apl: [PASS][35] -> [DMESG-WARN][36] ([i915#2635] / [i915#295]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-glk: [PASS][37] -> [DMESG-WARN][38] ([i915#2635] / [i915#295]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-iclb: [PASS][39] -> [DMESG-WARN][40] ([i915#2759]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-hsw: [PASS][41] -> [DMESG-WARN][42] ([i915#2637]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html #### Possible fixes #### * {igt@gem_ctx_exec@basic-close-race}: - shard-glk: [DMESG-FAIL][43] -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk4/igt@gem_ctx_exec@basic-close-race.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@gem_ctx_exec@basic-close-race.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][45] ([i915#2190]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@gem_huc_copy@huc-copy.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][47] ([i915#454]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c: - shard-kbl: [DMESG-WARN][49] ([i915#165] / [i915#180]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: - shard-apl: [FAIL][51] ([i915#54]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html - shard-kbl: [FAIL][53] ([i915#54]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [FAIL][55] ([i915#2370]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-move: - shard-tglb: [INCOMPLETE][57] -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@kms_cursor_legacy@pipe-d-torture-move.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_cursor_legacy@pipe-d-torture-move.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-hsw: [INCOMPLETE][59] ([i915#2055] / [i915#2295]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][61] ([i915#433]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-hsw: [DMESG-WARN][63] ([i915#2637]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-kbl: [DMESG-WARN][65] ([i915#165] / [i915#180] / [i915#78]) -> [PASS][66] +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [SKIP][67] ([fdo#109441]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb6/igt@kms_psr@psr2_sprite_render.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb2/igt@kms_psr@psr2_sprite_render.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][69] ([i915#588]) -> [SKIP][70] ([i915#658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: [FAIL][71] -> [FAIL][72] ([i915#454]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-iclb: [SKIP][73] ([fdo#110892]) -> [SKIP][74] ([i915#579]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@runner@aborted: - shard-kbl: [FAIL][75] ([i915#2295] / [i915#2722] / [i915#483]) -> ([FAIL][76], [FAIL][77]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483] / [i915#602]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl4/igt@runner@aborted.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl3/igt@runner@aborted.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@runner@aborted.html - shard-iclb: [FAIL][78] ([i915#2295] / [i915#2722] / [i915#483]) -> ([FAIL][79], [FAIL][80]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb5/igt@runner@aborted.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@runner@aborted.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@runner@aborted.html - shard-apl: [FAIL][81] ([i915#2295] / [i915#2722]) -> ([FAIL][82], [FAIL][83]) ([i915#1814] / [i915#2295] / [i915#2722]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl6/igt@runner@aborted.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl7/igt@runner@aborted.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@runner@aborted.html - shard-glk: ([FAIL][84], [FAIL][85]) ([i915#2295] / [i915#2722] / [k.org#202321]) -> ([FAIL][86], [FAIL][87], [FAIL][88]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483] / [k.org#202321]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk9/igt@runner@aborted.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk4/igt@runner@aborted.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk3/igt@runner@aborted.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@runner@aborted.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk2/igt@runner@aborted.html - shard-tglb: ([FAIL][89], [FAIL][90]) ([i915#1602] / [i915#2295] / [i915#2722]) -> ([FAIL][91], [FAIL][92], [FAIL][93], [FAIL][94]) ([i915#1602] / [i915#1889] / [i915#2295] / [i915#2722]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@runner@aborted.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb8/igt@runner@aborted.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@runner@aborted.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb7/igt@runner@aborted.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@runner@aborted.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1889]: https://gitlab.freedesktop.org/drm/intel/issues/1889 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2055]: https://gitlab.freedesktop.org/drm/intel/issues/2055 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370 [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597 [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635 [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#2759]: https://gitlab.freedesktop.org/drm/intel/issues/2759 [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#602]: https://gitlab.freedesktop.org/drm/intel/issues/602 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#78]: https://gitlab.freedesktop.org/drm/intel/issues/78 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5884 -> IGTPW_5256 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9455: 269c3f66691cf86195fc4ee0c537138dd16038d0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5256: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html IGT_5884: b1015a3267bbccb985b2fa7e3accb778c7bff0ed @ 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_5256/index.html [-- Attachment #1.2: Type: text/html, Size: 24823 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface 2020-12-07 19:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-12-08 11:01 ` Petri Latvala 0 siblings, 0 replies; 10+ messages in thread From: Petri Latvala @ 2020-12-08 11:01 UTC (permalink / raw) To: igt-dev, Lakshminarayana Vudum; +Cc: Chris Wilson On Mon, Dec 07, 2020 at 07:47:43PM +0000, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface > URL : https://patchwork.freedesktop.org/series/84646/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_9455_full -> IGTPW_5256_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_5256_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5256_full, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_5256_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_lpsp@screens-disabled: > - shard-hsw: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw6/igt@i915_pm_lpsp@screens-disabled.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw5/igt@i915_pm_lpsp@screens-disabled.html > > * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: > - shard-hsw: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html False positives for you, Lakshmi. -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson ` (2 preceding siblings ...) 2020-12-07 19:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-12-08 11:56 ` Andi Shyti 2020-12-09 5:51 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Andi Shyti @ 2020-12-08 11:56 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev, intel-gfx Hi Chris, > - /* Check results match the legacy GET_PARAM (where we can). */ > + /* Confirm the individual engines exist with EXECBUFFER2 */ > for (i = 0; i < engines->num_engines; i++) { > struct drm_i915_engine_info *engine = > (struct drm_i915_engine_info *)&engines->engines[i]; > + I915_DEFINE_CONTEXT_PARAM_ENGINES(p_engines, 1) = { > + .engines = { engine->engine } > + }; > + struct drm_i915_gem_context_param param = { > + .param = I915_CONTEXT_PARAM_ENGINES, > + .value = to_user_pointer(&p_engines), > + .size = sizeof(p_engines), > + }; > + > + struct drm_i915_gem_exec_object2 obj = {}; > + struct drm_i915_gem_execbuffer2 execbuf = { > + .buffers_ptr = to_user_pointer(&obj), > + .buffer_count = 1, > + }; > > igt_debug("%u: class=%u instance=%u flags=%llx capabilities=%llx\n", > i, > @@ -689,6 +713,15 @@ static void engines(int fd) > engine->engine.engine_instance, > engine->flags, > engine->capabilities); > + gem_context_set_param(fd, ¶m); > + igt_assert_eq(__gem_execbuf(fd, &execbuf), -ENOENT); > + } > + gem_context_reset_engines(fd, 0); > + > + /* Check results match the legacy GET_PARAM (where we can). */ > + for (i = 0; i < engines->num_engines; i++) { > + struct drm_i915_engine_info *engine = > + (struct drm_i915_engine_info *)&engines->engines[i]; I would have liked it with one single for loop, perhaps resetting engines individually. But this works, as well and I'm not strong with this: Reviewed-by: Andi Shyti <andi.shyti@intel.com> Andi _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson ` (3 preceding siblings ...) 2020-12-08 11:56 ` [Intel-gfx] [PATCH i-g-t 1/2] " Andi Shyti @ 2020-12-09 5:51 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-12-09 5:51 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30312 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface URL : https://patchwork.freedesktop.org/series/84646/ State : success == Summary == CI Bug Log - changes from CI_DRM_9455_full -> IGTPW_5256_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html Known issues ------------ Here are the changes found in IGTPW_5256_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@hostile: - shard-hsw: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1099]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw5/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_shared@q-smoketest-all: - shard-tglb: [PASS][2] -> [INCOMPLETE][3] ([i915#1889]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb5/igt@gem_ctx_shared@q-smoketest-all.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][4] ([i915#280]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_capture@pi@vcs1: - shard-kbl: [PASS][5] -> [INCOMPLETE][6] ([i915#2295]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@gem_exec_capture@pi@vcs1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl7/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][7] ([fdo#112283]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb1/igt@gem_exec_params@secure-non-root.html - shard-iclb: NOTRUN -> [SKIP][8] ([fdo#112283]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb8/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-many-active@rcs0: - shard-glk: NOTRUN -> [FAIL][9] ([i915#2389]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk1/igt@gem_exec_reloc@basic-many-active@rcs0.html * igt@gem_exec_reloc@basic-wide-active@vcs1: - shard-iclb: NOTRUN -> [FAIL][10] ([i915#2389]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb1/igt@gem_exec_reloc@basic-wide-active@vcs1.html * igt@gem_pread@exhaustion: - shard-tglb: NOTRUN -> [WARN][11] ([i915#2658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb1/igt@gem_pread@exhaustion.html * igt@gen3_mixed_blits: - shard-iclb: NOTRUN -> [SKIP][12] ([fdo#109289]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@gen3_mixed_blits.html - shard-tglb: NOTRUN -> [SKIP][13] ([fdo#109289]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb1/igt@gen3_mixed_blits.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][14] -> [DMESG-WARN][15] ([i915#1436] / [i915#716]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk1/igt@gen9_exec_parse@allowed-all.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-out: - shard-tglb: NOTRUN -> [SKIP][16] ([fdo#112306]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb6/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-jump: - shard-iclb: NOTRUN -> [SKIP][17] ([fdo#112306]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][18] ([i915#454]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][19] -> [FAIL][20] ([i915#454]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_lpsp@screens-disabled: - shard-hsw: [PASS][21] -> [FAIL][22] ([i915#2768]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw6/igt@i915_pm_lpsp@screens-disabled.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw5/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-hsw: [PASS][23] -> [SKIP][24] ([fdo#109271]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-kbl: [PASS][25] -> [SKIP][26] ([fdo#109271]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-apl: [PASS][27] -> [SKIP][28] ([fdo#109271]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-glk: [PASS][29] -> [SKIP][30] ([fdo#109271]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#109293] / [fdo#109506]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#109506] / [i915#2411]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@system-suspend-devices: - shard-iclb: [PASS][33] -> [SKIP][34] ([i915#579]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_async_flips@test-time-stamp: - shard-tglb: [PASS][35] -> [FAIL][36] ([i915#2597]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb2/igt@kms_async_flips@test-time-stamp.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_async_flips@test-time-stamp.html * igt@kms_atomic_transition@4x-modeset-transitions-nonblocking: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#112022] / [fdo#112041]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb7/igt@kms_atomic_transition@4x-modeset-transitions-nonblocking.html * igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing: - shard-tglb: NOTRUN -> [SKIP][38] ([fdo#112016] / [fdo#112025]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][39] ([fdo#111614]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_joiner@invalid-modeset: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#2705]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_chamelium@hdmi-edid-read: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +6 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-storm-disable: - shard-kbl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl4/igt@kms_chamelium@hdmi-hpd-storm-disable.html - shard-apl: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl4/igt@kms_chamelium@hdmi-hpd-storm-disable.html * igt@kms_color@pipe-b-ctm-0-25: - shard-iclb: NOTRUN -> [FAIL][44] ([i915#1149] / [i915#315]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb1/igt@kms_color@pipe-b-ctm-0-25.html - shard-tglb: NOTRUN -> [FAIL][45] ([i915#1149] / [i915#315]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@kms_color@pipe-b-ctm-0-25.html * igt@kms_color@pipe-d-ctm-blue-to-red: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [i915#1149]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb2/igt@kms_color@pipe-d-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb5/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-d-ctm-0-75: - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@kms_color_chamelium@pipe-d-ctm-0-75.html * igt@kms_color_chamelium@pipe-d-ctm-green-to-red: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html * igt@kms_cursor_crc@pipe-d-cursor-256x85-random: - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271]) +44 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x85-random.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109274] / [fdo#109278]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-tglb: [PASS][52] -> [FAIL][53] ([i915#2346]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-tglb: NOTRUN -> [FAIL][54] ([i915#2346]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#426]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@kms_dp_tiled_display@basic-test-pattern.html - shard-tglb: NOTRUN -> [SKIP][56] ([i915#426]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb6/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-hsw: [PASS][57] -> [INCOMPLETE][58] ([CI#80]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109274]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#111825]) +23 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109280]) +9 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-hsw: NOTRUN -> [SKIP][62] ([fdo#109271]) +14 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_hdr@static-toggle-dpms: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#1187]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@kms_hdr@static-toggle-dpms.html - shard-iclb: NOTRUN -> [SKIP][64] ([i915#1187]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - shard-tglb: [PASS][65] -> [INCOMPLETE][66] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][67] ([fdo#108145] / [i915#265]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html - shard-apl: NOTRUN -> [FAIL][68] ([fdo#108145] / [i915#265]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html - shard-kbl: NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][70] -> [SKIP][71] ([fdo#109642] / [fdo#111068]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_primary_render: - shard-iclb: [PASS][72] -> [SKIP][73] ([fdo#109441]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@kms_psr@psr2_primary_render.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb3/igt@kms_psr@psr2_primary_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-d: - shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271]) +30 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][75] -> [DMESG-WARN][76] ([i915#295]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-apl: [PASS][77] -> [DMESG-WARN][78] ([i915#2635] / [i915#295]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-glk: [PASS][79] -> [DMESG-WARN][80] ([i915#2635] / [i915#295]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-iclb: [PASS][81] -> [DMESG-WARN][82] ([i915#2759]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html - shard-hsw: [PASS][83] -> [DMESG-WARN][84] ([i915#2637]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-forked: - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271]) +30 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@kms_vblank@pipe-d-wait-forked.html - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109278]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb8/igt@kms_vblank@pipe-d-wait-forked.html * igt@kms_vrr@flip-suspend: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109502]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb1/igt@kms_vrr@flip-suspend.html * igt@nouveau_crc@pipe-b-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2530]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@nouveau_crc@pipe-b-ctx-flip-detection.html * igt@nouveau_crc@pipe-b-source-outp-inactive: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#2530]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb3/igt@nouveau_crc@pipe-b-source-outp-inactive.html * igt@prime_nv_pcopy@test1_macro: - shard-tglb: NOTRUN -> [SKIP][90] ([fdo#109291]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@prime_nv_pcopy@test1_macro.html * igt@prime_nv_pcopy@test3_4: - shard-iclb: NOTRUN -> [SKIP][91] ([fdo#109291]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb6/igt@prime_nv_pcopy@test3_4.html #### Possible fixes #### * {igt@gem_ctx_exec@basic-close-race}: - shard-glk: [DMESG-FAIL][92] ([i915#2245]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk4/igt@gem_ctx_exec@basic-close-race.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@gem_ctx_exec@basic-close-race.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][94] ([i915#2190]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@gem_huc_copy@huc-copy.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@gem_huc_copy@huc-copy.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][96] ([i915#454]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb1/igt@i915_pm_dc@dc6-dpms.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c: - shard-kbl: [DMESG-WARN][98] ([i915#165] / [i915#180]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@dp-1-pipe-c.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: - shard-apl: [FAIL][100] ([i915#54]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html - shard-kbl: [FAIL][102] ([i915#54]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl6/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [FAIL][104] ([i915#2370]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@pipe-d-torture-move: - shard-tglb: [INCOMPLETE][106] ([i915#2781]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@kms_cursor_legacy@pipe-d-torture-move.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@kms_cursor_legacy@pipe-d-torture-move.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-hsw: [INCOMPLETE][108] ([i915#2055] / [i915#2295]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][110] ([i915#433]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-hsw: [DMESG-WARN][112] ([i915#2637]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-hsw2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-hsw6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-kbl: [DMESG-WARN][114] ([i915#165] / [i915#180] / [i915#78]) -> [PASS][115] +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [SKIP][116] ([fdo#109441]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb6/igt@kms_psr@psr2_sprite_render.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb2/igt@kms_psr@psr2_sprite_render.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][118] ([i915#588]) -> [SKIP][119] ([i915#658]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-dpms: - shard-kbl: [FAIL][120] ([i915#545]) -> [FAIL][121] ([i915#454]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-iclb: [SKIP][122] ([fdo#110892]) -> [SKIP][123] ([i915#579]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@runner@aborted: - shard-kbl: [FAIL][124] ([i915#2295] / [i915#2722] / [i915#483]) -> ([FAIL][125], [FAIL][126]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483] / [i915#602]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-kbl4/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl3/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-kbl2/igt@runner@aborted.html - shard-iclb: [FAIL][127] ([i915#2295] / [i915#2722] / [i915#483]) -> ([FAIL][128], [FAIL][129]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-iclb5/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb4/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-iclb7/igt@runner@aborted.html - shard-apl: [FAIL][130] ([i915#2295] / [i915#2722]) -> ([FAIL][131], [FAIL][132]) ([i915#1814] / [i915#2295] / [i915#2722]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-apl6/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl7/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-apl6/igt@runner@aborted.html - shard-glk: ([FAIL][133], [FAIL][134]) ([i915#2295] / [i915#2722] / [k.org#202321]) -> ([FAIL][135], [FAIL][136], [FAIL][137]) ([i915#1814] / [i915#2295] / [i915#2722] / [i915#483] / [k.org#202321]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk9/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-glk4/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk3/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk6/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-glk2/igt@runner@aborted.html - shard-tglb: ([FAIL][138], [FAIL][139]) ([i915#1602] / [i915#2295] / [i915#2722]) -> ([FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143]) ([i915#1602] / [i915#1889] / [i915#2295] / [i915#2722]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb6/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9455/shard-tglb8/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb8/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb7/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb2/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/shard-tglb5/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112016]: https://bugs.freedesktop.org/show_bug.cgi?id=112016 [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022 [fdo#112025]: https://bugs.freedesktop.org/show_bug.cgi?id=112025 [fdo#112041]: https://bugs.freedesktop.org/show_bug.cgi?id=112041 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [fdo#112306]: https://bugs.freedesktop.org/show_bug.cgi?id=112306 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149 [i915#1187]: https://gitlab.freedesktop.org/drm/intel/issues/1187 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165 [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1889]: https://gitlab.freed == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5256/index.html [-- Attachment #1.2: Type: text/html, Size: 35656 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-12-09 5:51 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-12-07 16:11 [igt-dev] [PATCH i-g-t 1/2] i915/query: Cross-check engine list against execbuf interface Chris Wilson 2020-12-07 16:11 ` [igt-dev] [PATCH i-g-t 2/2] i915/query: Directly check query results against GETPARAM Chris Wilson 2020-12-08 11:04 ` Petri Latvala 2020-12-08 11:18 ` [igt-dev] [Intel-gfx] " Tvrtko Ursulin 2020-12-08 11:31 ` Chris Wilson 2020-12-07 17:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915/query: Cross-check engine list against execbuf interface Patchwork 2020-12-07 19:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-12-08 11:01 ` Petri Latvala 2020-12-08 11:56 ` [Intel-gfx] [PATCH i-g-t 1/2] " Andi Shyti 2020-12-09 5:51 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox