* [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test
@ 2019-11-27 12:19 Juha-Pekka Heikkila
2019-11-27 12:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Juha-Pekka Heikkila @ 2019-11-27 12:19 UTC (permalink / raw)
To: igt-dev
starting pipe crc causes modeset on psr panels which take
lot of time. Fix this by starting crc only in the beginning
and stop at the end of test.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_cursor_crc.c | 28 ++++++++++++++++++----------
1 file changed, 18 insertions(+), 10 deletions(-)
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 0125122..6c4c457 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -175,10 +175,15 @@ static void do_single_test(data_t *data, int x, int y)
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
if (data->flags & (TEST_DPMS | TEST_SUSPEND)) {
igt_crc_t crc_after;
+ /*
+ * stop/start crc to avoid dmesg notifications about userspace
+ * reading too slow.
+ */
+ igt_pipe_crc_stop(pipe_crc);
if (data->flags & TEST_DPMS) {
igt_debug("dpms off/on cycle\n");
@@ -194,7 +199,8 @@ static void do_single_test(data_t *data, int x, int y)
igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
SUSPEND_TEST_NONE);
- igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
+ igt_pipe_crc_start(pipe_crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc_after);
igt_assert_crc_equal(&crc, &crc_after);
}
@@ -208,7 +214,8 @@ static void do_single_test(data_t *data, int x, int y)
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
+
igt_assert_crc_equal(&crc, &ref_crc);
/* Clear screen afterwards */
@@ -344,6 +351,7 @@ static void cleanup_crtc(data_t *data)
{
igt_display_t *display = &data->display;
+ igt_pipe_crc_stop(data->pipe_crc);
igt_pipe_crc_free(data->pipe_crc);
data->pipe_crc = NULL;
@@ -359,8 +367,6 @@ static void prepare_crtc(data_t *data, igt_output_t *output,
igt_display_t *display = &data->display;
igt_plane_t *primary;
- cleanup_crtc(data);
-
/* select the pipe we want to use */
igt_output_set_pipe(output, data->pipe);
@@ -393,7 +399,8 @@ static void prepare_crtc(data_t *data, igt_output_t *output,
data->refresh = mode->vrefresh;
/* get reference crc w/o cursor */
- igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc);
+ igt_pipe_crc_start(data->pipe_crc);
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &data->ref_crc);
}
static void test_cursor_alpha(data_t *data, double a)
@@ -420,7 +427,7 @@ static void test_cursor_alpha(data_t *data, double a)
cursor_enable(data);
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
cursor_disable(data);
igt_remove_fb(data->drm_fd, &data->fb);
@@ -431,7 +438,7 @@ static void test_cursor_alpha(data_t *data, double a)
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
igt_assert_crc_equal(&crc, &ref_crc);
/*Clear Screen*/
@@ -456,6 +463,7 @@ static void run_test(data_t *data, void (*testfunc)(data_t *), int cursor_w, int
{
prepare_crtc(data, data->output, cursor_w, cursor_h);
testfunc(data);
+ cleanup_crtc(data);
}
static void create_cursor_fb(data_t *data, int cur_w, int cur_h)
@@ -537,7 +545,7 @@ static void test_cursor_size(data_t *data)
igt_fb_set_size(&data->fb, cursor, size, size);
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &crc[i]);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc[i]);
}
cursor_disable(data);
igt_display_commit(display);
@@ -551,7 +559,7 @@ static void test_cursor_size(data_t *data)
igt_display_commit(display);
igt_wait_for_vblank(data->drm_fd, data->pipe);
- igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
+ igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
/* Clear screen afterwards */
cr = igt_get_cairo_ctx(data->drm_fd, &data->primary_fb);
igt_paint_color(cr, 0, 0, data->screenw, data->screenh,
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
@ 2019-11-27 12:56 ` Patchwork
2019-11-27 13:21 ` Petri Latvala
2019-11-27 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (5 subsequent siblings)
6 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2019-11-27 12:56 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev3)
URL : https://patchwork.freedesktop.org/series/70061/
State : warning
== Summary ==
Did not get list of undocumented tests for this run, something is wrong!
Other than that, pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283 for the overview.
test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808):
[test_root] Directory that contains the IGT tests. The environment
variable IGT_TEST_ROOT will be used if set, overriding
this option if given.
Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirnqK5Tn/test-list.txt
-------
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
FAILED: meson-test
/usr/bin/meson test --no-rebuild --print-errorlogs
ninja: build stopped: subcommand failed.
section_end:1574859307:build_script
^[[0Ksection_start:1574859307:after_script
^[[0Ksection_end:1574859310:after_script
^[[0Ksection_start:1574859310:upload_artifacts_on_failure
^[[0K^[[32;1mUploading artifacts...^[[0;m
build: found 1354 matching files ^[[0;m
Uploading artifacts to coordinator... ok ^[[0;m id^[[0;m=1025808 responseStatus^[[0;m=201 Created token^[[0;m=7gyoDXsk
section_end:1574859319:upload_artifacts_on_failure
^[[0K^[[31;1mERROR: Job failed: exit code 1
^[[0;m
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 12:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
@ 2019-11-27 13:21 ` Petri Latvala
2019-11-27 13:40 ` Arkadiusz Hiler
0 siblings, 1 reply; 13+ messages in thread
From: Petri Latvala @ 2019-11-27 13:21 UTC (permalink / raw)
To: igt-dev
On Wed, Nov 27, 2019 at 12:56:43PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: tests/kms_cursor_crc: start crc only once per test (rev3)
> URL : https://patchwork.freedesktop.org/series/70061/
> State : warning
>
> == Summary ==
>
> Did not get list of undocumented tests for this run, something is wrong!
>
> Other than that, pipeline status: FAILED.
>
> see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283 for the overview.
>
> test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808):
> [test_root] Directory that contains the IGT tests. The environment
> variable IGT_TEST_ROOT will be used if set, overriding
> this option if given.
> Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirnqK5Tn/test-list.txt
Retrying this job succeeded. Arek, something wrong with the artifacts, deploying them, or something else?
--
Petri Latvala
> -------
>
> Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
> FAILED: meson-test
> /usr/bin/meson test --no-rebuild --print-errorlogs
> ninja: build stopped: subcommand failed.
> section_end:1574859307:build_script
> ^[[0Ksection_start:1574859307:after_script
> ^[[0Ksection_end:1574859310:after_script
> ^[[0Ksection_start:1574859310:upload_artifacts_on_failure
> ^[[0K^[[32;1mUploading artifacts...^[[0;m
> build: found 1354 matching files ^[[0;m
> Uploading artifacts to coordinator... ok ^[[0;m id^[[0;m=1025808 responseStatus^[[0;m=201 Created token^[[0;m=7gyoDXsk
> section_end:1574859319:upload_artifacts_on_failure
> ^[[0K^[[31;1mERROR: Job failed: exit code 1
> ^[[0;m
>
> == Logs ==
>
> For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
2019-11-27 12:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
@ 2019-11-27 13:30 ` Patchwork
2019-11-27 14:03 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-11-27 13:30 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev3)
URL : https://patchwork.freedesktop.org/series/70061/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7430 -> IGTPW_3767
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/index.html
Known issues
------------
Here are the changes found in IGTPW_3767 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_chamelium@dp-crc-fast:
- fi-kbl-7500u: [PASS][1] -> [FAIL][2] ([fdo#109483] / [fdo#109635 ])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- fi-skl-lmem: [DMESG-WARN][3] ([fdo#112261]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-skl-lmem/igt@i915_pm_rpm@module-reload.html
* igt@kms_frontbuffer_tracking@basic:
- fi-icl-u2: [FAIL][5] ([fdo#103167]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
#### Warnings ####
* igt@kms_busy@basic-flip-pipe-b:
- fi-kbl-x1275: [DMESG-WARN][7] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][8] ([fdo#103558] / [fdo#105602]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-kbl-x1275/igt@kms_busy@basic-flip-pipe-b.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-kbl-x1275/igt@kms_busy@basic-flip-pipe-b.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][9] ([fdo#111407]) -> [FAIL][10] ([fdo#111045] / [fdo#111096])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-kbl-x1275: [DMESG-WARN][11] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][12] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +6 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
[fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635
[fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
[fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
[fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
[fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
[fdo#112298]: https://bugs.freedesktop.org/show_bug.cgi?id=112298
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5310 -> IGTPW_3767
CI-20190529: 20190529
CI_DRM_7430: 39c64d2cb4dcae379486b9887c224472f30b12ce @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3767: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/index.html
IGT_5310: d1ea62b3f759f10ff6860561ba82e5c4902511d3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 13:21 ` Petri Latvala
@ 2019-11-27 13:40 ` Arkadiusz Hiler
2019-11-27 13:43 ` Petri Latvala
0 siblings, 1 reply; 13+ messages in thread
From: Arkadiusz Hiler @ 2019-11-27 13:40 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
On Wed, Nov 27, 2019 at 03:21:40PM +0200, Petri Latvala wrote:
> On Wed, Nov 27, 2019 at 12:56:43PM +0000, Patchwork wrote:
> > == Series Details ==
> >
> > Series: tests/kms_cursor_crc: start crc only once per test (rev3)
> > URL : https://patchwork.freedesktop.org/series/70061/
> > State : warning
> >
> > == Summary ==
> >
> > Did not get list of undocumented tests for this run, something is wrong!
> >
> > Other than that, pipeline status: FAILED.
> >
> > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283 for the overview.
> >
> > test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808):
> > [test_root] Directory that contains the IGT tests. The environment
> > variable IGT_TEST_ROOT will be used if set, overriding
> > this option if given.
> > Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirnqK5Tn/test-list.txt
>
> Retrying this job succeeded. Arek, something wrong with the artifacts, deploying them, or something else?
The actual fails is a few lines up:
https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808
The output from the failed tests:
277/278 runner TIMEOUT 30.02 s
Issue: https://gitlab.freedesktop.org/freedesktop/freedesktop/issues/197
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 13:40 ` Arkadiusz Hiler
@ 2019-11-27 13:43 ` Petri Latvala
0 siblings, 0 replies; 13+ messages in thread
From: Petri Latvala @ 2019-11-27 13:43 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
On Wed, Nov 27, 2019 at 03:40:15PM +0200, Arkadiusz Hiler wrote:
> On Wed, Nov 27, 2019 at 03:21:40PM +0200, Petri Latvala wrote:
> > On Wed, Nov 27, 2019 at 12:56:43PM +0000, Patchwork wrote:
> > > == Series Details ==
> > >
> > > Series: tests/kms_cursor_crc: start crc only once per test (rev3)
> > > URL : https://patchwork.freedesktop.org/series/70061/
> > > State : warning
> > >
> > > == Summary ==
> > >
> > > Did not get list of undocumented tests for this run, something is wrong!
> > >
> > > Other than that, pipeline status: FAILED.
> > >
> > > see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/83283 for the overview.
> > >
> > > test:ninja-test-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808):
> > > [test_root] Directory that contains the IGT tests. The environment
> > > variable IGT_TEST_ROOT will be used if set, overriding
> > > this option if given.
> > > Cannot open /builds/gfx-ci/igt-ci-tags/build/tmpdirnqK5Tn/test-list.txt
> >
> > Retrying this job succeeded. Arek, something wrong with the artifacts, deploying them, or something else?
>
> The actual fails is a few lines up:
>
> https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/1025808
> The output from the failed tests:
> 277/278 runner TIMEOUT 30.02 s
>
> Issue: https://gitlab.freedesktop.org/freedesktop/freedesktop/issues/197
Fair enough, /me blind.
https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/46 filed.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_cursor_crc: start crc only once per test (rev4)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
2019-11-27 12:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
2019-11-27 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-11-27 14:03 ` Patchwork
2019-11-27 14:22 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-11-27 14:03 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev4)
URL : https://patchwork.freedesktop.org/series/70061/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7431 -> IGTPW_3768
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3768 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3768, 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_3768/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3768:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live_gt_heartbeat:
- fi-bsw-n3050: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-bsw-n3050/igt@i915_selftest@live_gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-bsw-n3050/igt@i915_selftest@live_gt_heartbeat.html
Known issues
------------
Here are the changes found in IGTPW_3768 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_blt:
- fi-hsw-peppy: [PASS][3] -> [DMESG-FAIL][4] ([fdo#112147])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-hsw-peppy/igt@i915_selftest@live_blt.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-hsw-peppy/igt@i915_selftest@live_blt.html
* igt@i915_selftest@live_gem_contexts:
- fi-cfl-guc: [PASS][5] -> [INCOMPLETE][6] ([fdo#106070] / [fdo#111700])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
#### Warnings ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- fi-kbl-x1275: [DMESG-WARN][7] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][8] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-kbl-x1275: [DMESG-WARN][9] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][10] ([fdo#103558] / [fdo#105602]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#106070]: https://bugs.freedesktop.org/show_bug.cgi?id=106070
[fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
[fdo#111700]: https://bugs.freedesktop.org/show_bug.cgi?id=111700
[fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
[fdo#112260]: https://bugs.freedesktop.org/show_bug.cgi?id=112260
[fdo#112298]: https://bugs.freedesktop.org/show_bug.cgi?id=112298
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5310 -> IGTPW_3768
CI-20190529: 20190529
CI_DRM_7431: 1e2339ed90d558c4bb1d154b0ea2a51e11da8196 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3768: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
IGT_5310: d1ea62b3f759f10ff6860561ba82e5c4902511d3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_cursor_crc: start crc only once per test (rev4)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
` (2 preceding siblings ...)
2019-11-27 14:03 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
@ 2019-11-27 14:22 ` Patchwork
2019-11-28 11:34 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-11-27 14:22 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev4)
URL : https://patchwork.freedesktop.org/series/70061/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7431 -> IGTPW_3768
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
Known issues
------------
Here are the changes found in IGTPW_3768 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_blt:
- fi-hsw-peppy: [PASS][1] -> [DMESG-FAIL][2] ([fdo#112147])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-hsw-peppy/igt@i915_selftest@live_blt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-hsw-peppy/igt@i915_selftest@live_blt.html
* igt@i915_selftest@live_gem_contexts:
- fi-cfl-guc: [PASS][3] -> [INCOMPLETE][4] ([fdo#106070] / [fdo#111700])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-cfl-guc/igt@i915_selftest@live_gem_contexts.html
* igt@i915_selftest@live_gt_heartbeat:
- fi-bsw-n3050: [PASS][5] -> [DMESG-FAIL][6] ([fdo#112415])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-bsw-n3050/igt@i915_selftest@live_gt_heartbeat.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-bsw-n3050/igt@i915_selftest@live_gt_heartbeat.html
#### Warnings ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- fi-kbl-x1275: [DMESG-WARN][7] ([fdo#103558] / [fdo#105602]) -> [DMESG-WARN][8] ([fdo#103558] / [fdo#105602] / [fdo#105763]) +2 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-modeset:
- fi-kbl-x1275: [DMESG-WARN][9] ([fdo#103558] / [fdo#105602] / [fdo#105763]) -> [DMESG-WARN][10] ([fdo#103558] / [fdo#105602]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/fi-kbl-x1275/igt@kms_flip@basic-flip-vs-modeset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
[fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#106070]: https://bugs.freedesktop.org/show_bug.cgi?id=106070
[fdo#109964]: https://bugs.freedesktop.org/show_bug.cgi?id=109964
[fdo#111700]: https://bugs.freedesktop.org/show_bug.cgi?id=111700
[fdo#112147]: https://bugs.freedesktop.org/show_bug.cgi?id=112147
[fdo#112260]: https://bugs.freedesktop.org/show_bug.cgi?id=112260
[fdo#112298]: https://bugs.freedesktop.org/show_bug.cgi?id=112298
[fdo#112415]: https://bugs.freedesktop.org/show_bug.cgi?id=112415
Participating hosts (52 -> 45)
------------------------------
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5310 -> IGTPW_3768
CI-20190529: 20190529
CI_DRM_7431: 1e2339ed90d558c4bb1d154b0ea2a51e11da8196 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3768: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
IGT_5310: d1ea62b3f759f10ff6860561ba82e5c4902511d3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev3)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
` (3 preceding siblings ...)
2019-11-27 14:22 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-11-28 11:34 ` Patchwork
2019-11-28 12:32 ` [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Petri Latvala
2019-11-28 13:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
6 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2019-11-28 11:34 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev3)
URL : https://patchwork.freedesktop.org/series/70061/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7430_full -> IGTPW_3767_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3767_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3767_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_3767/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3767_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-tglb: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
Known issues
------------
Here are the changes found in IGTPW_3767_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_shared@exec-single-timeline-bsd2:
- shard-iclb: [PASS][2] -> [SKIP][3] ([fdo#109276]) +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd2.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd2.html
* igt@gem_ctx_shared@q-smoketest-blt:
- shard-tglb: [PASS][4] -> [INCOMPLETE][5] ([fdo#111735])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb1/igt@gem_ctx_shared@q-smoketest-blt.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb6/igt@gem_ctx_shared@q-smoketest-blt.html
* igt@gem_ctx_switch@vcs1-heavy-queue:
- shard-iclb: [PASS][6] -> [SKIP][7] ([fdo#112080])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb2/igt@gem_ctx_switch@vcs1-heavy-queue.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb8/igt@gem_ctx_switch@vcs1-heavy-queue.html
* igt@gem_exec_suspend@basic-s3:
- shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111736] / [fdo#111850])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb2/igt@gem_exec_suspend@basic-s3.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb1/igt@gem_exec_suspend@basic-s3.html
* igt@gem_persistent_relocs@forked-interruptible-thrashing:
- shard-snb: [PASS][10] -> [FAIL][11] ([fdo#112037])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-snb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-snb1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
* igt@gem_pipe_control_store_loop@reused-buffer:
- shard-tglb: [PASS][12] -> [INCOMPLETE][13] ([fdo#111998])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb8/igt@gem_pipe_control_store_loop@reused-buffer.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb6/igt@gem_pipe_control_store_loop@reused-buffer.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][14] -> [FAIL][15] ([fdo#112392])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
- shard-apl: [PASS][16] -> [FAIL][17] ([fdo#112392])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-apl8/igt@gem_ppgtt@flink-and-close-vma-leak.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
- shard-hsw: [PASS][18] -> [DMESG-WARN][19] ([fdo#111870]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-hsw8/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-snb: [PASS][20] -> [DMESG-WARN][21] ([fdo#111870]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-kbl: [PASS][22] -> [DMESG-WARN][23] ([fdo#108566]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_suspend@forcewake:
- shard-tglb: [PASS][24] -> [INCOMPLETE][25] ([fdo#111832] / [fdo#111850])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb8/igt@i915_suspend@forcewake.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb2/igt@i915_suspend@forcewake.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-apl: [PASS][26] -> [DMESG-WARN][27] ([fdo#108566]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: [PASS][28] -> [FAIL][29] ([fdo#105363])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-tglb: [PASS][30] -> [INCOMPLETE][31] ([fdo#112393])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane@pixel-format-pipe-b-planes:
- shard-kbl: [PASS][32] -> [INCOMPLETE][33] ([fdo#103665])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-kbl4/igt@kms_plane@pixel-format-pipe-b-planes.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-kbl1/igt@kms_plane@pixel-format-pipe-b-planes.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-tglb: [PASS][34] -> [INCOMPLETE][35] ([fdo#111850])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
#### Possible fixes ####
* igt@gem_ctx_isolation@vcs1-clean:
- shard-iclb: [SKIP][36] ([fdo#109276] / [fdo#112080]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb8/igt@gem_ctx_isolation@vcs1-clean.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb2/igt@gem_ctx_isolation@vcs1-clean.html
* igt@gem_ctx_switch@legacy-bsd2-heavy:
- shard-iclb: [SKIP][38] ([fdo#109276]) -> [PASS][39] +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb5/igt@gem_ctx_switch@legacy-bsd2-heavy.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb1/igt@gem_ctx_switch@legacy-bsd2-heavy.html
* igt@gem_exec_basic@basic-vcs1:
- shard-iclb: [SKIP][40] ([fdo#112080]) -> [PASS][41] +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb6/igt@gem_exec_basic@basic-vcs1.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb2/igt@gem_exec_basic@basic-vcs1.html
* igt@gem_exec_parallel@fds:
- shard-tglb: [INCOMPLETE][42] ([fdo#111867]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb6/igt@gem_exec_parallel@fds.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb1/igt@gem_exec_parallel@fds.html
* igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive:
- shard-hsw: [TIMEOUT][44] ([fdo#112068 ]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-hsw: [DMESG-WARN][46] ([fdo#111870]) -> [PASS][47] +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-hsw7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-snb: [DMESG-WARN][48] ([fdo#111870]) -> [PASS][49] +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sync-unmap-after-close:
- shard-snb: [DMESG-WARN][50] ([fdo#110789] / [fdo#111870]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-snb2/igt@gem_userptr_blits@sync-unmap-after-close.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-snb: [SKIP][52] ([fdo#109271]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_selftest@live_hangcheck:
- shard-hsw: [DMESG-FAIL][54] ([fdo#111991]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-hsw7/igt@i915_selftest@live_hangcheck.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-hsw2/igt@i915_selftest@live_hangcheck.html
* igt@i915_selftest@mock_requests:
- shard-glk: [DMESG-WARN][56] ([fdo#112158]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-glk7/igt@i915_selftest@mock_requests.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-glk7/igt@i915_selftest@mock_requests.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-tglb: [INCOMPLETE][58] ([fdo#111832] / [fdo#111850]) -> [PASS][59] +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb1/igt@i915_suspend@fence-restore-tiled2untiled.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb9/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen:
- shard-kbl: [FAIL][60] ([fdo#103232]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
- shard-apl: [FAIL][62] ([fdo#103232]) -> [PASS][63] +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
- shard-glk: [FAIL][64] ([fdo#103232]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-glk7/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-glk9/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-iclb: [FAIL][66] ([fdo#103167]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-tglb: [FAIL][68] ([fdo#103167]) -> [PASS][69] +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [DMESG-WARN][70] ([fdo#108566]) -> [PASS][71] +3 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-tglb: [INCOMPLETE][72] ([fdo#111884]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-apl: [DMESG-WARN][74] ([fdo#108566]) -> [PASS][75] +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_setmode@basic:
- shard-hsw: [FAIL][76] ([fdo#99912]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-hsw1/igt@kms_setmode@basic.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-hsw6/igt@kms_setmode@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
[fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
[fdo#111736]: https://bugs.freedesktop.org/show_bug.cgi?id=111736
[fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
[fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
[fdo#111867]: https://bugs.freedesktop.org/show_bug.cgi?id=111867
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
[fdo#111991]: https://bugs.freedesktop.org/show_bug.cgi?id=111991
[fdo#111998]: https://bugs.freedesktop.org/show_bug.cgi?id=111998
[fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
[fdo#112068 ]: https://bugs.freedesktop.org/show_bug.cgi?id=112068
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112158]: https://bugs.freedesktop.org/show_bug.cgi?id=112158
[fdo#112392]: https://bugs.freedesktop.org/show_bug.cgi?id=112392
[fdo#112393]: https://bugs.freedesktop.org/show_bug.cgi?id=112393
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5310 -> IGTPW_3767
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7430: 39c64d2cb4dcae379486b9887c224472f30b12ce @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3767: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/index.html
IGT_5310: d1ea62b3f759f10ff6860561ba82e5c4902511d3 @ 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_3767/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
` (4 preceding siblings ...)
2019-11-28 11:34 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
@ 2019-11-28 12:32 ` Petri Latvala
2019-11-28 13:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
6 siblings, 0 replies; 13+ messages in thread
From: Petri Latvala @ 2019-11-28 12:32 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
On Wed, Nov 27, 2019 at 02:19:25PM +0200, Juha-Pekka Heikkila wrote:
> starting pipe crc causes modeset on psr panels which take
> lot of time. Fix this by starting crc only in the beginning
> and stop at the end of test.
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Hmm, some timing examples:
Old: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7430/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
Duration 135.06 seconds
New: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3767/shard-tglb2/igt@kms_cursor_crc@pipe-a-cursor-128x128-onscreen.html
Duration 4.04 seconds
That is more than juicy!
I had a vague recollection that we had plans to use sink CRCs for PSR
instead of pipe CRC, but a quick glance at git history revealed that
we stopped using sink CRCs for PSR panels because they required a
vblank interrupt and a PSR exit...
The changes look ok, I guess the only thing that could go wrong is a
test failure leading to skipping the pipe_crc_stop() call, thus never
stopping CRC collection. Until the process dies and the fd closes
itself. But that only affects the other subtests in the same binary
execution, if any, and it's already a test failure scenario so
meh. One for a TODO to cleanup and polish.
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> ---
> tests/kms_cursor_crc.c | 28 ++++++++++++++++++----------
> 1 file changed, 18 insertions(+), 10 deletions(-)
>
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 0125122..6c4c457 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -175,10 +175,15 @@ static void do_single_test(data_t *data, int x, int y)
> igt_display_commit(display);
>
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
>
> if (data->flags & (TEST_DPMS | TEST_SUSPEND)) {
> igt_crc_t crc_after;
> + /*
> + * stop/start crc to avoid dmesg notifications about userspace
> + * reading too slow.
> + */
> + igt_pipe_crc_stop(pipe_crc);
>
> if (data->flags & TEST_DPMS) {
> igt_debug("dpms off/on cycle\n");
> @@ -194,7 +199,8 @@ static void do_single_test(data_t *data, int x, int y)
> igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
> SUSPEND_TEST_NONE);
>
> - igt_pipe_crc_collect_crc(pipe_crc, &crc_after);
> + igt_pipe_crc_start(pipe_crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc_after);
> igt_assert_crc_equal(&crc, &crc_after);
> }
>
> @@ -208,7 +214,8 @@ static void do_single_test(data_t *data, int x, int y)
> igt_display_commit(display);
>
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
> +
> igt_assert_crc_equal(&crc, &ref_crc);
>
> /* Clear screen afterwards */
> @@ -344,6 +351,7 @@ static void cleanup_crtc(data_t *data)
> {
> igt_display_t *display = &data->display;
>
> + igt_pipe_crc_stop(data->pipe_crc);
> igt_pipe_crc_free(data->pipe_crc);
> data->pipe_crc = NULL;
>
> @@ -359,8 +367,6 @@ static void prepare_crtc(data_t *data, igt_output_t *output,
> igt_display_t *display = &data->display;
> igt_plane_t *primary;
>
> - cleanup_crtc(data);
> -
> /* select the pipe we want to use */
> igt_output_set_pipe(output, data->pipe);
>
> @@ -393,7 +399,8 @@ static void prepare_crtc(data_t *data, igt_output_t *output,
> data->refresh = mode->vrefresh;
>
> /* get reference crc w/o cursor */
> - igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc);
> + igt_pipe_crc_start(data->pipe_crc);
> + igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &data->ref_crc);
> }
>
> static void test_cursor_alpha(data_t *data, double a)
> @@ -420,7 +427,7 @@ static void test_cursor_alpha(data_t *data, double a)
> cursor_enable(data);
> igt_display_commit(display);
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc);
> cursor_disable(data);
> igt_remove_fb(data->drm_fd, &data->fb);
>
> @@ -431,7 +438,7 @@ static void test_cursor_alpha(data_t *data, double a)
>
> igt_display_commit(display);
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
> igt_assert_crc_equal(&crc, &ref_crc);
>
> /*Clear Screen*/
> @@ -456,6 +463,7 @@ static void run_test(data_t *data, void (*testfunc)(data_t *), int cursor_w, int
> {
> prepare_crtc(data, data->output, cursor_w, cursor_h);
> testfunc(data);
> + cleanup_crtc(data);
> }
>
> static void create_cursor_fb(data_t *data, int cur_w, int cur_h)
> @@ -537,7 +545,7 @@ static void test_cursor_size(data_t *data)
> igt_fb_set_size(&data->fb, cursor, size, size);
> igt_display_commit(display);
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &crc[i]);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &crc[i]);
> }
> cursor_disable(data);
> igt_display_commit(display);
> @@ -551,7 +559,7 @@ static void test_cursor_size(data_t *data)
>
> igt_display_commit(display);
> igt_wait_for_vblank(data->drm_fd, data->pipe);
> - igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
> + igt_pipe_crc_get_current(data->drm_fd, pipe_crc, &ref_crc);
> /* Clear screen afterwards */
> cr = igt_get_cairo_ctx(data->drm_fd, &data->primary_fb);
> igt_paint_color(cr, 0, 0, data->screenw, data->screenh,
> --
> 2.7.4
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4)
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
` (5 preceding siblings ...)
2019-11-28 12:32 ` [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Petri Latvala
@ 2019-11-28 13:29 ` Patchwork
2019-11-28 13:39 ` Petri Latvala
6 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2019-11-28 13:29 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
== Series Details ==
Series: tests/kms_cursor_crc: start crc only once per test (rev4)
URL : https://patchwork.freedesktop.org/series/70061/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7431_full -> IGTPW_3768_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3768_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3768_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_3768/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3768_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live_blt:
- shard-hsw: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw8/igt@i915_selftest@live_blt.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw1/igt@i915_selftest@live_blt.html
* igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
- shard-iclb: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb3/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
Known issues
------------
Here are the changes found in IGTPW_3768_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@bcs0-s3:
- shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) +2 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl6/igt@gem_ctx_isolation@bcs0-s3.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl4/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_ctx_isolation@rcs0-s3:
- shard-tglb: [PASS][6] -> [INCOMPLETE][7] ([fdo#111832])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb9/igt@gem_ctx_isolation@rcs0-s3.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb7/igt@gem_ctx_isolation@rcs0-s3.html
* igt@gem_eio@suspend:
- shard-tglb: [PASS][8] -> [INCOMPLETE][9] ([fdo#111850]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb9/igt@gem_eio@suspend.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb5/igt@gem_eio@suspend.html
* igt@gem_exec_basic@basic-vcs1:
- shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112080]) +3 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@gem_exec_basic@basic-vcs1.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb6/igt@gem_exec_basic@basic-vcs1.html
* igt@gem_exec_schedule@preempt-other-bsd:
- shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112146])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb5/igt@gem_exec_schedule@preempt-other-bsd.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@gem_exec_schedule@preempt-other-bsd.html
* igt@gem_exec_schedule@promotion-bsd1:
- shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#109276]) +2 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@gem_exec_schedule@promotion-bsd1.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb8/igt@gem_exec_schedule@promotion-bsd1.html
* igt@gem_exec_schedule@smoketest-bsd2:
- shard-tglb: [PASS][16] -> [INCOMPLETE][17] ([fdo#111998])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb5/igt@gem_exec_schedule@smoketest-bsd2.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb9/igt@gem_exec_schedule@smoketest-bsd2.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-glk: [PASS][18] -> [FAIL][19] ([fdo#112392])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-glk3/igt@gem_ppgtt@flink-and-close-vma-leak.html
- shard-apl: [PASS][20] -> [FAIL][21] ([fdo#112392])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl7/igt@gem_ppgtt@flink-and-close-vma-leak.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl8/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
- shard-snb: [PASS][22] -> [DMESG-WARN][23] ([fdo#111870])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
* igt@gem_userptr_blits@sync-unmap-after-close:
- shard-hsw: [PASS][24] -> [DMESG-WARN][25] ([fdo#111870])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw8/igt@gem_userptr_blits@sync-unmap-after-close.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html
- shard-kbl: [PASS][26] -> [INCOMPLETE][27] ([fdo#103665]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl4/igt@gem_userptr_blits@sync-unmap-after-close.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl6/igt@gem_userptr_blits@sync-unmap-after-close.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-snb: [PASS][28] -> [DMESG-WARN][29] ([fdo#110789] / [fdo#111870])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb7/igt@gem_userptr_blits@sync-unmap-cycles.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb7/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@i915_selftest@live_gem_contexts:
- shard-kbl: [PASS][30] -> [DMESG-FAIL][31] ([fdo#112402])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl6/igt@i915_selftest@live_gem_contexts.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl7/igt@i915_selftest@live_gem_contexts.html
* igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled:
- shard-iclb: [PASS][32] -> [INCOMPLETE][33] ([fdo#107713])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-blt-xtiled.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-glk: [PASS][34] -> [FAIL][35] ([fdo#103167])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-iclb: [PASS][36] -> [FAIL][37] ([fdo#103167]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglb: [PASS][38] -> [FAIL][39] ([fdo#103167]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
- shard-kbl: [PASS][40] -> [DMESG-WARN][41] ([fdo#108566]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
* igt@kms_setmode@basic:
- shard-apl: [PASS][42] -> [FAIL][43] ([fdo#99912])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl3/igt@kms_setmode@basic.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl3/igt@kms_setmode@basic.html
#### Possible fixes ####
* igt@gem_busy@extended-parallel-vcs1:
- shard-iclb: [SKIP][44] ([fdo#112080]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb3/igt@gem_busy@extended-parallel-vcs1.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@gem_busy@extended-parallel-vcs1.html
* igt@gem_ctx_isolation@vcs1-s3:
- shard-tglb: [INCOMPLETE][46] ([fdo#111832]) -> [PASS][47] +1 similar issue
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb5/igt@gem_ctx_isolation@vcs1-s3.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb9/igt@gem_ctx_isolation@vcs1-s3.html
* igt@gem_ctx_persistence@smoketest:
- shard-glk: [TIMEOUT][48] ([fdo#112404]) -> [PASS][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-glk7/igt@gem_ctx_persistence@smoketest.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-glk9/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_persistence@vcs1-mixed-process:
- shard-iclb: [SKIP][50] ([fdo#109276] / [fdo#112080]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb8/igt@gem_ctx_persistence@vcs1-mixed-process.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@gem_ctx_persistence@vcs1-mixed-process.html
* igt@gem_ctx_shared@exec-single-timeline-bsd:
- shard-iclb: [SKIP][52] ([fdo#110841]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb3/igt@gem_ctx_shared@exec-single-timeline-bsd.html
* igt@gem_ctx_switch@legacy-default:
- shard-hsw: [INCOMPLETE][54] ([fdo#103540]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw7/igt@gem_ctx_switch@legacy-default.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw1/igt@gem_ctx_switch@legacy-default.html
* igt@gem_exec_schedule@preempt-other-bsd2:
- shard-iclb: [SKIP][56] ([fdo#109276]) -> [PASS][57] +6 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb6/igt@gem_exec_schedule@preempt-other-bsd2.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@gem_exec_schedule@preempt-other-bsd2.html
* igt@gem_exec_schedule@smoketest-vebox:
- shard-tglb: [INCOMPLETE][58] ([fdo#111998]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb9/igt@gem_exec_schedule@smoketest-vebox.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb8/igt@gem_exec_schedule@smoketest-vebox.html
* igt@gem_persistent_relocs@forked-interruptible-thrashing:
- shard-kbl: [FAIL][60] ([fdo#112037]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl1/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-kbl: [FAIL][62] ([fdo#112392]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl2/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-snb: [DMESG-WARN][64] ([fdo#111870]) -> [PASS][65] +3 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-hsw: [DMESG-WARN][66] ([fdo#111870]) -> [PASS][67] +4 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [FAIL][68] ([fdo#111830 ]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@i915_pm_dc@dc6-psr.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@i915_pm_dc@dc6-psr.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-tglb: [INCOMPLETE][70] ([fdo#111832] / [fdo#111850]) -> [PASS][71] +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb4/igt@i915_suspend@fence-restore-tiled2untiled.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-apl: [DMESG-WARN][72] ([fdo#108566]) -> [PASS][73] +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl4/igt@i915_suspend@sysfs-reader.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl6/igt@i915_suspend@sysfs-reader.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-tglb: [DMESG-WARN][74] ([fdo#111600]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen:
- shard-apl: [FAIL][76] ([fdo#103232]) -> [PASS][77] +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
- shard-glk: [FAIL][78] ([fdo#103232]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-glk2/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-128x128-onscreen.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled:
- shard-kbl: [INCOMPLETE][80] ([fdo#103665]) -> [PASS][81] +2 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl3/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl2/igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-apl: [FAIL][82] ([fdo#105363]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-snb: [INCOMPLETE][84] ([fdo#105411]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-tglb: [INCOMPLETE][86] ([fdo#111884]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-kbl: [INCOMPLETE][88] ([fdo#103665] / [fdo#112356]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-tglb: [FAIL][90] ([fdo#103167]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [DMESG-WARN][92] ([fdo#108566]) -> [PASS][93] +7 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-iclb: [INCOMPLETE][94] ([fdo#106978] / [fdo#107713]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt:
- shard-tglb: [SKIP][96] -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-iclb: [FAIL][98] ([fdo#103167]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_lease@lease_unleased_connector:
- shard-snb: [SKIP][100] ([fdo#109271]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb2/igt@kms_lease@lease_unleased_connector.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb1/igt@kms_lease@lease_unleased_connector.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [FAIL][104] ([fdo#111329]) -> [SKIP][105] ([fdo#109276] / [fdo#112080])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_ctx_isolation@vcs2-dirty-create:
- shard-tglb: [SKIP][106] ([fdo#112080]) -> [SKIP][107] ([fdo#111912] / [fdo#112080])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb9/igt@gem_ctx_isolation@vcs2-dirty-create.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb1/igt@gem_ctx_isolation@vcs2-dirty-create.html
* igt@gem_ctx_isolation@vcs2-nonpriv-switch:
- shard-tglb: [SKIP][108] ([fdo#111912] / [fdo#112080]) -> [SKIP][109] ([fdo#112080])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb5/igt@gem_ctx_isolation@vcs2-nonpriv-switch.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb9/igt@gem_ctx_isolation@vcs2-nonpriv-switch.html
* igt@gem_exec_schedule@deep-render:
- shard-tglb: [INCOMPLETE][110] ([fdo#111671]) -> [FAIL][111] ([fdo#111646])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-tglb7/igt@gem_exec_schedule@deep-render.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-tglb1/igt@gem_exec_schedule@deep-render.html
* igt@gem_userptr_blits@sync-unmap-after-close:
- shard-snb: [DMESG-WARN][112] ([fdo#110789] / [fdo#111870]) -> [DMESG-WARN][113] ([fdo#111870])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
[fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
[fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
[fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
[fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
[fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
[fdo#111671]: https://bugs.freedesktop.org/show_bug.cgi?id=111671
[fdo#111830 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111830
[fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
[fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
[fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
[fdo#111884]: https://bugs.freedesktop.org/show_bug.cgi?id=111884
[fdo#111912]: https://bugs.freedesktop.org/show_bug.cgi?id=111912
[fdo#111998]: https://bugs.freedesktop.org/show_bug.cgi?id=111998
[fdo#112037]: https://bugs.freedesktop.org/show_bug.cgi?id=112037
[fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
[fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
[fdo#112356]: https://bugs.freedesktop.org/show_bug.cgi?id=112356
[fdo#112392]: https://bugs.freedesktop.org/show_bug.cgi?id=112392
[fdo#112402]: https://bugs.freedesktop.org/show_bug.cgi?id=112402
[fdo#112404]: https://bugs.freedesktop.org/show_bug.cgi?id=112404
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-glk-j5005 pig-hsw-4770r
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5310 -> IGTPW_3768
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_7431: 1e2339ed90d558c4bb1d154b0ea2a51e11da8196 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3768: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/index.html
IGT_5310: d1ea62b3f759f10ff6860561ba82e5c4902511d3 @ 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_3768/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4)
2019-11-28 13:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
@ 2019-11-28 13:39 ` Petri Latvala
2019-11-28 14:57 ` Juha-Pekka Heikkila
0 siblings, 1 reply; 13+ messages in thread
From: Petri Latvala @ 2019-11-28 13:39 UTC (permalink / raw)
To: igt-dev
On Thu, Nov 28, 2019 at 01:29:51PM +0000, Patchwork wrote:
> == Series Details ==
>
> Series: tests/kms_cursor_crc: start crc only once per test (rev4)
> URL : https://patchwork.freedesktop.org/series/70061/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_7431_full -> IGTPW_3768_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_3768_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_3768_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_3768/index.html
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_3768_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_selftest@live_blt:
> - shard-hsw: [PASS][1] -> [DMESG-FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw8/igt@i915_selftest@live_blt.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw1/igt@i915_selftest@live_blt.html
>
> * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
> - shard-iclb: NOTRUN -> [DMESG-WARN][3]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb3/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
<3> [544.041813] [drm:drm_crtc_add_crc_entry] *ERROR* Overflow of CRC buffer, userspace reads too slow.
J-P?
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4)
2019-11-28 13:39 ` Petri Latvala
@ 2019-11-28 14:57 ` Juha-Pekka Heikkila
0 siblings, 0 replies; 13+ messages in thread
From: Juha-Pekka Heikkila @ 2019-11-28 14:57 UTC (permalink / raw)
To: Petri Latvala, igt-dev
On 28.11.2019 15.39, Petri Latvala wrote:
> On Thu, Nov 28, 2019 at 01:29:51PM +0000, Patchwork wrote:
>> == Series Details ==
>>
>> Series: tests/kms_cursor_crc: start crc only once per test (rev4)
>> URL : https://patchwork.freedesktop.org/series/70061/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_7431_full -> IGTPW_3768_full
>> ====================================================
>>
>> Summary
>> -------
>>
>> **FAILURE**
>>
>> Serious unknown changes coming with IGTPW_3768_full absolutely need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in IGTPW_3768_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_3768/index.html
>>
>> Possible new issues
>> -------------------
>>
>> Here are the unknown changes that may have been introduced in IGTPW_3768_full:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>> * igt@i915_selftest@live_blt:
>> - shard-hsw: [PASS][1] -> [DMESG-FAIL][2]
>> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7431/shard-hsw8/igt@i915_selftest@live_blt.html
>> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-hsw1/igt@i915_selftest@live_blt.html
>>
>> * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding:
>> - shard-iclb: NOTRUN -> [DMESG-WARN][3]
>> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3768/shard-iclb3/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html
>
>
>
> <3> [544.041813] [drm:drm_crtc_add_crc_entry] *ERROR* Overflow of CRC buffer, userspace reads too slow.
>
Ya, I noticed that too. There's those fb being painted during test and
it seems those need to be rendered in setup and used from buffered
versions. I'll look into it, it probably shave off some extra time from
these tests -- though no hundreds of second to shave off anymore :D
/Juha-Pekka
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2019-11-28 14:57 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-27 12:19 [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Juha-Pekka Heikkila
2019-11-27 12:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
2019-11-27 13:21 ` Petri Latvala
2019-11-27 13:40 ` Arkadiusz Hiler
2019-11-27 13:43 ` Petri Latvala
2019-11-27 13:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-11-27 14:03 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
2019-11-27 14:22 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-11-28 11:34 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev3) Patchwork
2019-11-28 12:32 ` [igt-dev] [PATCH i-g-t] tests/kms_cursor_crc: start crc only once per test Petri Latvala
2019-11-28 13:29 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_cursor_crc: start crc only once per test (rev4) Patchwork
2019-11-28 13:39 ` Petri Latvala
2019-11-28 14:57 ` Juha-Pekka Heikkila
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox