All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo
@ 2019-10-03 19:58 Ville Syrjala
  2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Ville Syrjala @ 2019-10-03 19:58 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

A slight typo slipped in, fix it.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 lib/igt_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 41c646d655d6..db789ae79458 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -157,7 +157,7 @@ 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,
+	{ .name = "XBGR2101010", .depth = -1, .drm_id = DRM_FORMAT_XBGR2101010,
 	  .cairo_id = CAIRO_FORMAT_INVALID,
 	  .pixman_id = PIXMAN_x2b10g10r10,
 	  .num_planes = 1, .plane_bpp = { 32, },
-- 
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] 9+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR
  2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
@ 2019-10-03 19:58 ` Ville Syrjala
  2019-10-03 20:09   ` Chris Wilson
  2019-10-07 14:15   ` [igt-dev] [PATCH i-g-t v2 " Ville Syrjala
  2019-10-03 20:04 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Chris Wilson
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 9+ messages in thread
From: Ville Syrjala @ 2019-10-03 19:58 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Hook up conversion routines for 10bpc ARGB/ABGR formats.
Cairo only has the RGB30 without alpha so we'll do the
rendering with floats and use pixman to convert.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 lib/igt_fb.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index db789ae79458..8b47cf975598 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -175,6 +175,18 @@ static const struct format_desc_struct {
 	  .num_planes = 1, .plane_bpp = { 32, },
 	  .hsub = 1, .vsub = 1,
 	},
+	{ .name = "ARGB2101010", .depth = 30, .drm_id = DRM_FORMAT_ARGB2101010,
+	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_a2r10g10b10,
+	  .num_planes = 1, .plane_bpp = { 32, },
+	  .hsub = 1, .vsub = 1,
+	},
+	{ .name = "ABGR2101010", .depth = -1, .drm_id = DRM_FORMAT_ABGR2101010,
+	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_a2b10g10r10,
+	  .num_planes = 1, .plane_bpp = { 32, },
+	  .hsub = 1, .vsub = 1,
+	},
 	{ .name = "XRGB16161616F", .depth = -1, .drm_id = DRM_FORMAT_XRGB16161616F,
 	  .cairo_id = CAIRO_FORMAT_RGBA128F,
 	  .num_planes = 1, .plane_bpp = { 64, },
@@ -313,6 +325,7 @@ static const struct format_desc_struct {
 	},
 	{ .name = "IGT-FLOAT", .depth = -1, .drm_id = IGT_FORMAT_FLOAT,
 	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_rgba_float,
 	  .num_planes = 1, .plane_bpp = { 128 },
 	},
 };
@@ -3110,6 +3123,10 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
 		default:
 			igt_assert_f(0, "Unsupported format %u", f->cairo_id);
 		}
+	} else if (PIXMAN_FORMAT_A(f->pixman_id) &&
+		   PIXMAN_FORMAT_R(f->pixman_id) > 8) {
+		cairo_id = CAIRO_FORMAT_RGBA128F;
+		drm_format = IGT_FORMAT_FLOAT;
 	} else if (PIXMAN_FORMAT_A(f->pixman_id)) {
 		cairo_id = CAIRO_FORMAT_ARGB32;
 		drm_format = DRM_FORMAT_ARGB8888;
-- 
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] 9+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo
  2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
  2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
@ 2019-10-03 20:04 ` Chris Wilson
  2019-10-03 20:52 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Chris Wilson @ 2019-10-03 20:04 UTC (permalink / raw)
  To: Ville Syrjala, igt-dev

Quoting Ville Syrjala (2019-10-03 20:58:53)
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> A slight typo slipped in, fix it.
> 
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  lib/igt_fb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index 41c646d655d6..db789ae79458 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -157,7 +157,7 @@ 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,
> +       { .name = "XBGR2101010", .depth = -1, .drm_id = DRM_FORMAT_XBGR2101010,

Gah, even after being told there's a typo on this line, it still took
several passes to spot it.
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> # !ProofReader
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR
  2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
@ 2019-10-03 20:09   ` Chris Wilson
  2019-10-07 14:15   ` [igt-dev] [PATCH i-g-t v2 " Ville Syrjala
  1 sibling, 0 replies; 9+ messages in thread
From: Chris Wilson @ 2019-10-03 20:09 UTC (permalink / raw)
  To: Ville Syrjala, igt-dev

Quoting Ville Syrjala (2019-10-03 20:58:54)
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> 
> Hook up conversion routines for 10bpc ARGB/ABGR formats.
> Cairo only has the RGB30 without alpha so we'll do the
> rendering with floats and use pixman to convert.
> 
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
>  lib/igt_fb.c | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
> 
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index db789ae79458..8b47cf975598 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -175,6 +175,18 @@ static const struct format_desc_struct {
>           .num_planes = 1, .plane_bpp = { 32, },
>           .hsub = 1, .vsub = 1,
>         },
> +       { .name = "ARGB2101010", .depth = 30, .drm_id = DRM_FORMAT_ARGB2101010,
> +         .cairo_id = CAIRO_FORMAT_INVALID,
> +         .pixman_id = PIXMAN_a2r10g10b10,
> +         .num_planes = 1, .plane_bpp = { 32, },
> +         .hsub = 1, .vsub = 1,
> +       },
> +       { .name = "ABGR2101010", .depth = -1, .drm_id = DRM_FORMAT_ABGR2101010,
> +         .cairo_id = CAIRO_FORMAT_INVALID,
> +         .pixman_id = PIXMAN_a2b10g10r10,
> +         .num_planes = 1, .plane_bpp = { 32, },
> +         .hsub = 1, .vsub = 1,
> +       },

No typos in the name this time.

>         { .name = "XRGB16161616F", .depth = -1, .drm_id = DRM_FORMAT_XRGB16161616F,
>           .cairo_id = CAIRO_FORMAT_RGBA128F,
>           .num_planes = 1, .plane_bpp = { 64, },
> @@ -313,6 +325,7 @@ static const struct format_desc_struct {
>         },
>         { .name = "IGT-FLOAT", .depth = -1, .drm_id = IGT_FORMAT_FLOAT,
>           .cairo_id = CAIRO_FORMAT_INVALID,
> +         .pixman_id = PIXMAN_rgba_float,
>           .num_planes = 1, .plane_bpp = { 128 },
>         },
>  };
> @@ -3110,6 +3123,10 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
>                 default:
>                         igt_assert_f(0, "Unsupported format %u", f->cairo_id);
>                 }
> +       } else if (PIXMAN_FORMAT_A(f->pixman_id) &&
> +                  PIXMAN_FORMAT_R(f->pixman_id) > 8) {
> +               cairo_id = CAIRO_FORMAT_RGBA128F;
> +               drm_format = IGT_FORMAT_FLOAT;

Fits the description. Priority order in if-else looks fine.

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] 9+ messages in thread

* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo
  2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
  2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
  2019-10-03 20:04 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Chris Wilson
@ 2019-10-03 20:52 ` Patchwork
  2019-10-04 12:38   ` Ville Syrjälä
  2019-10-07 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2) Patchwork
  2019-10-07 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2019-10-03 20:52 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo
URL   : https://patchwork.freedesktop.org/series/67562/
State : warning

== Summary ==

Did not get list of undocumented tests for this run, something is wrong!

Other than that, pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68227 for more details

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68227
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo
  2019-10-03 20:52 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] " Patchwork
@ 2019-10-04 12:38   ` Ville Syrjälä
  0 siblings, 0 replies; 9+ messages in thread
From: Ville Syrjälä @ 2019-10-04 12:38 UTC (permalink / raw)
  To: igt-dev

On Thu, Oct 03, 2019 at 08:52:41PM -0000, Patchwork wrote:
> == Series Details ==
> 
> Series: series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo
> URL   : https://patchwork.freedesktop.org/series/67562/
> State : warning
> 
> == Summary ==
> 
> Did not get list of undocumented tests for this run, something is wrong!
> 
> Other than that, pipeline status: FAILED.

igt_fb.c:328:17: error: ‘PIXMAN_rgba_float’ undeclared here (not in a
function)

Seems to need some compatibility hacks...

> 
> see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68227 for more details
> 
> == Logs ==
> 
> For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/68227

-- 
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] 9+ messages in thread

* [igt-dev] [PATCH i-g-t v2 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR
  2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
  2019-10-03 20:09   ` Chris Wilson
@ 2019-10-07 14:15   ` Ville Syrjala
  1 sibling, 0 replies; 9+ messages in thread
From: Ville Syrjala @ 2019-10-07 14:15 UTC (permalink / raw)
  To: igt-dev

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

Hook up conversion routines for 10bpc ARGB/ABGR formats.
Cairo only has the RGB30 without alpha so we'll do the
rendering with floats and use pixman to convert.

v2: Deal with pixman < 0.36.0

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 lib/igt_fb.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index db789ae79458..6b674c1bcd02 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -80,6 +80,10 @@
 #define cairo_format_t int
 #endif
 
+#if PIXMAN_VERSION < PIXMAN_VERSION_ENCODE(0, 36, 0)
+#define PIXMAN_rgba_float PIXMAN_invalid
+#endif
+
 /* drm fourcc/cairo format maps */
 static const struct format_desc_struct {
 	const char *name;
@@ -175,6 +179,18 @@ static const struct format_desc_struct {
 	  .num_planes = 1, .plane_bpp = { 32, },
 	  .hsub = 1, .vsub = 1,
 	},
+	{ .name = "ARGB2101010", .depth = 30, .drm_id = DRM_FORMAT_ARGB2101010,
+	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_a2r10g10b10,
+	  .num_planes = 1, .plane_bpp = { 32, },
+	  .hsub = 1, .vsub = 1,
+	},
+	{ .name = "ABGR2101010", .depth = -1, .drm_id = DRM_FORMAT_ABGR2101010,
+	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_a2b10g10r10,
+	  .num_planes = 1, .plane_bpp = { 32, },
+	  .hsub = 1, .vsub = 1,
+	},
 	{ .name = "XRGB16161616F", .depth = -1, .drm_id = DRM_FORMAT_XRGB16161616F,
 	  .cairo_id = CAIRO_FORMAT_RGBA128F,
 	  .num_planes = 1, .plane_bpp = { 64, },
@@ -313,6 +329,7 @@ static const struct format_desc_struct {
 	},
 	{ .name = "IGT-FLOAT", .depth = -1, .drm_id = IGT_FORMAT_FLOAT,
 	  .cairo_id = CAIRO_FORMAT_INVALID,
+	  .pixman_id = PIXMAN_rgba_float,
 	  .num_planes = 1, .plane_bpp = { 128 },
 	},
 };
@@ -3110,6 +3127,10 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
 		default:
 			igt_assert_f(0, "Unsupported format %u", f->cairo_id);
 		}
+	} else if (PIXMAN_FORMAT_A(f->pixman_id) &&
+		   PIXMAN_FORMAT_R(f->pixman_id) > 8) {
+		cairo_id = CAIRO_FORMAT_RGBA128F;
+		drm_format = IGT_FORMAT_FLOAT;
 	} else if (PIXMAN_FORMAT_A(f->pixman_id)) {
 		cairo_id = CAIRO_FORMAT_ARGB32;
 		drm_format = DRM_FORMAT_ARGB8888;
-- 
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] 9+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2)
  2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
                   ` (2 preceding siblings ...)
  2019-10-03 20:52 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] " Patchwork
@ 2019-10-07 15:15 ` Patchwork
  2019-10-07 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-07 15:15 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2)
URL   : https://patchwork.freedesktop.org/series/67562/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7024 -> IGTPW_3548
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/index.html

Known issues
------------

  Here are the changes found in IGTPW_3548 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_flink_basic@bad-open:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-icl-u3/igt@gem_flink_basic@bad-open.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-icl-u3/igt@gem_flink_basic@bad-open.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][3] -> [FAIL][4] ([fdo#111407])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
#### Possible fixes ####

  * igt@gem_mmap_gtt@basic-write-gtt:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-icl-u3/igt@gem_mmap_gtt@basic-write-gtt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-icl-u3/igt@gem_mmap_gtt@basic-write-gtt.html

  * igt@i915_selftest@live_hangcheck:
    - fi-bsw-n3050:       [INCOMPLETE][7] ([fdo#105876]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-bsw-n3050/igt@i915_selftest@live_hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-bsw-n3050/igt@i915_selftest@live_hangcheck.html

  * igt@i915_selftest@live_requests:
    - {fi-tgl-u}:         [INCOMPLETE][9] ([fdo#111867]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-tgl-u/igt@i915_selftest@live_requests.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-tgl-u/igt@i915_selftest@live_requests.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-kbl-7500u:       [WARN][11] ([fdo#109483]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/fi-kbl-7500u/igt@kms_chamelium@dp-edid-read.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#105876]: https://bugs.freedesktop.org/show_bug.cgi?id=105876
  [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#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111867]: https://bugs.freedesktop.org/show_bug.cgi?id=111867


Participating hosts (52 -> 45)
------------------------------

  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_5215 -> IGTPW_3548

  CI-20190529: 20190529
  CI_DRM_7024: b149aba92ace27b28e068c2541270653c23bca75 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3548: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/index.html
  IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2)
  2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
                   ` (3 preceding siblings ...)
  2019-10-07 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2) Patchwork
@ 2019-10-07 19:27 ` Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-10-07 19:27 UTC (permalink / raw)
  To: Ville Syrjala; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2)
URL   : https://patchwork.freedesktop.org/series/67562/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7024_full -> IGTPW_3548_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_3548_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_busy@extended-parallel-vcs2:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb1/igt@gem_busy@extended-parallel-vcs2.html

  
Known issues
------------

  Here are the changes found in IGTPW_3548_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [PASS][2] -> [SKIP][3] ([fdo#111325]) +5 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb8/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-snb:          [PASS][4] -> [DMESG-WARN][5] ([fdo#111870]) +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-snb6/igt@gem_userptr_blits@dmabuf-sync.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-snb2/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [PASS][6] -> [DMESG-WARN][7] ([fdo#111870])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-hsw6/igt@gem_userptr_blits@sync-unmap-after-close.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#108566]) +3 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [PASS][10] -> [FAIL][11] ([fdo#103167]) +3 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#109441]) +3 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb8/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_vblank@pipe-b-wait-idle-hang:
    - shard-apl:          [PASS][14] -> [INCOMPLETE][15] ([fdo#103927]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-apl3/igt@kms_vblank@pipe-b-wait-idle-hang.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-apl1/igt@kms_vblank@pipe-b-wait-idle-hang.html

  * igt@kms_vblank@pipe-c-wait-forked-hang:
    - shard-hsw:          [PASS][16] -> [INCOMPLETE][17] ([fdo#103540])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-hsw1/igt@kms_vblank@pipe-c-wait-forked-hang.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-hsw8/igt@kms_vblank@pipe-c-wait-forked-hang.html

  * igt@perf_pmu@busy-idle-no-semaphores-vecs0:
    - shard-glk:          [PASS][18] -> [DMESG-WARN][19] ([fdo#111626])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-glk6/igt@perf_pmu@busy-idle-no-semaphores-vecs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-glk8/igt@perf_pmu@busy-idle-no-semaphores-vecs0.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [PASS][20] -> [SKIP][21] ([fdo#109276]) +20 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb8/igt@prime_vgem@fence-wait-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_shared@q-smoketest-bsd:
    - {shard-tglb}:       [INCOMPLETE][22] ([fdo# 111852 ]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb6/igt@gem_ctx_shared@q-smoketest-bsd.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb2/igt@gem_ctx_shared@q-smoketest-bsd.html

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [FAIL][24] -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-snb7/igt@gem_eio@in-flight-contexts-immediate.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-snb6/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [SKIP][26] ([fdo#110854]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb6/igt@gem_exec_balancer@smoke.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb2/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_reuse@baggage:
    - {shard-tglb}:       [DMESG-WARN][28] ([fdo#111600]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb3/igt@gem_exec_reuse@baggage.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb6/igt@gem_exec_reuse@baggage.html

  * igt@gem_exec_schedule@preempt-self-bsd:
    - shard-iclb:         [SKIP][30] ([fdo#111325]) -> [PASS][31] +2 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb2/igt@gem_exec_schedule@preempt-self-bsd.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb8/igt@gem_exec_schedule@preempt-self-bsd.html

  * igt@gem_exec_schedule@smoketest-all:
    - {shard-tglb}:       [INCOMPLETE][32] ([fdo#111855]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb4/igt@gem_exec_schedule@smoketest-all.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb7/igt@gem_exec_schedule@smoketest-all.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-apl:          [DMESG-FAIL][34] -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-apl7/igt@gem_tiled_swapping@non-threaded.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-apl4/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-hsw:          [DMESG-WARN][36] ([fdo#111870]) -> [PASS][37] +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-hsw4/igt@gem_userptr_blits@dmabuf-unsync.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-hsw1/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-snb:          [DMESG-WARN][38] ([fdo#111870]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][40] ([fdo#108566]) -> [PASS][41] +7 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-apl5/igt@i915_suspend@sysfs-reader.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-apl8/igt@i915_suspend@sysfs-reader.html

  * igt@kms_atomic_interruptible@legacy-cursor:
    - {shard-tglb}:       [INCOMPLETE][42] -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb5/igt@kms_atomic_interruptible@legacy-cursor.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb4/igt@kms_atomic_interruptible@legacy-cursor.html

  * igt@kms_color@pipe-a-gamma:
    - {shard-tglb}:       [FAIL][44] ([fdo#104782]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb5/igt@kms_color@pipe-a-gamma.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb7/igt@kms_color@pipe-a-gamma.html

  * igt@kms_flip@dpms-vs-vblank-race-interruptible:
    - shard-apl:          [FAIL][46] ([fdo#111609]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-apl7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-apl2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-tilingchange:
    - shard-glk:          [FAIL][48] ([fdo#103167]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-glk3/igt@kms_frontbuffer_tracking@fbc-tilingchange.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-glk5/igt@kms_frontbuffer_tracking@fbc-tilingchange.html
    - shard-kbl:          [FAIL][50] ([fdo#103167]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-tilingchange.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-tilingchange.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-iclb:         [FAIL][52] ([fdo#103167]) -> [PASS][53] +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - {shard-tglb}:       [FAIL][54] ([fdo#103167]) -> [PASS][55] +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [SKIP][56] ([fdo#109441]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
    - shard-iclb:         [FAIL][58] ([fdo#109495]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb5/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][60] ([fdo#109276]) -> [PASS][61] +10 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb5/igt@prime_busy@hang-bsd2.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb2/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_mocs_settings@mocs-reset-bsd2:
    - shard-iclb:         [FAIL][62] ([fdo#111330]) -> [SKIP][63] ([fdo#109276]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/shard-iclb8/igt@gem_mocs_settings@mocs-reset-bsd2.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [SKIP][64] ([fdo#109349]) -> [DMESG-WARN][65] ([fdo#107724])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7024/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/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# 111852 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 111852 
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [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#109495]: https://bugs.freedesktop.org/show_bug.cgi?id=109495
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111597]: https://bugs.freedesktop.org/show_bug.cgi?id=111597
  [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600
  [fdo#111609]: https://bugs.freedesktop.org/show_bug.cgi?id=111609
  [fdo#111626]: https://bugs.freedesktop.org/show_bug.cgi?id=111626
  [fdo#111646]: https://bugs.freedesktop.org/show_bug.cgi?id=111646
  [fdo#111757]: https://bugs.freedesktop.org/show_bug.cgi?id=111757
  [fdo#111781]: https://bugs.freedesktop.org/show_bug.cgi?id=111781
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111855]: https://bugs.freedesktop.org/show_bug.cgi?id=111855
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870


Participating hosts (11 -> 7)
------------------------------

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5215 -> IGTPW_3548
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_7024: b149aba92ace27b28e068c2541270653c23bca75 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3548: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3548/index.html
  IGT_5215: 880c8d3c9831349a269ac6822c8d44e80807089f @ 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_3548/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-10-07 19:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-03 19:58 [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Ville Syrjala
2019-10-03 19:58 ` [igt-dev] [PATCH i-g-t 2/2] lib/igt_fb: Add support for 10bpc ARGB/ABGR Ville Syrjala
2019-10-03 20:09   ` Chris Wilson
2019-10-07 14:15   ` [igt-dev] [PATCH i-g-t v2 " Ville Syrjala
2019-10-03 20:04 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_fb: Fix XBGB->XBGR typo Chris Wilson
2019-10-03 20:52 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/2] " Patchwork
2019-10-04 12:38   ` Ville Syrjälä
2019-10-07 15:15 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib/igt_fb: Fix XBGB->XBGR typo (rev2) Patchwork
2019-10-07 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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.