* [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch
@ 2020-01-27 14:45 Mika Kahola
2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards Mika Kahola
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Mika Kahola @ 2020-01-27 14:45 UTC (permalink / raw)
To: igt-dev
On newer gens we experience CRC mismatch errors. These are caused by
comparison between HDR and SDR planes. This patch series proposes
a fix that compares HDR primary plane to HDR overlay planes and
SDR primary plane to SDR overlay planes.
Yf tiling is not supported by GEN12. We should intentionally skip
a test with that tiling mode.
Mika Kahola (2):
tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards
tests/kms_plane_lowres: Fix CRC mismatch
tests/kms_plane_lowres.c | 147 ++++++++++++++++++++++++---------------
1 file changed, 90 insertions(+), 57 deletions(-)
--
2.17.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola @ 2020-01-27 14:45 ` Mika Kahola 2020-01-30 10:30 ` Jani Nikula 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola ` (5 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Mika Kahola @ 2020-01-27 14:45 UTC (permalink / raw) To: igt-dev Yf tiling is not supported by gen12. The patch proposes that we intentionally skip this subtest. Signed-off-by: Mika Kahola <mika.kahola@intel.com> --- tests/kms_plane_lowres.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c index 4c3f5636..f4a9ff8d 100644 --- a/tests/kms_plane_lowres.c +++ b/tests/kms_plane_lowres.c @@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test atomic mode setting with a plane by switching between typedef struct { int drm_fd; igt_display_t display; + uint32_t devid; struct igt_fb fb_primary; struct igt_fb fb_plane[2]; struct { @@ -236,6 +237,9 @@ test_planes_on_pipe(data_t *data, enum pipe pipe, uint64_t modifier) igt_skip_on(!igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, modifier)); + igt_skip_on(intel_gen(data->devid) >= 12 && + modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED); + for_each_valid_output_on_pipe(&data->display, pipe, output) tested += test_planes_on_pipe_with_output(data, pipe, output, modifier); @@ -250,6 +254,8 @@ igt_main igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); + data.devid = is_i915_device(data.drm_fd) ? + intel_get_drm_devid(data.drm_fd) : 0; kmstest_set_vt_graphics_mode(); -- 2.17.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards Mika Kahola @ 2020-01-30 10:30 ` Jani Nikula 2020-01-31 10:35 ` Kahola, Mika 0 siblings, 1 reply; 10+ messages in thread From: Jani Nikula @ 2020-01-30 10:30 UTC (permalink / raw) To: Mika Kahola, igt-dev On Mon, 27 Jan 2020, Mika Kahola <mika.kahola@intel.com> wrote: > Yf tiling is not supported by gen12. The patch proposes that we > intentionally skip this subtest. > > Signed-off-by: Mika Kahola <mika.kahola@intel.com> > --- > tests/kms_plane_lowres.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c > index 4c3f5636..f4a9ff8d 100644 > --- a/tests/kms_plane_lowres.c > +++ b/tests/kms_plane_lowres.c > @@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test atomic mode setting with a plane by switching between > typedef struct { > int drm_fd; > igt_display_t display; > + uint32_t devid; > struct igt_fb fb_primary; > struct igt_fb fb_plane[2]; > struct { > @@ -236,6 +237,9 @@ test_planes_on_pipe(data_t *data, enum pipe pipe, uint64_t modifier) > igt_skip_on(!igt_display_has_format_mod(&data->display, > DRM_FORMAT_XRGB8888, modifier)); > > + igt_skip_on(intel_gen(data->devid) >= 12 && In general I don't think we should skip based on platform/gen. Check for the *feature*, not the *platform*. Don't accumulate platform specific knowledge to igt. BR, Jani. > + modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED); > + > for_each_valid_output_on_pipe(&data->display, pipe, output) > tested += test_planes_on_pipe_with_output(data, pipe, output, > modifier); > @@ -250,6 +254,8 @@ igt_main > > igt_fixture { > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + data.devid = is_i915_device(data.drm_fd) ? > + intel_get_drm_devid(data.drm_fd) : 0; > > kmstest_set_vt_graphics_mode(); -- Jani Nikula, Intel Open Source Graphics Center _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards 2020-01-30 10:30 ` Jani Nikula @ 2020-01-31 10:35 ` Kahola, Mika 0 siblings, 0 replies; 10+ messages in thread From: Kahola, Mika @ 2020-01-31 10:35 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, jani.nikula@linux.intel.com On Thu, 2020-01-30 at 12:30 +0200, Jani Nikula wrote: > On Mon, 27 Jan 2020, Mika Kahola <mika.kahola@intel.com> wrote: > > Yf tiling is not supported by gen12. The patch proposes that we > > intentionally skip this subtest. > > > > Signed-off-by: Mika Kahola <mika.kahola@intel.com> > > --- > > tests/kms_plane_lowres.c | 6 ++++++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c > > index 4c3f5636..f4a9ff8d 100644 > > --- a/tests/kms_plane_lowres.c > > +++ b/tests/kms_plane_lowres.c > > @@ -37,6 +37,7 @@ IGT_TEST_DESCRIPTION("Test atomic mode setting > > with a plane by switching between > > typedef struct { > > int drm_fd; > > igt_display_t display; > > + uint32_t devid; > > struct igt_fb fb_primary; > > struct igt_fb fb_plane[2]; > > struct { > > @@ -236,6 +237,9 @@ test_planes_on_pipe(data_t *data, enum pipe > > pipe, uint64_t modifier) > > igt_skip_on(!igt_display_has_format_mod(&data->display, > > DRM_FORMAT_XRGB8888, > > modifier)); > > > > + igt_skip_on(intel_gen(data->devid) >= 12 && > > In general I don't think we should skip based on platform/gen. Check > for > the *feature*, not the *platform*. Don't accumulate platform specific > knowledge to igt. Ok. I'll drop this platform specific check. Cheers, Mika > > BR, > Jani. > > > + modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED); > > + > > for_each_valid_output_on_pipe(&data->display, pipe, output) > > tested += test_planes_on_pipe_with_output(data, pipe, > > output, > > modifier); > > @@ -250,6 +254,8 @@ igt_main > > > > igt_fixture { > > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > + data.devid = is_i915_device(data.drm_fd) ? > > + intel_get_drm_devid(data.drm_fd) : 0; > > > > kmstest_set_vt_graphics_mode(); > > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane_lowres: Fix CRC mismatch 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards Mika Kahola @ 2020-01-27 14:45 ` Mika Kahola 2020-01-27 19:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Mika Kahola @ 2020-01-27 14:45 UTC (permalink / raw) To: igt-dev Mixing SDR and HDR planes yields to CRC mismatch. The patch computes the reference image and CRC with the main plane matching the SDR/HDR plane type. References: https://gitlab.freedesktop.org/drm/intel/issues/899 Signed-off-by: Mika Kahola <mika.kahola@intel.com> --- tests/kms_plane_lowres.c | 141 +++++++++++++++++++++++---------------- 1 file changed, 84 insertions(+), 57 deletions(-) diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c index f4a9ff8d..b519b386 100644 --- a/tests/kms_plane_lowres.c +++ b/tests/kms_plane_lowres.c @@ -32,12 +32,16 @@ IGT_TEST_DESCRIPTION("Test atomic mode setting with a plane by switching between high and low resolutions"); +#define SDR_PLANE_BASE 3 #define SIZE 64 typedef struct { int drm_fd; igt_display_t display; uint32_t devid; + igt_output_t *output; + igt_plane_t *plane; + enum pipe pipe; struct igt_fb fb_primary; struct igt_fb fb_plane[2]; struct { @@ -78,21 +82,46 @@ get_lowres_mode(int drmfd, igt_output_t *output, return *mode; } -static bool setup_plane(data_t *data, igt_plane_t *plane) +static igt_plane_t *first_sdr_plane(data_t *data) +{ + return igt_output_get_plane(data->output, SDR_PLANE_BASE); +} + +static bool is_sdr_plane(const igt_plane_t *plane) +{ + return plane->index >= SDR_PLANE_BASE; +} + +/* + * Mixing SDR and HDR planes results in a CRC mismatch, so use the first + * SDR/HDR plane as the main plane matching the SDR/HDR type of the sprite + * plane under test. + */ +static igt_plane_t *compatible_main_plane(data_t *data) +{ + if (is_sdr_plane(data->plane)) + return first_sdr_plane(data); + + return igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); +} + +static bool setup_plane(data_t *data) { struct igt_fb *fb; - if (plane->type == DRM_PLANE_TYPE_PRIMARY) + if (data->plane->type == DRM_PLANE_TYPE_PRIMARY || + data->plane == first_sdr_plane(data) || + data->plane->type == DRM_PLANE_TYPE_CURSOR) return false; fb = &data->fb_plane[0]; - if (!igt_plane_has_format_mod(plane, fb->drm_format, fb->modifier)) + if (!igt_plane_has_format_mod(data->plane, fb->drm_format, fb->modifier)) fb = &data->fb_plane[1]; - if (!igt_plane_has_format_mod(plane, fb->drm_format, fb->modifier)) + if (!igt_plane_has_format_mod(data->plane, fb->drm_format, fb->modifier)) return false; - igt_plane_set_position(plane, data->x, data->y); - igt_plane_set_fb(plane, fb); + igt_plane_set_position(data->plane, data->x, data->y); + igt_plane_set_fb(data->plane, fb); return true; } @@ -126,25 +155,20 @@ static void create_ref_fb(data_t *data, uint64_t modifier, } static unsigned -test_planes_on_pipe_with_output(data_t *data, enum pipe pipe, - igt_output_t *output, uint64_t modifier) +test_planes_on_pipe_with_output(data_t *data, uint64_t modifier) { - igt_pipe_t *pipe_obj = &data->display.pipes[pipe]; const drmModeModeInfo *mode; drmModeModeInfo mode_lowres; igt_pipe_crc_t *pipe_crc; unsigned tested = 0; - igt_plane_t *plane; igt_plane_t *primary; + igt_crc_t crc_lowres, crc_hires1, crc_hires2; - primary = igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_PRIMARY); - - igt_info("Testing connector %s using pipe %s\n", - igt_output_name(output), kmstest_pipe_name(pipe)); + igt_output_set_pipe(data->output, data->pipe); - igt_output_set_pipe(output, pipe); - mode = igt_output_get_mode(output); - mode_lowres = get_lowres_mode(data->drm_fd, output, mode); + primary = compatible_main_plane(data); + mode = igt_output_get_mode(data->output); + mode_lowres = get_lowres_mode(data->drm_fd, data->output, mode); igt_create_color_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, modifier, 0.0, 0.0, 1.0, @@ -165,15 +189,15 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe, create_ref_fb(data, modifier, mode, &data->ref_hires.fb); create_ref_fb(data, modifier, &mode_lowres, &data->ref_lowres.fb); - pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, INTEL_PIPE_CRC_SOURCE_AUTO); - igt_output_override_mode(output, &mode_lowres); + igt_output_override_mode(data->output, &mode_lowres); igt_plane_set_fb(primary, &data->ref_lowres.fb); igt_display_commit2(&data->display, COMMIT_ATOMIC); igt_pipe_crc_collect_crc(pipe_crc, &data->ref_lowres.crc); - igt_output_override_mode(output, NULL); + igt_output_override_mode(data->output, NULL); igt_plane_set_fb(primary, &data->ref_hires.fb); igt_display_commit2(&data->display, COMMIT_ATOMIC); igt_pipe_crc_collect_crc(pipe_crc, &data->ref_hires.crc); @@ -182,40 +206,36 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe, igt_display_commit2(&data->display, COMMIT_ATOMIC); /* yellow sprite plane in lower left corner */ - for_each_plane_on_pipe(&data->display, pipe, plane) { - igt_crc_t crc_lowres, crc_hires1, crc_hires2; - - if (!setup_plane(data, plane)) - continue; + if (!setup_plane(data)) + return 0; - igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_display_commit2(&data->display, COMMIT_ATOMIC); - igt_pipe_crc_collect_crc(pipe_crc, &crc_hires1); + igt_pipe_crc_collect_crc(pipe_crc, &crc_hires1); - /* switch to lower resolution */ - igt_output_override_mode(output, &mode_lowres); - igt_display_commit2(&data->display, COMMIT_ATOMIC); + /* switch to lower resolution */ + igt_output_override_mode(data->output, &mode_lowres); + igt_display_commit2(&data->display, COMMIT_ATOMIC); - igt_pipe_crc_collect_crc(pipe_crc, &crc_lowres); + igt_pipe_crc_collect_crc(pipe_crc, &crc_lowres); - /* switch back to higher resolution */ - igt_output_override_mode(output, NULL); - igt_display_commit2(&data->display, COMMIT_ATOMIC); + /* switch back to higher resolution */ + igt_output_override_mode(data->output, NULL); + igt_display_commit2(&data->display, COMMIT_ATOMIC); - igt_pipe_crc_collect_crc(pipe_crc, &crc_hires2); + igt_pipe_crc_collect_crc(pipe_crc, &crc_hires2); - igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires1); - igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires2); - igt_assert_crc_equal(&data->ref_lowres.crc, &crc_lowres); + igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires1); + igt_assert_crc_equal(&data->ref_hires.crc, &crc_hires2); + igt_assert_crc_equal(&data->ref_lowres.crc, &crc_lowres); - igt_plane_set_fb(plane, NULL); - tested++; - } + igt_plane_set_fb(data->plane, NULL); + tested++; igt_pipe_crc_free(pipe_crc); igt_plane_set_fb(primary, NULL); - igt_output_set_pipe(output, PIPE_NONE); + igt_output_set_pipe(data->output, PIPE_NONE); igt_remove_fb(data->drm_fd, &data->fb_plane[1]); igt_remove_fb(data->drm_fd, &data->fb_plane[0]); @@ -227,24 +247,34 @@ test_planes_on_pipe_with_output(data_t *data, enum pipe pipe, } static void -test_planes_on_pipe(data_t *data, enum pipe pipe, uint64_t modifier) +test_planes_on_pipe(data_t *data, uint64_t modifier) { - igt_output_t *output; unsigned tested = 0; - igt_skip_on(pipe >= data->display.n_pipes); - igt_display_require_output_on_pipe(&data->display, pipe); + igt_skip_on(data->pipe >= data->display.n_pipes); + igt_display_require_output_on_pipe(&data->display, data->pipe); igt_skip_on(!igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, modifier)); igt_skip_on(intel_gen(data->devid) >= 12 && modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED); - for_each_valid_output_on_pipe(&data->display, pipe, output) - tested += test_planes_on_pipe_with_output(data, pipe, output, - modifier); + data->output = igt_get_single_output_for_pipe(&data->display, data->pipe); + igt_require(data->output); + + igt_info("Testing connector %s using pipe %s\n", + igt_output_name(data->output), kmstest_pipe_name(data->pipe)); + + for_each_plane_on_pipe(&data->display, data->pipe, data->plane) { + data->output = igt_get_single_output_for_pipe(&data->display, data->pipe); + igt_require(data->output); + + tested += test_planes_on_pipe_with_output(data, modifier); + } igt_assert(tested > 0); + igt_output_set_pipe(data->output, PIPE_NONE); + igt_display_commit2(&data->display, COMMIT_ATOMIC); } igt_main @@ -265,21 +295,18 @@ igt_main } for_each_pipe_static(pipe) { + data.pipe = pipe; igt_subtest_f("pipe-%s-tiling-none", kmstest_pipe_name(pipe)) - test_planes_on_pipe(&data, pipe, - LOCAL_DRM_FORMAT_MOD_NONE); + test_planes_on_pipe(&data, LOCAL_DRM_FORMAT_MOD_NONE); igt_subtest_f("pipe-%s-tiling-x", kmstest_pipe_name(pipe)) - test_planes_on_pipe(&data, pipe, - LOCAL_I915_FORMAT_MOD_X_TILED); + test_planes_on_pipe(&data, LOCAL_I915_FORMAT_MOD_X_TILED); igt_subtest_f("pipe-%s-tiling-y", kmstest_pipe_name(pipe)) - test_planes_on_pipe(&data, pipe, - LOCAL_I915_FORMAT_MOD_Y_TILED); + test_planes_on_pipe(&data, LOCAL_I915_FORMAT_MOD_Y_TILED); igt_subtest_f("pipe-%s-tiling-yf", kmstest_pipe_name(pipe)) - test_planes_on_pipe(&data, pipe, - LOCAL_I915_FORMAT_MOD_Yf_TILED); + test_planes_on_pipe(&data, LOCAL_I915_FORMAT_MOD_Yf_TILED); } igt_fixture { -- 2.17.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Fix CRC mismatch 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards Mika Kahola 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola @ 2020-01-27 19:04 ` Patchwork 2020-01-28 12:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-27 19:04 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev == Series Details == Series: Fix CRC mismatch URL : https://patchwork.freedesktop.org/series/72625/ State : success == Summary == CI Bug Log - changes from CI_DRM_7825 -> IGTPW_4008 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/index.html Known issues ------------ Here are the changes found in IGTPW_4008 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_blt: - fi-hsw-4770r: [PASS][1] -> [DMESG-FAIL][2] ([i915#553] / [i915#725]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-hsw-4770r/igt@i915_selftest@live_blt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-hsw-4770r/igt@i915_selftest@live_blt.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-byt-j1900: [INCOMPLETE][3] ([i915#45]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-byt-j1900/igt@gem_close_race@basic-threads.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-byt-j1900/igt@gem_close_race@basic-threads.html * igt@i915_module_load@reload-with-fault-injection: - fi-cfl-guc: [INCOMPLETE][5] ([i915#505] / [i915#671]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-cfl-guc/igt@i915_module_load@reload-with-fault-injection.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-cfl-guc/igt@i915_module_load@reload-with-fault-injection.html - fi-skl-6700k2: [INCOMPLETE][7] ([i915#671]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-skl-6700k2/igt@i915_module_load@reload-with-fault-injection.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-skl-6700k2/igt@i915_module_load@reload-with-fault-injection.html - fi-kbl-x1275: [INCOMPLETE][9] ([i915#879]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-kbl-x1275/igt@i915_module_load@reload-with-fault-injection.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-kbl-x1275/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live_blt: - fi-hsw-4770: [DMESG-FAIL][11] ([i915#553] / [i915#725]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-hsw-4770/igt@i915_selftest@live_blt.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-hsw-4770/igt@i915_selftest@live_blt.html #### Warnings #### * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][13] ([fdo#111407]) -> [FAIL][14] ([fdo#111096] / [i915#323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45 [i915#505]: https://gitlab.freedesktop.org/drm/intel/issues/505 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#671]: https://gitlab.freedesktop.org/drm/intel/issues/671 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#879]: https://gitlab.freedesktop.org/drm/intel/issues/879 Participating hosts (40 -> 44) ------------------------------ Additional (8): fi-glk-dsi fi-ilk-650 fi-gdg-551 fi-cfl-8109u fi-skl-lmem fi-byt-n2820 fi-skl-6600u fi-kbl-r Missing (4): fi-kbl-7560u fi-bsw-cyan fi-ilk-m540 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5389 -> IGTPW_4008 CI-20190529: 20190529 CI_DRM_7825: 7a9128c8e79ca8f3bbd638bddfd4db64b4a2d546 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4008: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/index.html IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Fix CRC mismatch 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola ` (2 preceding siblings ...) 2020-01-27 19:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-01-28 12:35 ` Patchwork 2020-01-28 15:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix CRC mismatch (rev2) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-28 12:35 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev == Series Details == Series: Fix CRC mismatch URL : https://patchwork.freedesktop.org/series/72625/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7825_full -> IGTPW_4008_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4008_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4008_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_4008/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4008_full: ### IGT changes ### #### Possible regressions #### * igt@gem_caching@reads: - shard-hsw: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw5/igt@gem_caching@reads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw8/igt@gem_caching@reads.html * igt@gem_persistent_relocs@forked-faulting-reloc: - shard-glk: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-glk7/igt@gem_persistent_relocs@forked-faulting-reloc.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-apl: [PASS][4] -> [FAIL][5] +6 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl4/igt@kms_plane_lowres@pipe-b-tiling-x.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl3/igt@kms_plane_lowres@pipe-b-tiling-x.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_color_chamelium@pipe-c-degamma}: - shard-tglb: NOTRUN -> [SKIP][6] +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-tglb2/igt@kms_color_chamelium@pipe-c-degamma.html Known issues ------------ Here are the changes found in IGTPW_4008_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#112080]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb2/igt@gem_busy@busy-vcs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb6/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@vcs1-dirty-create: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276] / [fdo#112080]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb4/igt@gem_ctx_isolation@vcs1-dirty-create.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb8/igt@gem_ctx_isolation@vcs1-dirty-create.html * igt@gem_exec_create@forked: - shard-apl: [PASS][11] -> [INCOMPLETE][12] ([fdo#103927]) +4 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl1/igt@gem_exec_create@forked.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl7/igt@gem_exec_create@forked.html - shard-iclb: [PASS][13] -> [INCOMPLETE][14] ([fdo#108838] / [i915#140]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb5/igt@gem_exec_create@forked.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb4/igt@gem_exec_create@forked.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-snb: [PASS][15] -> [DMESG-WARN][16] ([i915#478]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb1/igt@gem_exec_flush@basic-uc-ro-default.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb4/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][17] -> [SKIP][18] ([fdo#112146]) +6 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_suspend@basic-s3: - shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([i915#180]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-kbl7/igt@gem_exec_suspend@basic-s3.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-kbl1/igt@gem_exec_suspend@basic-s3.html * igt@gem_softpin@noreloc-s3: - shard-apl: [PASS][21] -> [DMESG-WARN][22] ([i915#180]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl6/igt@gem_softpin@noreloc-s3.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl4/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: - shard-snb: [PASS][23] -> [DMESG-WARN][24] ([fdo#111870] / [i915#478]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html * igt@gen7_exec_parse@basic-offset: - shard-hsw: [PASS][25] -> [FAIL][26] ([i915#694]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw4/igt@gen7_exec_parse@basic-offset.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw2/igt@gen7_exec_parse@basic-offset.html * igt@i915_selftest@live_blt: - shard-hsw: [PASS][27] -> [DMESG-FAIL][28] ([i915#725]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw7/igt@i915_selftest@live_blt.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw7/igt@i915_selftest@live_blt.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-hsw: [PASS][29] -> [DMESG-WARN][30] ([i915#44]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen: - shard-apl: [PASS][31] -> [FAIL][32] ([i915#54]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-onscreen.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [PASS][33] -> [FAIL][34] ([i915#57]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_flip@flip-vs-expired-vblank: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#79]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-glk7/igt@kms_flip@flip-vs-expired-vblank.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-glk2/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-snb: [PASS][37] -> [INCOMPLETE][38] ([i915#82]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb6/igt@kms_plane_lowres@pipe-a-tiling-x.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb1/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_plane_lowres@pipe-b-tiling-yf: - shard-kbl: [PASS][39] -> [INCOMPLETE][40] ([fdo#103665] / [i915#635]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-kbl1/igt@kms_plane_lowres@pipe-b-tiling-yf.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-kbl6/igt@kms_plane_lowres@pipe-b-tiling-yf.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-hsw: [PASS][41] -> [INCOMPLETE][42] ([i915#61]) +5 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw6/igt@kms_plane_lowres@pipe-c-tiling-none.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw4/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_plane_lowres@pipe-c-tiling-yf: - shard-kbl: [PASS][43] -> [INCOMPLETE][44] ([fdo#103665]) +11 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-kbl7/igt@kms_plane_lowres@pipe-c-tiling-yf.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-kbl7/igt@kms_plane_lowres@pipe-c-tiling-yf.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][45] -> [SKIP][46] ([fdo#109441]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb8/igt@kms_psr@psr2_sprite_render.html * igt@kms_setmode@basic: - shard-glk: [PASS][47] -> [FAIL][48] ([i915#31]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-glk3/igt@kms_setmode@basic.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-glk7/igt@kms_setmode@basic.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [PASS][49] -> [SKIP][50] ([fdo#109276]) +19 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html #### Possible fixes #### * igt@gem_ctx_isolation@vcs1-reset: - shard-iclb: [SKIP][51] ([fdo#109276] / [fdo#112080]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb5/igt@gem_ctx_isolation@vcs1-reset.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb4/igt@gem_ctx_isolation@vcs1-reset.html * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][53] ([i915#82]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb2/igt@gem_eio@kms.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb2/igt@gem_eio@kms.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][55] ([fdo#110854]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb3/igt@gem_exec_balancer@smoke.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][57] ([fdo#112146]) -> [PASS][58] +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-hsw: [FAIL][59] -> [PASS][60] +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw2/igt@gem_partial_pwrite_pread@write-snoop.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw4/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [FAIL][61] ([i915#644]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl6/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_tiled_blits@normal: - shard-hsw: [FAIL][63] ([i915#818]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw7/igt@gem_tiled_blits@normal.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw6/igt@gem_tiled_blits@normal.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-snb: [DMESG-WARN][65] ([fdo#111870] / [i915#478]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb4/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_workarounds@suspend-resume: - shard-apl: [DMESG-WARN][67] ([i915#180]) -> [PASS][68] +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-apl1/igt@gem_workarounds@suspend-resume.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-apl8/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][69] ([i915#58] / [k.org#198133]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-glk5/igt@gen9_exec_parse@allowed-single.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@i915_suspend@forcewake: - shard-kbl: [DMESG-WARN][71] ([i915#180]) -> [PASS][72] +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-kbl2/igt@i915_suspend@forcewake.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-kbl4/igt@i915_suspend@forcewake.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-glk: [FAIL][73] ([i915#899]) -> [PASS][74] +9 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-glk1/igt@kms_plane_lowres@pipe-b-tiling-x.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-glk1/igt@kms_plane_lowres@pipe-b-tiling-x.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-iclb: [FAIL][75] ([i915#899]) -> [PASS][76] +10 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb7/igt@kms_plane_lowres@pipe-c-tiling-none.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb7/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_plane_lowres@pipe-d-tiling-y: - shard-tglb: [FAIL][77] ([i915#899]) -> [PASS][78] +9 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-tglb2/igt@kms_plane_lowres@pipe-d-tiling-y.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-y.html * igt@kms_psr@no_drrs: - shard-iclb: [FAIL][79] ([i915#173]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb1/igt@kms_psr@no_drrs.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb4/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_basic: - shard-iclb: [SKIP][81] ([fdo#109441]) -> [PASS][82] +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb8/igt@kms_psr@psr2_basic.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb2/igt@kms_psr@psr2_basic.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [SKIP][83] ([fdo#112080]) -> [PASS][84] +5 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb4/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@prime_busy@hang-bsd2: - shard-iclb: [SKIP][85] ([fdo#109276]) -> [PASS][86] +15 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb7/igt@prime_busy@hang-bsd2.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb2/igt@prime_busy@hang-bsd2.html * igt@prime_mmap_coherency@ioctl-errors: - shard-hsw: [FAIL][87] ([i915#831]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw6/igt@prime_mmap_coherency@ioctl-errors.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw5/igt@prime_mmap_coherency@ioctl-errors.html * igt@prime_mmap_coherency@write: - shard-hsw: [FAIL][89] ([i915#914]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw1/igt@prime_mmap_coherency@write.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw8/igt@prime_mmap_coherency@write.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][91] ([IGT#28]) -> [SKIP][92] ([fdo#109276] / [fdo#112080]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing: - shard-hsw: [DMESG-FAIL][93] ([i915#1045]) -> [FAIL][94] ([i915#1045]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw5/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw2/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrashing.html * igt@gem_tiled_blits@interruptible: - shard-hsw: [FAIL][95] ([i915#694]) -> [FAIL][96] ([i915#818]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-hsw5/igt@gem_tiled_blits@interruptible.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-hsw8/igt@gem_tiled_blits@interruptible.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-snb: [DMESG-WARN][97] ([fdo#110789] / [fdo#111870] / [i915#478]) -> [DMESG-WARN][98] ([fdo#111870] / [i915#478]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-snb1/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][99] ([fdo#109349]) -> [DMESG-WARN][100] ([fdo#107724]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7825/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108838]: https://bugs.freedesktop.org/show_bug.cgi?id=108838 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1045]: https://gitlab.freedesktop.org/drm/intel/issues/1045 [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140 [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#57]: https://gitlab.freedesktop.org/drm/intel/issues/57 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#635]: https://gitlab.freedesktop.org/drm/intel/issues/635 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 [i915#914]: https://gitlab.freedesktop.org/drm/intel/issues/914 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5389 -> IGTPW_4008 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_7825: 7a9128c8e79ca8f3bbd638bddfd4db64b4a2d546 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4008: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4008/index.html IGT_5389: 966c58649dee31bb5bf2fad92f75ffd365968b81 @ 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_4008/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Fix CRC mismatch (rev2) 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola ` (3 preceding siblings ...) 2020-01-28 12:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-01-28 15:53 ` Patchwork 2020-01-29 7:07 ` [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Saarinen, Jani 2020-01-29 23:17 ` [igt-dev] ✗ Fi.CI.IGT: failure for Fix CRC mismatch (rev2) Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-28 15:53 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev == Series Details == Series: Fix CRC mismatch (rev2) URL : https://patchwork.freedesktop.org/series/72625/ State : success == Summary == CI Bug Log - changes from IGT_5394 -> IGTPW_4018 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/index.html Known issues ------------ Here are the changes found in IGTPW_4018 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_parallel@contexts: - fi-byt-n2820: [PASS][1] -> [FAIL][2] ([i915#694]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-byt-n2820/igt@gem_exec_parallel@contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-byt-n2820/igt@gem_exec_parallel@contexts.html * igt@i915_selftest@live_blt: - fi-hsw-4770r: [PASS][3] -> [DMESG-FAIL][4] ([i915#553] / [i915#725]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-hsw-4770r/igt@i915_selftest@live_blt.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-hsw-4770r/igt@i915_selftest@live_blt.html - fi-hsw-4770: [PASS][5] -> [DMESG-FAIL][6] ([i915#770]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-hsw-4770/igt@i915_selftest@live_blt.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-hsw-4770/igt@i915_selftest@live_blt.html * igt@i915_selftest@live_gem_contexts: - fi-byt-n2820: [PASS][7] -> [DMESG-FAIL][8] ([i915#1052]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html * igt@i915_selftest@live_hangcheck: - fi-icl-y: [PASS][9] -> [INCOMPLETE][10] ([fdo#108569] / [i915#140]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-icl-y/igt@i915_selftest@live_hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-icl-y/igt@i915_selftest@live_hangcheck.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][11] -> [FAIL][12] ([i915#217]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html - fi-kbl-7500u: [PASS][13] -> [FAIL][14] ([fdo#111096] / [i915#323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@gem_exec_parallel@fds: - fi-byt-n2820: [TIMEOUT][15] ([fdo#112271]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-byt-n2820/igt@gem_exec_parallel@fds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-byt-n2820/igt@gem_exec_parallel@fds.html * igt@gem_exec_suspend@basic-s0: - fi-cml-s: [FAIL][17] ([fdo#103375]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-cml-s/igt@gem_exec_suspend@basic-s0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-cml-s/igt@gem_exec_suspend@basic-s0.html * igt@i915_selftest@live_blt: - fi-ivb-3770: [DMESG-FAIL][19] ([i915#725]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-ivb-3770/igt@i915_selftest@live_blt.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-ivb-3770/igt@i915_selftest@live_blt.html #### Warnings #### * igt@gem_exec_suspend@basic-s3: - fi-cml-s: [FAIL][21] ([fdo#103375]) -> [INCOMPLETE][22] ([i915#283]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/fi-cml-s/igt@gem_exec_suspend@basic-s3.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/fi-cml-s/igt@gem_exec_suspend@basic-s3.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1052]: https://gitlab.freedesktop.org/drm/intel/issues/1052 [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#283]: https://gitlab.freedesktop.org/drm/intel/issues/283 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#770]: https://gitlab.freedesktop.org/drm/intel/issues/770 Participating hosts (49 -> 44) ------------------------------ Missing (5): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5394 -> IGTPW_4018 CI-20190529: 20190529 CI_DRM_7831: c40c8f70d19e5b27cffb4bb4609b1bc76fd1a58a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4018: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/index.html IGT_5394: 991fd07bcd7add7a5beca2c95b72a994e62fbb75 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola ` (4 preceding siblings ...) 2020-01-28 15:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix CRC mismatch (rev2) Patchwork @ 2020-01-29 7:07 ` Saarinen, Jani 2020-01-29 23:17 ` [igt-dev] ✗ Fi.CI.IGT: failure for Fix CRC mismatch (rev2) Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Saarinen, Jani @ 2020-01-29 7:07 UTC (permalink / raw) To: Kahola, Mika, igt-dev@lists.freedesktop.org Hi, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Mika > Kahola > Sent: maanantai 27. tammikuuta 2020 16.46 > To: igt-dev@lists.freedesktop.org > Subject: [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch > > On newer gens we experience CRC mismatch errors. These are caused by > comparison between HDR and SDR planes. This patch series proposes a fix that > compares HDR primary plane to HDR overlay planes and SDR primary plane to SDR > overlay planes. > > Yf tiling is not supported by GEN12. We should intentionally skip a test with that > tiling mode. > > Mika Kahola (2): > tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards > tests/kms_plane_lowres: Fix CRC mismatch Series: Tested-by: Jani Saarinen <jani.saarinen@intel.com> > > tests/kms_plane_lowres.c | 147 ++++++++++++++++++++++++--------------- > 1 file changed, 90 insertions(+), 57 deletions(-) > > -- > 2.17.1 > > _______________________________________________ > 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] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Fix CRC mismatch (rev2) 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola ` (5 preceding siblings ...) 2020-01-29 7:07 ` [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Saarinen, Jani @ 2020-01-29 23:17 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-29 23:17 UTC (permalink / raw) To: Mika Kahola; +Cc: igt-dev == Series Details == Series: Fix CRC mismatch (rev2) URL : https://patchwork.freedesktop.org/series/72625/ State : failure == Summary == CI Bug Log - changes from IGT_5394_full -> IGTPW_4018_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4018_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4018_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_4018/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4018_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@promotion-blt: - shard-kbl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl1/igt@gem_exec_schedule@promotion-blt.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl1/igt@gem_exec_schedule@promotion-blt.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-apl: [PASS][3] -> [FAIL][4] +7 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl8/igt@kms_plane_lowres@pipe-b-tiling-x.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl6/igt@kms_plane_lowres@pipe-b-tiling-x.html Known issues ------------ Here are the changes found in IGTPW_4018_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#112080]) +10 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb1/igt@gem_busy@busy-vcs1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb6/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@rcs0-s3: - shard-kbl: [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl6/igt@gem_ctx_isolation@rcs0-s3.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl4/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_ctx_isolation@vcs1-dirty-create: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#109276] / [fdo#112080]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb2/igt@gem_ctx_isolation@vcs1-dirty-create.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb7/igt@gem_ctx_isolation@vcs1-dirty-create.html * igt@gem_exec_schedule@pi-distinct-iova-bsd: - shard-iclb: [PASS][11] -> [SKIP][12] ([i915#677]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb7/igt@gem_exec_schedule@pi-distinct-iova-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb4/igt@gem_exec_schedule@pi-distinct-iova-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd2: - shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109276]) +15 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb3/igt@gem_exec_schedule@preempt-queue-bsd2.html * igt@gem_exec_schedule@preempt-queue-contexts-blt: - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#112118]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl3/igt@gem_exec_schedule@preempt-queue-contexts-blt.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl1/igt@gem_exec_schedule@preempt-queue-contexts-blt.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][17] -> [SKIP][18] ([fdo#112146]) +8 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb6/igt@gem_exec_schedule@preemptive-hang-bsd.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-snb: [PASS][19] -> [DMESG-WARN][20] ([fdo#110789] / [fdo#111870] / [i915#478]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-snb4/igt@gem_userptr_blits@dmabuf-unsync.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@i915_selftest@live_blt: - shard-hsw: [PASS][21] -> [DMESG-FAIL][22] ([i915#725]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw1/igt@i915_selftest@live_blt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-hsw7/igt@i915_selftest@live_blt.html * igt@kms_flip@flip-vs-suspend: - shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([i915#180] / [i915#56]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl4/igt@kms_flip@flip-vs-suspend.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl4/igt@kms_flip@flip-vs-suspend.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-snb: [PASS][25] -> [INCOMPLETE][26] ([i915#82]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-snb5/igt@kms_plane_lowres@pipe-a-tiling-x.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-snb4/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_plane_lowres@pipe-b-tiling-yf: - shard-kbl: [PASS][27] -> [INCOMPLETE][28] ([fdo#103665] / [i915#635]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl6/igt@kms_plane_lowres@pipe-b-tiling-yf.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl7/igt@kms_plane_lowres@pipe-b-tiling-yf.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-hsw: [PASS][29] -> [INCOMPLETE][30] ([i915#61]) +5 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw6/igt@kms_plane_lowres@pipe-c-tiling-none.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-hsw1/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_plane_lowres@pipe-c-tiling-x: - shard-hsw: ([PASS][31], [PASS][32]) -> [INCOMPLETE][33] ([i915#61]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw2/igt@kms_plane_lowres@pipe-c-tiling-x.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw4/igt@kms_plane_lowres@pipe-c-tiling-x.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-hsw1/igt@kms_plane_lowres@pipe-c-tiling-x.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-apl: [PASS][34] -> [INCOMPLETE][35] ([fdo#103927]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl7/igt@kms_plane_lowres@pipe-c-tiling-y.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl3/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_plane_lowres@pipe-c-tiling-yf: - shard-kbl: [PASS][36] -> [INCOMPLETE][37] ([fdo#103665]) +10 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl1/igt@kms_plane_lowres@pipe-c-tiling-yf.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl2/igt@kms_plane_lowres@pipe-c-tiling-yf.html * igt@kms_psr@no_drrs: - shard-iclb: [PASS][38] -> [FAIL][39] ([i915#173]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb5/igt@kms_psr@no_drrs.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb1/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][40] -> [SKIP][41] ([fdo#109441]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [PASS][42] -> [DMESG-WARN][43] ([i915#180]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@prime_mmap_coherency@ioctl-errors: - shard-hsw: [PASS][44] -> [FAIL][45] ([i915#831]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw2/igt@prime_mmap_coherency@ioctl-errors.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-hsw1/igt@prime_mmap_coherency@ioctl-errors.html #### Possible fixes #### * igt@gem_ctx_persistence@vcs1-queued: - shard-iclb: [SKIP][46] ([fdo#109276] / [fdo#112080]) -> [PASS][47] +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb7/igt@gem_ctx_persistence@vcs1-queued.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb4/igt@gem_ctx_persistence@vcs1-queued.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [SKIP][48] ([i915#677]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb1/igt@gem_exec_schedule@pi-common-bsd.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb7/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [SKIP][50] ([fdo#112146]) -> [PASS][51] +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_pwrite@big-cpu-fbr: - shard-glk: [INCOMPLETE][52] ([CI#80] / [i915#58] / [k.org#198133]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-glk3/igt@gem_pwrite@big-cpu-fbr.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-glk9/igt@gem_pwrite@big-cpu-fbr.html * igt@i915_pm_dc@dc5-dpms: - shard-iclb: [FAIL][54] ([i915#447]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb7/igt@i915_pm_dc@dc5-dpms.html * igt@i915_pm_rpm@i2c: - shard-glk: [FAIL][56] ([i915#68]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-glk9/igt@i915_pm_rpm@i2c.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-glk4/igt@i915_pm_rpm@i2c.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-random: - shard-kbl: [FAIL][58] ([i915#54]) -> [PASS][59] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-random.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-random.html * igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding: - shard-apl: [FAIL][60] ([i915#54]) -> [PASS][61] +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl2/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-64x21-sliding.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [FAIL][62] ([i915#96]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled: - shard-snb: [DMESG-WARN][64] ([i915#478]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-snb4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-snb6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled.html * igt@kms_frontbuffer_tracking@fbc-badstride: - shard-glk: [FAIL][66] ([i915#49]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-glk4/igt@kms_frontbuffer_tracking@fbc-badstride.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-glk2/igt@kms_frontbuffer_tracking@fbc-badstride.html - shard-apl: [FAIL][68] ([i915#49]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl8/igt@kms_frontbuffer_tracking@fbc-badstride.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl7/igt@kms_frontbuffer_tracking@fbc-badstride.html - shard-kbl: [FAIL][70] ([i915#49]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-badstride.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-badstride.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes: - shard-apl: [DMESG-WARN][72] ([i915#180]) -> [PASS][73] +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html - shard-kbl: [DMESG-WARN][74] ([i915#180]) -> [PASS][75] +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html * igt@kms_plane_lowres@pipe-a-tiling-none: - shard-tglb: [FAIL][76] ([i915#899]) -> [PASS][77] +11 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-tglb6/igt@kms_plane_lowres@pipe-a-tiling-none.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-tglb4/igt@kms_plane_lowres@pipe-a-tiling-none.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-glk: [FAIL][78] ([i915#899]) -> [PASS][79] +11 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-glk1/igt@kms_plane_lowres@pipe-b-tiling-x.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-glk9/igt@kms_plane_lowres@pipe-b-tiling-x.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-iclb: [FAIL][80] ([i915#899]) -> [PASS][81] +11 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-none.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb8/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [SKIP][82] ([fdo#109441]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb6/igt@kms_psr@psr2_sprite_render.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb2/igt@kms_psr@psr2_sprite_render.html * igt@perf_pmu@busy-accuracy-2-vcs1: - shard-iclb: [SKIP][84] ([fdo#112080]) -> [PASS][85] +6 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb8/igt@perf_pmu@busy-accuracy-2-vcs1.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb4/igt@perf_pmu@busy-accuracy-2-vcs1.html * igt@prime_busy@hang-bsd2: - shard-iclb: [SKIP][86] ([fdo#109276]) -> [PASS][87] +17 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-iclb7/igt@prime_busy@hang-bsd2.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-iclb4/igt@prime_busy@hang-bsd2.html #### Warnings #### * igt@gem_eio@in-flight-contexts-1us: - shard-kbl: [INCOMPLETE][88] ([CI#80] / [fdo#103665]) -> [TIMEOUT][89] ([fdo#112271]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-kbl7/igt@gem_eio@in-flight-contexts-1us.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-kbl4/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@in-flight-contexts-immediate: - shard-apl: [TIMEOUT][90] ([fdo#112271]) -> [INCOMPLETE][91] ([CI#80] / [fdo#103927]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-apl3/igt@gem_eio@in-flight-contexts-immediate.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-apl7/igt@gem_eio@in-flight-contexts-immediate.html - shard-glk: [TIMEOUT][92] ([fdo#112271]) -> [INCOMPLETE][93] ([CI#80] / [i915#58] / [k.org#198133]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-glk7/igt@gem_eio@in-flight-contexts-immediate.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-glk3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup: - shard-snb: [DMESG-WARN][94] ([fdo#110789] / [fdo#111870] / [i915#478]) -> [DMESG-WARN][95] ([fdo#111870] / [i915#478]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5394/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [fdo#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#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112118]: https://bugs.freedesktop.org/show_bug.cgi?id=112118 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1074]: https://gitlab.freedesktop.org/drm/intel/issues/1074 [i915#173]: https://gitlab.freedesktop.org/drm/intel/issues/173 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#447]: https://gitlab.freedesktop.org/drm/intel/issues/447 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#56]: https://gitlab.freedesktop.org/drm/intel/issues/56 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#61]: https://gitlab.freedesktop.org/drm/intel/issues/61 [i915#635]: https://gitlab.freedesktop.org/drm/intel/issues/635 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#68]: https://gitlab.freedesktop.org/drm/intel/issues/68 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82 [i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 [i915#96]: https://gitlab.freedesktop.org/drm/intel/issues/96 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5394 -> IGTPW_4018 CI-20190529: 20190529 CI_DRM_7831: c40c8f70d19e5b27cffb4bb4609b1bc76fd1a58a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4018: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/index.html IGT_5394: 991fd07bcd7add7a5beca2c95b72a994e62fbb75 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4018/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-01-31 10:35 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-27 14:45 [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Mika Kahola 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane_lowres: Skip Yf tiling tests from gen12 onwards Mika Kahola 2020-01-30 10:30 ` Jani Nikula 2020-01-31 10:35 ` Kahola, Mika 2020-01-27 14:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane_lowres: Fix CRC mismatch Mika Kahola 2020-01-27 19:04 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-01-28 12:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-01-28 15:53 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix CRC mismatch (rev2) Patchwork 2020-01-29 7:07 ` [igt-dev] [PATCH i-g-t 0/2] Fix CRC mismatch Saarinen, Jani 2020-01-29 23:17 ` [igt-dev] ✗ Fi.CI.IGT: failure for Fix CRC mismatch (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox