* [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman
@ 2019-09-18 13:51 Ville Syrjala
2019-09-18 13:51 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() Ville Syrjala
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Ville Syrjala @ 2019-09-18 13:51 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Use pixman to swizzle cairo RGB30 into XBGR2101010.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_fb.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index bad3eeca4132..612c25d5baed 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -157,6 +157,12 @@ static const struct format_desc_struct {
.num_planes = 1, .plane_bpp = { 32, },
.hsub = 1, .vsub = 1,
},
+ { .name = "XBGB2101010", .depth = -1, .drm_id = DRM_FORMAT_XBGR2101010,
+ .cairo_id = CAIRO_FORMAT_INVALID,
+ .pixman_id = PIXMAN_x2b10g10r10,
+ .num_planes = 1, .plane_bpp = { 32, },
+ .hsub = 1, .vsub = 1,
+ },
{ .name = "ARGB8888", .depth = 32, .drm_id = DRM_FORMAT_ARGB8888,
.cairo_id = CAIRO_FORMAT_ARGB32,
.pixman_id = PIXMAN_a8r8g8b8,
@@ -3107,6 +3113,9 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
} else if (PIXMAN_FORMAT_A(f->pixman_id)) {
cairo_id = CAIRO_FORMAT_ARGB32;
drm_format = DRM_FORMAT_ARGB8888;
+ } else if (PIXMAN_FORMAT_R(f->pixman_id) > 8) {
+ cairo_id = CAIRO_FORMAT_RGB30;
+ drm_format = DRM_FORMAT_XRGB2101010;
} else {
cairo_id = CAIRO_FORMAT_RGB24;
drm_format = DRM_FORMAT_XRGB8888;
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala @ 2019-09-18 13:51 ` Ville Syrjala 2019-09-30 19:35 ` Chris Wilson 2019-09-18 14:17 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Ville Syrjala @ 2019-09-18 13:51 UTC (permalink / raw) To: igt-dev From: Ville Syrjälä <ville.syrjala@linux.intel.com> Extract the "should we use a convert surface?" logic into a small helper in the vein of use_blitter() and use_rendercopy(). Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- lib/igt_fb.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index 612c25d5baed..41c646d655d6 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -3192,6 +3192,16 @@ void igt_fb_unmap_buffer(struct igt_fb *fb, void *buffer) return unmap_bo(fb, buffer); } +static bool use_convert(const struct igt_fb *fb) +{ + const struct format_desc_struct *f = lookup_drm_format(fb->drm_format); + + return igt_format_is_yuv(fb->drm_format) || + igt_format_is_fp16(fb->drm_format) || + (f->cairo_id == CAIRO_FORMAT_INVALID && + f->pixman_id != PIXMAN_invalid); +} + /** * igt_get_cairo_surface: * @fd: open drm file descriptor @@ -3208,10 +3218,7 @@ cairo_surface_t *igt_get_cairo_surface(int fd, struct igt_fb *fb) const struct format_desc_struct *f = lookup_drm_format(fb->drm_format); if (fb->cairo_surface == NULL) { - if (igt_format_is_yuv(fb->drm_format) || - igt_format_is_fp16(fb->drm_format) || - ((f->cairo_id == CAIRO_FORMAT_INVALID) && - (f->pixman_id != PIXMAN_invalid))) + if (use_convert(fb)) create_cairo_surface__convert(fd, fb); else if (use_blitter(fb) || use_rendercopy(fb) || igt_vc4_is_tiled(fb->modifier)) create_cairo_surface__gpu(fd, fb); -- 2.21.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() 2019-09-18 13:51 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() Ville Syrjala @ 2019-09-30 19:35 ` Chris Wilson 0 siblings, 0 replies; 10+ messages in thread From: Chris Wilson @ 2019-09-30 19:35 UTC (permalink / raw) To: Ville Syrjala, igt-dev Quoting Ville Syrjala (2019-09-18 14:51:56) > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Extract the "should we use a convert surface?" logic into a small > helper in the vein of use_blitter() and use_rendercopy(). > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/igt_fb.c | 15 +++++++++++---- > 1 file changed, 11 insertions(+), 4 deletions(-) > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index 612c25d5baed..41c646d655d6 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -3192,6 +3192,16 @@ void igt_fb_unmap_buffer(struct igt_fb *fb, void *buffer) > return unmap_bo(fb, buffer); > } > > +static bool use_convert(const struct igt_fb *fb) > +{ > + const struct format_desc_struct *f = lookup_drm_format(fb->drm_format); > + > + return igt_format_is_yuv(fb->drm_format) || > + igt_format_is_fp16(fb->drm_format) || > + (f->cairo_id == CAIRO_FORMAT_INVALID && > + f->pixman_id != PIXMAN_invalid); > +} > + > /** > * igt_get_cairo_surface: > * @fd: open drm file descriptor > @@ -3208,10 +3218,7 @@ cairo_surface_t *igt_get_cairo_surface(int fd, struct igt_fb *fb) > const struct format_desc_struct *f = lookup_drm_format(fb->drm_format); > > if (fb->cairo_surface == NULL) { > - if (igt_format_is_yuv(fb->drm_format) || > - igt_format_is_fp16(fb->drm_format) || > - ((f->cairo_id == CAIRO_FORMAT_INVALID) && > - (f->pixman_id != PIXMAN_invalid))) > + if (use_convert(fb)) Purely mechanical, Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala 2019-09-18 13:51 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() Ville Syrjala @ 2019-09-18 14:17 ` Patchwork 2019-09-30 19:35 ` [igt-dev] [PATCH i-g-t 1/2] " Chris Wilson ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2019-09-18 14:17 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman URL : https://patchwork.freedesktop.org/series/66862/ State : success == Summary == CI Bug Log - changes from CI_DRM_6915 -> IGTPW_3478 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66862/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3478: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_render_tiled_blits@basic: - {fi-tgl-u2}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-tgl-u2/igt@gem_render_tiled_blits@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-tgl-u2/igt@gem_render_tiled_blits@basic.html Known issues ------------ Here are the changes found in IGTPW_3478 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_create@basic-files: - fi-cml-u2: [PASS][3] -> [INCOMPLETE][4] ([fdo#110566]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-cml-u2/igt@gem_ctx_create@basic-files.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-cml-u2/igt@gem_ctx_create@basic-files.html * igt@i915_module_load@reload: - fi-blb-e6850: [PASS][5] -> [INCOMPLETE][6] ([fdo#107718]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-blb-e6850/igt@i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-blb-e6850/igt@i915_module_load@reload.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][7] -> [FAIL][8] ([fdo#109483]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html * igt@prime_self_import@basic-with_fd_dup: - fi-icl-u3: [PASS][9] -> [DMESG-WARN][10] ([fdo#107724]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-icl-u3/igt@prime_self_import@basic-with_fd_dup.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-icl-u3/igt@prime_self_import@basic-with_fd_dup.html #### Possible fixes #### * igt@gem_exec_fence@nb-await-default: - {fi-tgl-u}: [FAIL][11] ([fdo#111562] / [fdo#111597]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-tgl-u/igt@gem_exec_fence@nb-await-default.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-tgl-u/igt@gem_exec_fence@nb-await-default.html * igt@gem_mmap_gtt@basic-write-no-prefault: - fi-icl-u3: [DMESG-WARN][13] ([fdo#107724]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-icl-u3/igt@gem_mmap_gtt@basic-write-no-prefault.html * igt@i915_module_load@reload-with-fault-injection: - {fi-icl-u4}: [DMESG-WARN][15] ([fdo#105602] / [fdo#106107] / [fdo#106350]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-icl-u4/igt@i915_module_load@reload-with-fault-injection.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-icl-u4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_psr@sprite_plane_onoff: - {fi-icl-u4}: [DMESG-WARN][17] ([fdo#105602]) -> [PASS][18] +40 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6915/fi-icl-u4/igt@kms_psr@sprite_plane_onoff.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/fi-icl-u4/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107 [fdo#106350]: https://bugs.freedesktop.org/show_bug.cgi?id=106350 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111155]: https://bugs.freedesktop.org/show_bug.cgi?id=111155 [fdo#111562]: https://bugs.freedesktop.org/show_bug.cgi?id=111562 [fdo#111597]: https://bugs.freedesktop.org/show_bug.cgi?id=111597 Participating hosts (56 -> 46) ------------------------------ Missing (10): fi-ilk-m540 fi-bxt-dsi fi-cml-h fi-skl-gvtdvm fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5190 -> IGTPW_3478 CI-20190529: 20190529 CI_DRM_6915: c72f7d5ea4386172247558b74c1f8012b35800b7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3478: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/ IGT_5190: 0e9510b83502af3e230870df2d66d4f68918d3a4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3478/ _______________________________________________ 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] lib/igt_fb: Add XBGR2101010 support via pixman 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala 2019-09-18 13:51 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() Ville Syrjala 2019-09-18 14:17 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman Patchwork @ 2019-09-30 19:35 ` Chris Wilson 2019-10-01 12:08 ` Ville Syrjälä 2019-10-01 13:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) Patchwork 2019-10-01 20:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 1 reply; 10+ messages in thread From: Chris Wilson @ 2019-09-30 19:35 UTC (permalink / raw) To: Ville Syrjala, igt-dev Quoting Ville Syrjala (2019-09-18 14:51:55) > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Use pixman to swizzle cairo RGB30 into XBGR2101010. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > lib/igt_fb.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index bad3eeca4132..612c25d5baed 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -157,6 +157,12 @@ static const struct format_desc_struct { > .num_planes = 1, .plane_bpp = { 32, }, > .hsub = 1, .vsub = 1, > }, > + { .name = "XBGB2101010", .depth = -1, .drm_id = DRM_FORMAT_XBGR2101010, > + .cairo_id = CAIRO_FORMAT_INVALID, > + .pixman_id = PIXMAN_x2b10g10r10, > + .num_planes = 1, .plane_bpp = { 32, }, > + .hsub = 1, .vsub = 1, > + }, That's self-consistent. > { .name = "ARGB8888", .depth = 32, .drm_id = DRM_FORMAT_ARGB8888, > .cairo_id = CAIRO_FORMAT_ARGB32, > .pixman_id = PIXMAN_a8r8g8b8, > @@ -3107,6 +3113,9 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb) > } else if (PIXMAN_FORMAT_A(f->pixman_id)) { > cairo_id = CAIRO_FORMAT_ARGB32; > drm_format = DRM_FORMAT_ARGB8888; > + } else if (PIXMAN_FORMAT_R(f->pixman_id) > 8) { > + cairo_id = CAIRO_FORMAT_RGB30; > + drm_format = DRM_FORMAT_XRGB2101010; A little less sure about this rule, but if it ever needs extending for more formats, it should hopefully become quickly apparent. Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman 2019-09-30 19:35 ` [igt-dev] [PATCH i-g-t 1/2] " Chris Wilson @ 2019-10-01 12:08 ` Ville Syrjälä 0 siblings, 0 replies; 10+ messages in thread From: Ville Syrjälä @ 2019-10-01 12:08 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev On Mon, Sep 30, 2019 at 08:35:11PM +0100, Chris Wilson wrote: > Quoting Ville Syrjala (2019-09-18 14:51:55) > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Use pixman to swizzle cairo RGB30 into XBGR2101010. > > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > --- > > lib/igt_fb.c | 9 +++++++++ > > 1 file changed, 9 insertions(+) > > > > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > > index bad3eeca4132..612c25d5baed 100644 > > --- a/lib/igt_fb.c > > +++ b/lib/igt_fb.c > > @@ -157,6 +157,12 @@ static const struct format_desc_struct { > > .num_planes = 1, .plane_bpp = { 32, }, > > .hsub = 1, .vsub = 1, > > }, > > + { .name = "XBGB2101010", .depth = -1, .drm_id = DRM_FORMAT_XBGR2101010, > > + .cairo_id = CAIRO_FORMAT_INVALID, > > + .pixman_id = PIXMAN_x2b10g10r10, > > + .num_planes = 1, .plane_bpp = { 32, }, > > + .hsub = 1, .vsub = 1, > > + }, > > That's self-consistent. > > > { .name = "ARGB8888", .depth = 32, .drm_id = DRM_FORMAT_ARGB8888, > > .cairo_id = CAIRO_FORMAT_ARGB32, > > .pixman_id = PIXMAN_a8r8g8b8, > > @@ -3107,6 +3113,9 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb) > > } else if (PIXMAN_FORMAT_A(f->pixman_id)) { > > cairo_id = CAIRO_FORMAT_ARGB32; > > drm_format = DRM_FORMAT_ARGB8888; > > + } else if (PIXMAN_FORMAT_R(f->pixman_id) > 8) { > > + cairo_id = CAIRO_FORMAT_RGB30; > > + drm_format = DRM_FORMAT_XRGB2101010; > > A little less sure about this rule, but if it ever needs extending for > more formats, it should hopefully become quickly apparent. Yeah, it's a bit too fuzzy for my taste. I was pondering about putting the correct cairo format into the format_desc itself, but that would require some changes to the "should we convert and how?" logic elsewhere. Seems doable but needs a little bit of actual thought. > > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Thanks. -- Ville Syrjälä Intel _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala ` (2 preceding siblings ...) 2019-09-30 19:35 ` [igt-dev] [PATCH i-g-t 1/2] " Chris Wilson @ 2019-10-01 13:26 ` Patchwork 2019-10-01 20:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2019-10-01 13:26 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) URL : https://patchwork.freedesktop.org/series/66862/ State : success == Summary == CI Bug Log - changes from CI_DRM_6983 -> IGTPW_3520 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66862/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_3520 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_create@basic-files: - fi-bxt-dsi: [PASS][1] -> [INCOMPLETE][2] ([fdo#103927]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-bxt-dsi/igt@gem_ctx_create@basic-files.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-bxt-dsi/igt@gem_ctx_create@basic-files.html * igt@gem_flink_basic@flink-lifetime: - fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-icl-u3/igt@gem_flink_basic@flink-lifetime.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-icl-u3/igt@gem_flink_basic@flink-lifetime.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][5] -> [FAIL][6] ([fdo#111407]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@gem_flink_basic@double-flink: - fi-icl-u3: [DMESG-WARN][7] ([fdo#107724]) -> [PASS][8] +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-icl-u3/igt@gem_flink_basic@double-flink.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-icl-u3/igt@gem_flink_basic@double-flink.html * igt@gem_sync@basic-each: - {fi-tgl-u}: [INCOMPLETE][9] ([fdo#111647]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-tgl-u/igt@gem_sync@basic-each.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-tgl-u/igt@gem_sync@basic-each.html * igt@i915_selftest@live_hangcheck: - fi-icl-u2: [INCOMPLETE][11] ([fdo#107713] / [fdo#108569]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/fi-icl-u2/igt@i915_selftest@live_hangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/fi-icl-u2/igt@i915_selftest@live_hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#111647]: https://bugs.freedesktop.org/show_bug.cgi?id=111647 [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735 Participating hosts (54 -> 47) ------------------------------ Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5208 -> IGTPW_3520 CI-20190529: 20190529 CI_DRM_6983: 16e1ac3822e92b138d170174c6496829af78c4a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3520: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/index.html IGT_5208: c0131b4f132acf287d9d05b0f5078003d3159e1c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala ` (3 preceding siblings ...) 2019-10-01 13:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) Patchwork @ 2019-10-01 20:27 ` Patchwork 2019-10-03 15:45 ` Ville Syrjälä 4 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2019-10-01 20:27 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) URL : https://patchwork.freedesktop.org/series/66862/ State : failure == Summary == CI Bug Log - changes from CI_DRM_6983_full -> IGTPW_3520_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3520_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3520_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_3520/index.html Known issues ------------ Here are the changes found in IGTPW_3520_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_schedule@preempt-bsd: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#111325]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb8/igt@gem_exec_schedule@preempt-bsd.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb4/igt@gem_exec_schedule@preempt-bsd.html * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: - shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([fdo#111870]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup: - shard-iclb: [PASS][5] -> [DMESG-WARN][6] ([fdo#111870]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-snb: [PASS][7] -> [DMESG-WARN][8] ([fdo#111870]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [PASS][9] -> [SKIP][10] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][11] -> [DMESG-WARN][12] ([fdo#108566]) +7 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_color@pipe-c-ctm-0-75: - shard-apl: [PASS][13] -> [INCOMPLETE][14] ([fdo#103927]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl8/igt@kms_color@pipe-c-ctm-0-75.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl4/igt@kms_color@pipe-c-ctm-0-75.html * igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding: - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#103232]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103232]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-hsw: [PASS][19] -> [FAIL][20] ([fdo#103355]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [PASS][21] -> [INCOMPLETE][22] ([fdo#103359] / [k.org#198133]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-hsw: [PASS][23] -> [INCOMPLETE][24] ([fdo#103540]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-snb: [PASS][25] -> [INCOMPLETE][26] ([fdo#105411]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-iclb: [PASS][27] -> [FAIL][28] ([fdo#103167]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-iclb: [PASS][29] -> [FAIL][30] ([fdo#103167] / [fdo#110378]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-glk: [PASS][31] -> [FAIL][32] ([fdo#103167]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_setmode@basic: - shard-apl: [PASS][35] -> [FAIL][36] ([fdo#99912]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl3/igt@kms_setmode@basic.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl7/igt@kms_setmode@basic.html * igt@prime_busy@hang-bsd2: - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109276]) +14 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb2/igt@prime_busy@hang-bsd2.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb5/igt@prime_busy@hang-bsd2.html #### Possible fixes #### * {igt@gem_eio@kms}: - shard-glk: [DMESG-WARN][39] -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk7/igt@gem_eio@kms.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk4/igt@gem_eio@kms.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][41] ([fdo#110854]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@gem_exec_balancer@smoke.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_userptr_blits@coherency-sync: - shard-hsw: [DMESG-WARN][45] ([fdo#111870]) -> [PASS][46] +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw6/igt@gem_userptr_blits@coherency-sync.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: [DMESG-WARN][47] ([fdo#111870]) -> [PASS][48] +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl7/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@gem_userptr_blits@dmabuf-sync.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@sync-unmap-after-close: - shard-apl: [DMESG-WARN][51] ([fdo#109385] / [fdo#111870]) -> [PASS][52] +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl6/igt@gem_userptr_blits@sync-unmap-after-close.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl7/igt@gem_userptr_blits@sync-unmap-after-close.html * igt@gem_userptr_blits@sync-unmap-cycles: - shard-snb: [DMESG-WARN][53] ([fdo#111870]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html - shard-glk: [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56] +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk6/igt@gem_userptr_blits@sync-unmap-cycles.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk2/igt@gem_userptr_blits@sync-unmap-cycles.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][57] ([fdo#108566]) -> [PASS][58] +5 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl6/igt@i915_suspend@sysfs-reader.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl2/igt@i915_suspend@sysfs-reader.html - shard-kbl: [INCOMPLETE][59] ([fdo#103665] / [fdo#108767]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl4/igt@i915_suspend@sysfs-reader.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl2/igt@i915_suspend@sysfs-reader.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][61] ([fdo#103167]) -> [PASS][62] +6 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [FAIL][63] ([fdo#103166]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][65] ([fdo#109441]) -> [PASS][66] +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][67] ([fdo#109276]) -> [PASS][68] +18 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][69] ([fdo#111329]) -> [SKIP][70] ([fdo#109276]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [SKIP][71] ([fdo#109276]) -> [FAIL][72] ([fdo#111330]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][73] ([fdo#109349]) -> [DMESG-WARN][74] ([fdo#107724]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/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). [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108767]: https://bugs.freedesktop.org/show_bug.cgi?id=108767 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (14 -> 6) ------------------------------ ERROR: It appears as if the changes made in IGTPW_3520_full prevented too many machines from booting. Missing (8): shard-skl pig-hsw-4770r shard-tglb1 shard-tglb2 shard-tglb3 shard-tglb4 shard-tglb5 shard-tglb6 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5208 -> IGTPW_3520 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6983: 16e1ac3822e92b138d170174c6496829af78c4a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3520: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/index.html IGT_5208: c0131b4f132acf287d9d05b0f5078003d3159e1c @ 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_3520/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] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) 2019-10-01 20:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2019-10-03 15:45 ` Ville Syrjälä 2019-10-03 15:49 ` Chris Wilson 0 siblings, 1 reply; 10+ messages in thread From: Ville Syrjälä @ 2019-10-03 15:45 UTC (permalink / raw) To: igt-dev On Tue, Oct 01, 2019 at 08:27:46PM -0000, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) > URL : https://patchwork.freedesktop.org/series/66862/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_6983_full -> IGTPW_3520_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_3520_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_3520_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_3520/index.html > > Known issues > ------------ > > Here are the changes found in IGTPW_3520_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > Good grief. Has everything rotted recently? > * igt@gem_exec_schedule@preempt-bsd: > - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#111325]) +4 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb8/igt@gem_exec_schedule@preempt-bsd.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb4/igt@gem_exec_schedule@preempt-bsd.html > > * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup: > - shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([fdo#111870]) +1 similar issue > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl6/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup: > - shard-iclb: [PASS][5] -> [DMESG-WARN][6] ([fdo#111870]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-snb: [PASS][7] -> [DMESG-WARN][8] ([fdo#111870]) +1 similar issue > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb4/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@i915_pm_rc6_residency@rc6-accuracy: > - shard-snb: [PASS][9] -> [SKIP][10] ([fdo#109271]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb6/igt@i915_pm_rc6_residency@rc6-accuracy.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html > > * igt@i915_suspend@fence-restore-tiled2untiled: > - shard-apl: [PASS][11] -> [DMESG-WARN][12] ([fdo#108566]) +7 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html > > * igt@kms_color@pipe-c-ctm-0-75: > - shard-apl: [PASS][13] -> [INCOMPLETE][14] ([fdo#103927]) > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl8/igt@kms_color@pipe-c-ctm-0-75.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl4/igt@kms_color@pipe-c-ctm-0-75.html > > * igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding: > - shard-kbl: [PASS][15] -> [FAIL][16] ([fdo#103232]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html > - shard-apl: [PASS][17] -> [FAIL][18] ([fdo#103232]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl8/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html > > * igt@kms_cursor_legacy@cursor-vs-flip-legacy: > - shard-hsw: [PASS][19] -> [FAIL][20] ([fdo#103355]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html > > * igt@kms_flip@flip-vs-suspend-interruptible: > - shard-glk: [PASS][21] -> [INCOMPLETE][22] ([fdo#103359] / [k.org#198133]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html > - shard-hsw: [PASS][23] -> [INCOMPLETE][24] ([fdo#103540]) > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible.html > - shard-snb: [PASS][25] -> [INCOMPLETE][26] ([fdo#105411]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html > > * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: > - shard-iclb: [PASS][27] -> [FAIL][28] ([fdo#103167]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbc-1p-rte: > - shard-iclb: [PASS][29] -> [FAIL][30] ([fdo#103167] / [fdo#110378]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: > - shard-glk: [PASS][31] -> [FAIL][32] ([fdo#103167]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html > > * igt@kms_psr@psr2_sprite_plane_move: > - shard-iclb: [PASS][33] -> [SKIP][34] ([fdo#109441]) +2 similar issues > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html > > * igt@kms_setmode@basic: > - shard-apl: [PASS][35] -> [FAIL][36] ([fdo#99912]) > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl3/igt@kms_setmode@basic.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl7/igt@kms_setmode@basic.html > > * igt@prime_busy@hang-bsd2: > - shard-iclb: [PASS][37] -> [SKIP][38] ([fdo#109276]) +14 similar issues > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb2/igt@prime_busy@hang-bsd2.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb5/igt@prime_busy@hang-bsd2.html > > > #### Possible fixes #### > > * {igt@gem_eio@kms}: > - shard-glk: [DMESG-WARN][39] -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk7/igt@gem_eio@kms.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk4/igt@gem_eio@kms.html > > * igt@gem_exec_balancer@smoke: > - shard-iclb: [SKIP][41] ([fdo#110854]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@gem_exec_balancer@smoke.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@gem_exec_balancer@smoke.html > > * igt@gem_exec_schedule@preempt-other-chain-bsd: > - shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +4 similar issues > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd.html > > * igt@gem_userptr_blits@coherency-sync: > - shard-hsw: [DMESG-WARN][45] ([fdo#111870]) -> [PASS][46] +2 similar issues > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-hsw6/igt@gem_userptr_blits@coherency-sync.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-hsw7/igt@gem_userptr_blits@coherency-sync.html > > * igt@gem_userptr_blits@dmabuf-sync: > - shard-kbl: [DMESG-WARN][47] ([fdo#111870]) -> [PASS][48] +2 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl7/igt@gem_userptr_blits@dmabuf-sync.html > - shard-iclb: [DMESG-WARN][49] ([fdo#111870]) -> [PASS][50] > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@gem_userptr_blits@dmabuf-sync.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@gem_userptr_blits@dmabuf-sync.html > > * igt@gem_userptr_blits@sync-unmap-after-close: > - shard-apl: [DMESG-WARN][51] ([fdo#109385] / [fdo#111870]) -> [PASS][52] +1 similar issue > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl6/igt@gem_userptr_blits@sync-unmap-after-close.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl7/igt@gem_userptr_blits@sync-unmap-after-close.html > > * igt@gem_userptr_blits@sync-unmap-cycles: > - shard-snb: [DMESG-WARN][53] ([fdo#111870]) -> [PASS][54] +2 similar issues > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-snb2/igt@gem_userptr_blits@sync-unmap-cycles.html > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html > - shard-glk: [DMESG-WARN][55] ([fdo#111870]) -> [PASS][56] +2 similar issues > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-glk6/igt@gem_userptr_blits@sync-unmap-cycles.html > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-glk2/igt@gem_userptr_blits@sync-unmap-cycles.html > > * igt@i915_suspend@sysfs-reader: > - shard-apl: [DMESG-WARN][57] ([fdo#108566]) -> [PASS][58] +5 similar issues > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-apl6/igt@i915_suspend@sysfs-reader.html > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-apl2/igt@i915_suspend@sysfs-reader.html > - shard-kbl: [INCOMPLETE][59] ([fdo#103665] / [fdo#108767]) -> [PASS][60] > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-kbl4/igt@i915_suspend@sysfs-reader.html > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-kbl2/igt@i915_suspend@sysfs-reader.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: > - shard-iclb: [FAIL][61] ([fdo#103167]) -> [PASS][62] +6 similar issues > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html > > * igt@kms_plane_lowres@pipe-a-tiling-y: > - shard-iclb: [FAIL][63] ([fdo#103166]) -> [PASS][64] > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-y.html > > * igt@kms_psr@psr2_primary_mmap_cpu: > - shard-iclb: [SKIP][65] ([fdo#109441]) -> [PASS][66] +2 similar issues > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html > > * igt@prime_vgem@fence-wait-bsd2: > - shard-iclb: [SKIP][67] ([fdo#109276]) -> [PASS][68] +18 similar issues > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html > > > #### Warnings #### > > * igt@gem_ctx_isolation@vcs1-nonpriv: > - shard-iclb: [FAIL][69] ([fdo#111329]) -> [SKIP][70] ([fdo#109276]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html > > * igt@gem_mocs_settings@mocs-isolation-bsd2: > - shard-iclb: [SKIP][71] ([fdo#109276]) -> [FAIL][72] ([fdo#111330]) > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@gem_mocs_settings@mocs-isolation-bsd2.html > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html > > * igt@kms_dp_dsc@basic-dsc-enable-edp: > - shard-iclb: [SKIP][73] ([fdo#109349]) -> [DMESG-WARN][74] ([fdo#107724]) > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6983/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/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). > > [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 > [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 > [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 > [fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355 > [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 > [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 > [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 > [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 > [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 > [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 > [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 > [fdo#108767]: https://bugs.freedesktop.org/show_bug.cgi?id=108767 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 > [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 > [fdo#109385]: https://bugs.freedesktop.org/show_bug.cgi?id=109385 > [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 > [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 > [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 > [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 > [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 > [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 > [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 > [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 > [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 > > > Participating hosts (14 -> 6) > ------------------------------ > > ERROR: It appears as if the changes made in IGTPW_3520_full prevented too many machines from booting. > > Missing (8): shard-skl pig-hsw-4770r shard-tglb1 shard-tglb2 shard-tglb3 shard-tglb4 shard-tglb5 shard-tglb6 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5208 -> IGTPW_3520 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_6983: 16e1ac3822e92b138d170174c6496829af78c4a3 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_3520: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3520/index.html > IGT_5208: c0131b4f132acf287d9d05b0f5078003d3159e1c @ 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_3520/index.html -- Ville Syrjälä Intel _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) 2019-10-03 15:45 ` Ville Syrjälä @ 2019-10-03 15:49 ` Chris Wilson 0 siblings, 0 replies; 10+ messages in thread From: Chris Wilson @ 2019-10-03 15:49 UTC (permalink / raw) To: Ville Syrjälä, igt-dev Quoting Ville Syrjälä (2019-10-03 16:45:37) > On Tue, Oct 01, 2019 at 08:27:46PM -0000, Patchwork wrote: > > == Series Details == > > > > Series: series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) > > URL : https://patchwork.freedesktop.org/series/66862/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from CI_DRM_6983_full -> IGTPW_3520_full > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_3520_full absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_3520_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_3520/index.html > > > > Known issues > > ------------ > > > > Here are the changes found in IGTPW_3520_full that come from known issues: > > > > ### IGT changes ### > > > > #### Issues hit #### > > > > Good grief. Has everything rotted recently? Just rc1 shenanigans. -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2019-10-03 15:49 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-18 13:51 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Add XBGR2101010 support via pixman Ville Syrjala 2019-09-18 13:51 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Extract use_convert() Ville Syrjala 2019-09-30 19:35 ` Chris Wilson 2019-09-18 14:17 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman Patchwork 2019-09-30 19:35 ` [igt-dev] [PATCH i-g-t 1/2] " Chris Wilson 2019-10-01 12:08 ` Ville Syrjälä 2019-10-01 13:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Add XBGR2101010 support via pixman (rev2) Patchwork 2019-10-01 20:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2019-10-03 15:45 ` Ville Syrjälä 2019-10-03 15:49 ` Chris Wilson
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.