* [igt-dev] [PATCH i-g-t v5 0/1] tests/i915/gem_ctx_persistence: Set context with supported engines
@ 2020-01-29 15:24 Bommu Krishnaiah
2020-01-29 15:24 ` [igt-dev] [PATCH i-g-t v5 1/1] " Bommu Krishnaiah
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Bommu Krishnaiah @ 2020-01-29 15:24 UTC (permalink / raw)
To: igt-dev; +Cc: Bommu Krishnaiah, Tvrtko Ursulin
Update the context with supported engines on the platform with set_property
I915_CONTEXT_PARAM_ENGINES to make sure the work load is submitted to
the available engines only.
v2: addressed the review comments.
v3: addressed v2 review comments.
V4: Re-introduced the gem_context_set_all_engines() API,test_process_mixed()
test creating new forked process, to set engine map to new forked process
I added gem_context_set_all_engines() API.
v5: addressed v4 review comments.
Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Bommu Krishnaiah (1):
tests/i915/gem_ctx_persistence: Set context with supported engines
tests/i915/gem_ctx_persistence.c | 55 +++++++++++++++++++++++++-------
1 file changed, 44 insertions(+), 11 deletions(-)
--
2.24.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] [PATCH i-g-t v5 1/1] tests/i915/gem_ctx_persistence: Set context with supported engines
2020-01-29 15:24 [igt-dev] [PATCH i-g-t v5 0/1] tests/i915/gem_ctx_persistence: Set context with supported engines Bommu Krishnaiah
@ 2020-01-29 15:24 ` Bommu Krishnaiah
2020-01-29 15:57 ` Chris Wilson
2020-01-29 17:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_ctx_persistence: Set context with supported engines (rev6) Patchwork
2020-02-01 2:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 1 reply; 5+ messages in thread
From: Bommu Krishnaiah @ 2020-01-29 15:24 UTC (permalink / raw)
To: igt-dev; +Cc: Bommu Krishnaiah, Tvrtko Ursulin
Update the context with supported engines on the platform with set_property
I915_CONTEXT_PARAM_ENGINES to make sure the work load is submitted to
the available engines only.
v2: addressed the review comments.
v3: addressed v2 review comments.
V4: Re-introduced the gem_context_set_all_engines() API,test_process_mixed()
test creating new forked process, to set engine map to new forked process
I added gem_context_set_all_engines() API.
v5: addressed v4 review comments.
Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tests/i915/gem_ctx_persistence.c | 55 +++++++++++++++++++++++++-------
1 file changed, 44 insertions(+), 11 deletions(-)
diff --git a/tests/i915/gem_ctx_persistence.c b/tests/i915/gem_ctx_persistence.c
index 43333aaf..4249c8ce 100644
--- a/tests/i915/gem_ctx_persistence.c
+++ b/tests/i915/gem_ctx_persistence.c
@@ -156,7 +156,7 @@ static void test_persistence(int i915, unsigned int engine)
* request is retired -- no early termination.
*/
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, true);
spin = igt_spin_new(i915, ctx,
@@ -188,7 +188,7 @@ static void test_nonpersistent_cleanup(int i915, unsigned int engine)
* any inflight request is cancelled.
*/
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, false);
spin = igt_spin_new(i915, ctx,
@@ -217,7 +217,7 @@ static void test_nonpersistent_mixed(int i915, unsigned int engine)
igt_spin_t *spin;
uint32_t ctx;
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, i & 1);
spin = igt_spin_new(i915, ctx,
@@ -253,7 +253,7 @@ static void test_nonpersistent_hostile(int i915, unsigned int engine)
* the requests and cleanup the context.
*/
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, false);
spin = igt_spin_new(i915, ctx,
@@ -284,7 +284,7 @@ static void test_nonpersistent_hostile_preempt(int i915, unsigned int engine)
igt_require(gem_scheduler_has_preemption(i915));
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, true);
gem_context_set_priority(i915, ctx, 0);
spin[0] = igt_spin_new(i915, ctx,
@@ -295,7 +295,7 @@ static void test_nonpersistent_hostile_preempt(int i915, unsigned int engine)
igt_spin_busywait_until_started(spin[0]);
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, false);
gem_context_set_priority(i915, ctx, 1); /* higher priority than 0 */
spin[1] = igt_spin_new(i915, ctx,
@@ -445,7 +445,7 @@ static void test_nonpersistent_queued(int i915, unsigned int engine)
gem_quiescent_gpu(i915);
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
gem_context_set_persistence(i915, ctx, false);
spin = igt_spin_new(i915, ctx,
.engine = engine,
@@ -552,9 +552,10 @@ static void test_process(int i915)
gem_quiescent_gpu(i915);
}
-static void test_process_mixed(int i915, unsigned int engine)
+static void test_process_mixed(int pfd, unsigned int engine)
{
int fence[2], sv[2];
+ int i915;
/*
* If a process dies early, any nonpersistent contexts it had
@@ -565,14 +566,15 @@ static void test_process_mixed(int i915, unsigned int engine)
igt_require(socketpair(AF_UNIX, SOCK_DGRAM, 0, sv) == 0);
igt_fork(child, 1) {
- i915 = gem_reopen_driver(i915);
+ i915 = gem_reopen_driver(pfd);
gem_quiescent_gpu(i915);
for (int persists = 0; persists <= 1; persists++) {
igt_spin_t *spin;
uint32_t ctx;
- ctx = gem_context_create(i915);
+ ctx = gem_context_clone_with_engines(i915, 0);
+ gem_context_copy_engines(pfd, 0, i915, ctx);
gem_context_set_persistence(i915, ctx, persists);
spin = igt_spin_new(i915, ctx,
@@ -789,13 +791,44 @@ igt_main
igt_subtest("hang")
test_nohangcheck_hang(i915);
- __for_each_static_engine(e) {
+ for_each_engine(e, i915) {
igt_subtest_group {
igt_fixture {
gem_require_ring(i915, e->flags);
gem_require_contexts(i915);
}
+ igt_subtest_f("legacy-%s-persistence", e->name)
+ test_persistence(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-cleanup", e->name)
+ test_nonpersistent_cleanup(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-queued", e->name)
+ test_nonpersistent_queued(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-mixed", e->name)
+ test_nonpersistent_mixed(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-mixed-process", e->name)
+ test_process_mixed(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-hostile", e->name)
+ test_nonpersistent_hostile(i915, e->flags);
+
+ igt_subtest_f("legacy-%s-hostile-preempt", e->name)
+ test_nonpersistent_hostile_preempt(i915,
+ e->flags);
+ }
+ }
+
+ __for_each_physical_engine(i915, e) {
+ igt_subtest_group {
+ igt_fixture {
+ gem_require_ring(i915, e->flags);
+ gem_require_contexts(i915);
+ }
+
igt_subtest_f("%s-persistence", e->name)
test_persistence(i915, e->flags);
--
2.24.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 1/1] tests/i915/gem_ctx_persistence: Set context with supported engines
2020-01-29 15:24 ` [igt-dev] [PATCH i-g-t v5 1/1] " Bommu Krishnaiah
@ 2020-01-29 15:57 ` Chris Wilson
0 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2020-01-29 15:57 UTC (permalink / raw)
To: Bommu Krishnaiah, igt-dev; +Cc: Bommu Krishnaiah, Tvrtko Ursulin
Quoting Bommu Krishnaiah (2020-01-29 15:24:27)
> -static void test_process_mixed(int i915, unsigned int engine)
> +static void test_process_mixed(int pfd, unsigned int engine)
> {
> int fence[2], sv[2];
> + int i915;
This is local to the child, best given local scope.
> /*
> * If a process dies early, any nonpersistent contexts it had
> @@ -565,14 +566,15 @@ static void test_process_mixed(int i915, unsigned int engine)
> igt_require(socketpair(AF_UNIX, SOCK_DGRAM, 0, sv) == 0);
>
> igt_fork(child, 1) {
> - i915 = gem_reopen_driver(i915);
> + i915 = gem_reopen_driver(pfd);
> gem_quiescent_gpu(i915);
>
> for (int persists = 0; persists <= 1; persists++) {
> igt_spin_t *spin;
> uint32_t ctx;
>
> - ctx = gem_context_create(i915);
> + ctx = gem_context_clone_with_engines(i915, 0);
No point cloning from the wrong context,
> + gem_context_copy_engines(pfd, 0, i915, ctx);
when you copy across the engines[] anyway.
> gem_context_set_persistence(i915, ctx, persists);
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_ctx_persistence: Set context with supported engines (rev6)
2020-01-29 15:24 [igt-dev] [PATCH i-g-t v5 0/1] tests/i915/gem_ctx_persistence: Set context with supported engines Bommu Krishnaiah
2020-01-29 15:24 ` [igt-dev] [PATCH i-g-t v5 1/1] " Bommu Krishnaiah
@ 2020-01-29 17:34 ` Patchwork
2020-02-01 2:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-01-29 17:34 UTC (permalink / raw)
To: Bommu Krishnaiah; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_ctx_persistence: Set context with supported engines (rev6)
URL : https://patchwork.freedesktop.org/series/71810/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7838 -> IGTPW_4030
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/index.html
Known issues
------------
Here are the changes found in IGTPW_4030 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0:
- fi-cml-s: [PASS][1] -> [FAIL][2] ([fdo#103375])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cml-s/igt@gem_exec_suspend@basic-s0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-cml-s/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- fi-tgl-y: [PASS][3] -> [FAIL][4] ([CI#94])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-tgl-y/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_pm_rpm@module-reload:
- fi-skl-6770hq: [PASS][5] -> [FAIL][6] ([i915#178])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live_execlists:
- fi-glk-dsi: [PASS][7] -> [INCOMPLETE][8] ([i915#529] / [i915#58] / [k.org#198133])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-glk-dsi/igt@i915_selftest@live_execlists.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-glk-dsi/igt@i915_selftest@live_execlists.html
- fi-icl-dsi: [PASS][9] -> [INCOMPLETE][10] ([i915#140])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-icl-dsi/igt@i915_selftest@live_execlists.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-icl-dsi/igt@i915_selftest@live_execlists.html
* igt@prime_self_import@basic-llseek-bad:
- fi-tgl-y: [PASS][11] -> [DMESG-WARN][12] ([CI#94] / [i915#402]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-tgl-y/igt@prime_self_import@basic-llseek-bad.html
#### Possible fixes ####
* igt@i915_selftest@live_gem_contexts:
- fi-cfl-8700k: [INCOMPLETE][13] ([i915#424]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-cfl-8700k/igt@i915_selftest@live_gem_contexts.html
* igt@i915_selftest@live_gtt:
- fi-bdw-5557u: [TIMEOUT][15] ([fdo#112271]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-bdw-5557u/igt@i915_selftest@live_gtt.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-bdw-5557u/igt@i915_selftest@live_gtt.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][17] ([fdo#111096] / [i915#323]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
- fi-icl-dsi: [DMESG-WARN][19] ([i915#109]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-icl-dsi/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
* igt@prime_self_import@basic-llseek-size:
- fi-tgl-y: [DMESG-WARN][21] ([CI#94] / [i915#402]) -> [PASS][22] +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-tgl-y/igt@prime_self_import@basic-llseek-size.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s3:
- fi-cml-s: [TIMEOUT][23] -> [FAIL][24] ([fdo#103375])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-cml-s/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live_blt:
- fi-hsw-4770r: [DMESG-FAIL][25] ([i915#725]) -> [DMESG-FAIL][26] ([i915#553] / [i915#725])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/fi-hsw-4770r/igt@i915_selftest@live_blt.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/fi-hsw-4770r/igt@i915_selftest@live_blt.html
[CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[i915#109]: https://gitlab.freedesktop.org/drm/intel/issues/109
[i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
[i915#178]: https://gitlab.freedesktop.org/drm/intel/issues/178
[i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424
[i915#529]: https://gitlab.freedesktop.org/drm/intel/issues/529
[i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
[i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
[i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (50 -> 48)
------------------------------
Additional (2): fi-byt-n2820 fi-bwr-2160
Missing (4): fi-ilk-m540 fi-byt-clapper fi-bdw-samus fi-hsw-4200u
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5404 -> IGTPW_4030
CI-20190529: 20190529
CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4030: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/index.html
IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_ctx_persistence: Set context with supported engines (rev6)
2020-01-29 15:24 [igt-dev] [PATCH i-g-t v5 0/1] tests/i915/gem_ctx_persistence: Set context with supported engines Bommu Krishnaiah
2020-01-29 15:24 ` [igt-dev] [PATCH i-g-t v5 1/1] " Bommu Krishnaiah
2020-01-29 17:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_ctx_persistence: Set context with supported engines (rev6) Patchwork
@ 2020-02-01 2:26 ` Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-02-01 2:26 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_ctx_persistence: Set context with supported engines (rev6)
URL : https://patchwork.freedesktop.org/series/71810/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7838_full -> IGTPW_4030_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_4030_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_4030_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_4030/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_4030_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_persistence@bcs0-mixed-process:
- shard-apl: [PASS][1] -> [FAIL][2] +3 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl8/igt@gem_ctx_persistence@bcs0-mixed-process.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-apl1/igt@gem_ctx_persistence@bcs0-mixed-process.html
- shard-iclb: [PASS][3] -> [FAIL][4] +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@gem_ctx_persistence@bcs0-mixed-process.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb4/igt@gem_ctx_persistence@bcs0-mixed-process.html
- shard-kbl: [PASS][5] -> [FAIL][6] +4 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl6/igt@gem_ctx_persistence@bcs0-mixed-process.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl7/igt@gem_ctx_persistence@bcs0-mixed-process.html
* igt@gem_ctx_persistence@rcs0-mixed-process:
- shard-glk: [PASS][7] -> [FAIL][8] +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-glk6/igt@gem_ctx_persistence@rcs0-mixed-process.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-glk2/igt@gem_ctx_persistence@rcs0-mixed-process.html
* igt@gem_ctx_persistence@vcs0-mixed-process:
- shard-tglb: [PASS][9] -> [FAIL][10] +4 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb6/igt@gem_ctx_persistence@vcs0-mixed-process.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-tglb2/igt@gem_ctx_persistence@vcs0-mixed-process.html
- shard-glk: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-glk3/igt@gem_ctx_persistence@vcs0-mixed-process.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][12] -> [TIMEOUT][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl2/igt@gen9_exec_parse@allowed-single.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-apl2/igt@gen9_exec_parse@allowed-single.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@gem_ctx_persistence@vcs1-hang}:
- shard-iclb: [SKIP][14] ([fdo#109276]) -> [SKIP][15] +1 similar issue
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb6/igt@gem_ctx_persistence@vcs1-hang.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb7/igt@gem_ctx_persistence@vcs1-hang.html
Known issues
------------
Here are the changes found in IGTPW_4030_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@vcs1-queued:
- shard-iclb: [PASS][16] -> [SKIP][17] ([fdo#112080]) +16 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_ctx_persistence@vcs1-queued.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb8/igt@gem_ctx_persistence@vcs1-queued.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-hsw: [PASS][18] -> [TIMEOUT][19] ([fdo#112271] / [i915#1084] / [i915#775])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw8/igt@gem_eio@in-flight-contexts-10ms.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-hsw2/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_exec_schedule@fifo-bsd1:
- shard-iclb: [PASS][20] -> [SKIP][21] ([fdo#109276]) +16 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb4/igt@gem_exec_schedule@fifo-bsd1.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb5/igt@gem_exec_schedule@fifo-bsd1.html
* igt@gem_exec_schedule@preempt-queue-bsd:
- shard-iclb: [PASS][22] -> [SKIP][23] ([fdo#112146]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd.html
* igt@i915_pm_rps@waitboost:
- shard-iclb: [PASS][24] -> [FAIL][25] ([i915#413])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@i915_pm_rps@waitboost.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb2/igt@i915_pm_rps@waitboost.html
* igt@i915_selftest@live_execlists:
- shard-iclb: [PASS][26] -> [INCOMPLETE][27] ([i915#140])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@i915_selftest@live_execlists.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb3/igt@i915_selftest@live_execlists.html
* igt@i915_suspend@forcewake:
- shard-kbl: [PASS][28] -> [INCOMPLETE][29] ([fdo#103665] / [fdo#112219])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl3/igt@i915_suspend@forcewake.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl4/igt@i915_suspend@forcewake.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-kbl: [PASS][30] -> [INCOMPLETE][31] ([CI#80] / [fdo#103665] / [i915#600])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-glk: [PASS][32] -> [FAIL][33] ([i915#49])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
- shard-apl: [PASS][34] -> [DMESG-WARN][35] ([i915#180]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][36] -> [SKIP][37] ([fdo#109441]) +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: [PASS][38] -> [DMESG-WARN][39] ([i915#180]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-hsw: [PASS][40] -> [FAIL][41] ([i915#831])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw2/igt@prime_mmap_coherency@ioctl-errors.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-hsw8/igt@prime_mmap_coherency@ioctl-errors.html
#### Possible fixes ####
* igt@gem_busy@busy-vcs1:
- shard-iclb: [SKIP][42] ([fdo#112080]) -> [PASS][43] +7 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@gem_busy@busy-vcs1.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb1/igt@gem_busy@busy-vcs1.html
* igt@gem_ctx_persistence@vcs1-cleanup:
- shard-iclb: [SKIP][44] ([fdo#109276] / [fdo#112080]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@gem_ctx_persistence@vcs1-cleanup.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb2/igt@gem_ctx_persistence@vcs1-cleanup.html
* igt@gem_ctx_shared@exec-single-timeline-bsd:
- shard-iclb: [SKIP][46] ([fdo#110841]) -> [PASS][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html
* igt@gem_exec_balancer@hang:
- shard-iclb: [TIMEOUT][48] ([fdo#112271]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_balancer@hang.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb8/igt@gem_exec_balancer@hang.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [SKIP][50] ([fdo#112146]) -> [PASS][51] +7 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_exec_schedule@preempt-queue-bsd1:
- shard-iclb: [SKIP][52] ([fdo#109276]) -> [PASS][53] +16 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@gem_exec_schedule@preempt-queue-bsd1.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-hsw: [FAIL][54] ([i915#694]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@gem_partial_pwrite_pread@writes-after-reads.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-hsw1/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-kbl: [FAIL][56] ([i915#644]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl3/igt@gem_ppgtt@flink-and-close-vma-leak.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@i915_pm_rps@reset:
- shard-tglb: [FAIL][58] ([i915#413]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb8/igt@i915_pm_rps@reset.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-tglb1/igt@i915_pm_rps@reset.html
- shard-iclb: [FAIL][60] ([i915#413]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb1/igt@i915_pm_rps@reset.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb8/igt@i915_pm_rps@reset.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][62] ([i915#180]) -> [PASS][63] +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-hsw: [DMESG-WARN][64] ([i915#44]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw5/igt@kms_atomic_transition@plane-all-modeset-transition.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-hsw2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_cursor_crc@pipe-a-cursor-suspend:
- shard-kbl: [DMESG-WARN][66] ([i915#180]) -> [PASS][67] +3 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-iclb: [TIMEOUT][68] -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb8/igt@kms_fbcon_fbt@psr-suspend.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [SKIP][70] ([fdo#109642] / [fdo#111068]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb1/igt@kms_psr2_su@frontbuffer.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-iclb: [SKIP][72] ([fdo#109441]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@perf@gen12-mi-rpc:
- shard-tglb: [TIMEOUT][74] ([fdo#112271] / [i915#1085] / [i915#472]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb5/igt@perf@gen12-mi-rpc.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-tglb7/igt@perf@gen12-mi-rpc.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [FAIL][76] ([IGT#28]) -> [SKIP][77] ([fdo#112080]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_ctx_persistence@vcs1-mixed-process:
- shard-iclb: [SKIP][78] ([fdo#109276] / [fdo#112080]) -> [SKIP][79] ([fdo#112080]) +10 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-iclb3/igt@gem_ctx_persistence@vcs1-mixed-process.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-iclb8/igt@gem_ctx_persistence@vcs1-mixed-process.html
* igt@gem_eio@in-flight-1us:
- shard-apl: [TIMEOUT][80] ([fdo#112271]) -> [INCOMPLETE][81] ([CI#80] / [fdo#103927])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-apl6/igt@gem_eio@in-flight-1us.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-apl1/igt@gem_eio@in-flight-1us.html
* igt@gem_tiled_blits@interruptible:
- shard-hsw: [FAIL][82] ([i915#694]) -> [FAIL][83] ([i915#818])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-hsw1/igt@gem_tiled_blits@interruptible.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-hsw1/igt@gem_tiled_blits@interruptible.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: [FAIL][84] ([i915#454]) -> [SKIP][85] ([i915#468])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7838/shard-tglb5/igt@i915_pm_dc@dc6-psr.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/shard-tglb2/igt@i915_pm_dc@dc6-psr.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
[IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[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#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[fdo#112219]: https://bugs.freedesktop.org/show_bug.cgi?id=112219
[fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
[i915#1084]: https://gitlab.freedesktop.org/drm/intel/issues/1084
[i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085
[i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413
[i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
[i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472
[i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
[i915#600]: https://gitlab.freedesktop.org/drm/intel/issues/600
[i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
[i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
[i915#775]: https://gitlab.freedesktop.org/drm/intel/issues/775
[i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
[i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831
Participating hosts (10 -> 8)
------------------------------
Missing (2): pig-skl-6260u pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5404 -> IGTPW_4030
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_4030: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4030/index.html
IGT_5404: 4147bab8e3dcaf11bd657b5fb4c109708e94e60c @ 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_4030/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-02-01 2:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-29 15:24 [igt-dev] [PATCH i-g-t v5 0/1] tests/i915/gem_ctx_persistence: Set context with supported engines Bommu Krishnaiah
2020-01-29 15:24 ` [igt-dev] [PATCH i-g-t v5 1/1] " Bommu Krishnaiah
2020-01-29 15:57 ` Chris Wilson
2020-01-29 17:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_ctx_persistence: Set context with supported engines (rev6) Patchwork
2020-02-01 2:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox