All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression
@ 2019-11-21 12:55 Mika Kahola
  2019-11-21 13:43 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Mika Kahola @ 2019-11-21 12:55 UTC (permalink / raw
  To: igt-dev

GEN12 CCS render compression support is missing from the test.
This causes a SKIP when executing a subtest 'getfb-reject-ccs'.

For TGL the main surface is 4x4 tiles aligned. Therefore, the
pitch for 32bpp is 4*4*32 bytes and the height is 4 rows aligned.

The CCS surface is 64 bytes, which corresponds to 4 tiles on the
main surface. The height of the CCS surface is aligned by 4 rows.

v2: Fix incorrect size and updates on comments (Imre)

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 tests/kms_getfb.c | 44 ++++++++++++++++++++++++++++++++++----------
 1 file changed, 34 insertions(+), 10 deletions(-)

diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
index ca0b01c0..a3b446db 100644
--- a/tests/kms_getfb.c
+++ b/tests/kms_getfb.c
@@ -81,23 +81,47 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
 		.height = 1024,
 		.pixel_format = DRM_FORMAT_XRGB8888,
 		.flags = DRM_MODE_FB_MODIFIERS,
-		.modifier = {
-			I915_FORMAT_MOD_Y_TILED_CCS,
-			I915_FORMAT_MOD_Y_TILED_CCS,
-		},
 	};
 	int size;
 
 	igt_require(has_addfb2_iface(fd));
 	igt_require_intel(fd);
 
-	/* An explanation of the magic numbers can be found in kms_ccs.c. */
-	add.pitches[0] = ALIGN(add.width * 4, 128);
-	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
-	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
+	if ((intel_gen(intel_get_drm_devid(fd))) >= 12) {
+                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
+                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
 
-	size = add.offsets[1];
-	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
+		/* The main surface for TGL is 4x4 tiles aligned
+		 * For 32bpp the pitch is 4*4*32 bytes i.e. 512 bytes
+		 */
+		add.pitches[0] = ALIGN(add.width * 4, 4 * 128);
+
+		/* The main surface height is 4 tile rows aligned */
+		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 128);
+
+		/* CCS surface pitch is 64 bytes aligned which corresponds to
+		 * 4 tiles on the main surface
+		 */
+		add.pitches[1] = DIV_ROUND_UP(add.width, 128) * 64;
+
+		size = add.offsets[1];
+		/* CCS surface height is 4 tile rows aligned */
+		size += add.pitches[1] * DIV_ROUND_UP(add.height, 128) * 4;
+
+		/* GEM object is page aligned */
+		size = ALIGN(size, 4096);
+	} else {
+                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_CCS;
+                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_CCS;
+
+		/* An explanation of the magic numbers can be found in kms_ccs.c. */
+		add.pitches[0] = ALIGN(add.width * 4, 128);
+		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
+		add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
+
+		size = add.offsets[1];
+		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
+	}
 
 	add.handles[0] = gem_create(fd, size);
 	igt_require(add.handles[0] != 0);
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2)
  2019-11-21 12:55 [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
@ 2019-11-21 13:43 ` Patchwork
  2019-11-22  8:16 ` [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Imre Deak
  2019-11-22 18:11 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-11-21 13:43 UTC (permalink / raw
  To: Kahola, Mika; +Cc: igt-dev

== Series Details ==

Series: tests/kms_getfb: Add support for GEN12 CCS render compression (rev2)
URL   : https://patchwork.freedesktop.org/series/69822/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7399 -> IGTPW_3741
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [PASS][1] -> [FAIL][2] ([fdo#108511])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  
#### Warnings ####

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

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

  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111880]: https://bugs.freedesktop.org/show_bug.cgi?id=111880
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261


Participating hosts (51 -> 42)
------------------------------

  Missing    (9): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-whl-u fi-byt-clapper fi-bdw-samus fi-kbl-r 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5299 -> IGTPW_3741

  CI-20190529: 20190529
  CI_DRM_7399: 2de5360065e0b700f96b3240ed03f2c6d4e121be @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3741: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/index.html
  IGT_5299: 65fed6a79adea14f7bef6d55530da47d7731d370 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression
  2019-11-21 12:55 [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
  2019-11-21 13:43 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
@ 2019-11-22  8:16 ` Imre Deak
  2019-11-22  9:27   ` Kahola, Mika
  2019-11-22 18:11 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
  2 siblings, 1 reply; 5+ messages in thread
From: Imre Deak @ 2019-11-22  8:16 UTC (permalink / raw
  To: Mika Kahola; +Cc: igt-dev

On Thu, Nov 21, 2019 at 02:55:14PM +0200, Mika Kahola wrote:
> GEN12 CCS render compression support is missing from the test.
> This causes a SKIP when executing a subtest 'getfb-reject-ccs'.
> 
> For TGL the main surface is 4x4 tiles aligned. Therefore, the
> pitch for 32bpp is 4*4*32 bytes and the height is 4 rows aligned.
> 
> The CCS surface is 64 bytes, which corresponds to 4 tiles on the
> main surface. The height of the CCS surface is aligned by 4 rows.
> 
> v2: Fix incorrect size and updates on comments (Imre)
> 
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>

Reviewed-by: Imre Deak <imre.deak@intel.com>

one nit below:

> ---
>  tests/kms_getfb.c | 44 ++++++++++++++++++++++++++++++++++----------
>  1 file changed, 34 insertions(+), 10 deletions(-)
> 
> diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
> index ca0b01c0..a3b446db 100644
> --- a/tests/kms_getfb.c
> +++ b/tests/kms_getfb.c
> @@ -81,23 +81,47 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
>  		.height = 1024,
>  		.pixel_format = DRM_FORMAT_XRGB8888,
>  		.flags = DRM_MODE_FB_MODIFIERS,
> -		.modifier = {
> -			I915_FORMAT_MOD_Y_TILED_CCS,
> -			I915_FORMAT_MOD_Y_TILED_CCS,
> -		},
>  	};
>  	int size;
>  
>  	igt_require(has_addfb2_iface(fd));
>  	igt_require_intel(fd);
>  
> -	/* An explanation of the magic numbers can be found in kms_ccs.c. */
> -	add.pitches[0] = ALIGN(add.width * 4, 128);
> -	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
> -	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
> +	if ((intel_gen(intel_get_drm_devid(fd))) >= 12) {
> +                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
> +                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;

w/s error, I can fix this while applying the patch.

>  
> -	size = add.offsets[1];
> -	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
> +		/* The main surface for TGL is 4x4 tiles aligned
> +		 * For 32bpp the pitch is 4*4*32 bytes i.e. 512 bytes
> +		 */
> +		add.pitches[0] = ALIGN(add.width * 4, 4 * 128);
> +
> +		/* The main surface height is 4 tile rows aligned */
> +		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 128);
> +
> +		/* CCS surface pitch is 64 bytes aligned which corresponds to
> +		 * 4 tiles on the main surface
> +		 */
> +		add.pitches[1] = DIV_ROUND_UP(add.width, 128) * 64;
> +
> +		size = add.offsets[1];
> +		/* CCS surface height is 4 tile rows aligned */
> +		size += add.pitches[1] * DIV_ROUND_UP(add.height, 128) * 4;
> +
> +		/* GEM object is page aligned */
> +		size = ALIGN(size, 4096);
> +	} else {
> +                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_CCS;
> +                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_CCS;
> +
> +		/* An explanation of the magic numbers can be found in kms_ccs.c. */
> +		add.pitches[0] = ALIGN(add.width * 4, 128);
> +		add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
> +		add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
> +
> +		size = add.offsets[1];
> +		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
> +	}
>  
>  	add.handles[0] = gem_create(fd, size);
>  	igt_require(add.handles[0] != 0);
> -- 
> 2.17.1
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression
  2019-11-22  8:16 ` [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Imre Deak
@ 2019-11-22  9:27   ` Kahola, Mika
  0 siblings, 0 replies; 5+ messages in thread
From: Kahola, Mika @ 2019-11-22  9:27 UTC (permalink / raw
  To: Deak, Imre; +Cc: igt-dev@lists.freedesktop.org

On Fri, 2019-11-22 at 10:16 +0200, Imre Deak wrote:
> On Thu, Nov 21, 2019 at 02:55:14PM +0200, Mika Kahola wrote:
> > GEN12 CCS render compression support is missing from the test.
> > This causes a SKIP when executing a subtest 'getfb-reject-ccs'.
> > 
> > For TGL the main surface is 4x4 tiles aligned. Therefore, the
> > pitch for 32bpp is 4*4*32 bytes and the height is 4 rows aligned.
> > 
> > The CCS surface is 64 bytes, which corresponds to 4 tiles on the
> > main surface. The height of the CCS surface is aligned by 4 rows.
> > 
> > v2: Fix incorrect size and updates on comments (Imre)
> > 
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> 
> Reviewed-by: Imre Deak <imre.deak@intel.com>
> 
> one nit below:
> 
> > ---
> >  tests/kms_getfb.c | 44 ++++++++++++++++++++++++++++++++++---------
> > -
> >  1 file changed, 34 insertions(+), 10 deletions(-)
> > 
> > diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
> > index ca0b01c0..a3b446db 100644
> > --- a/tests/kms_getfb.c
> > +++ b/tests/kms_getfb.c
> > @@ -81,23 +81,47 @@ static void get_ccs_fb(int fd, struct
> > drm_mode_fb_cmd2 *ret)
> >  		.height = 1024,
> >  		.pixel_format = DRM_FORMAT_XRGB8888,
> >  		.flags = DRM_MODE_FB_MODIFIERS,
> > -		.modifier = {
> > -			I915_FORMAT_MOD_Y_TILED_CCS,
> > -			I915_FORMAT_MOD_Y_TILED_CCS,
> > -		},
> >  	};
> >  	int size;
> >  
> >  	igt_require(has_addfb2_iface(fd));
> >  	igt_require_intel(fd);
> >  
> > -	/* An explanation of the magic numbers can be found in
> > kms_ccs.c. */
> > -	add.pitches[0] = ALIGN(add.width * 4, 128);
> > -	add.offsets[1] = add.pitches[0] * ALIGN(add.height, 32);
> > -	add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32, 128);
> > +	if ((intel_gen(intel_get_drm_devid(fd))) >= 12) {
> > +                add.modifier[0] =
> > I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
> > +                add.modifier[1] =
> > I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS;
> 
> w/s error, I can fix this while applying the patch.
Pushed with fixes. Thanks for the review!

> 
> >  
> > -	size = add.offsets[1];
> > -	size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
> > +		/* The main surface for TGL is 4x4 tiles aligned
> > +		 * For 32bpp the pitch is 4*4*32 bytes i.e. 512 bytes
> > +		 */
> > +		add.pitches[0] = ALIGN(add.width * 4, 4 * 128);
> > +
> > +		/* The main surface height is 4 tile rows aligned */
> > +		add.offsets[1] = add.pitches[0] * ALIGN(add.height,
> > 128);
> > +
> > +		/* CCS surface pitch is 64 bytes aligned which
> > corresponds to
> > +		 * 4 tiles on the main surface
> > +		 */
> > +		add.pitches[1] = DIV_ROUND_UP(add.width, 128) * 64;
> > +
> > +		size = add.offsets[1];
> > +		/* CCS surface height is 4 tile rows aligned */
> > +		size += add.pitches[1] * DIV_ROUND_UP(add.height, 128)
> > * 4;
> > +
> > +		/* GEM object is page aligned */
> > +		size = ALIGN(size, 4096);
> > +	} else {
> > +                add.modifier[0] = I915_FORMAT_MOD_Y_TILED_CCS;
> > +                add.modifier[1] = I915_FORMAT_MOD_Y_TILED_CCS;
> > +
> > +		/* An explanation of the magic numbers can be found in
> > kms_ccs.c. */
> > +		add.pitches[0] = ALIGN(add.width * 4, 128);
> > +		add.offsets[1] = add.pitches[0] * ALIGN(add.height,
> > 32);
> > +		add.pitches[1] = ALIGN(ALIGN(add.width * 4, 32) / 32,
> > 128);
> > +
> > +		size = add.offsets[1];
> > +		size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) /
> > 16, 32);
> > +	}
> >  
> >  	add.handles[0] = gem_create(fd, size);
> >  	igt_require(add.handles[0] != 0);
> > -- 
> > 2.17.1
> > 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2)
  2019-11-21 12:55 [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
  2019-11-21 13:43 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
  2019-11-22  8:16 ` [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Imre Deak
@ 2019-11-22 18:11 ` Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-11-22 18:11 UTC (permalink / raw
  To: Kahola, Mika; +Cc: igt-dev

== Series Details ==

Series: tests/kms_getfb: Add support for GEN12 CCS render compression (rev2)
URL   : https://patchwork.freedesktop.org/series/69822/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7399_full -> IGTPW_3741_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@vecs0-s3:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2] ([fdo#111832])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb1/igt@gem_ctx_isolation@vecs0-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb4/igt@gem_ctx_isolation@vecs0-s3.html

  * igt@gem_ctx_persistence@vcs1-queued:
    - shard-iclb:         [PASS][3] -> [SKIP][4] ([fdo#109276] / [fdo#112080])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb2/igt@gem_ctx_persistence@vcs1-queued.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb8/igt@gem_ctx_persistence@vcs1-queued.html

  * igt@gem_exec_create@madvise:
    - shard-tglb:         [PASS][5] -> [INCOMPLETE][6] ([fdo#111747])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb7/igt@gem_exec_create@madvise.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb6/igt@gem_exec_create@madvise.html

  * igt@gem_exec_schedule@preempt-queue-blt:
    - shard-tglb:         [PASS][7] -> [INCOMPLETE][8] ([fdo#111677])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb2/igt@gem_exec_schedule@preempt-queue-blt.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb6/igt@gem_exec_schedule@preempt-queue-blt.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][9] -> [SKIP][10] ([fdo#112146]) +5 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-hsw:          [PASS][11] -> [DMESG-WARN][12] ([fdo#111870])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-hsw4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [PASS][13] -> [DMESG-WARN][14] ([fdo#111870]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][15] -> [FAIL][16] ([fdo#111830 ])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb6/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-tglb:         [PASS][17] -> [INCOMPLETE][18] ([fdo#111747] / [fdo#111850])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@i915_pm_rpm@system-suspend.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb7/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][19] -> [DMESG-WARN][20] ([fdo#108566]) +3 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-glk:          [PASS][21] -> [FAIL][22] ([fdo#105363])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-tglb:         [PASS][23] -> [INCOMPLETE][24] ([fdo#111832] / [fdo#111850] / [fdo#112031])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@kms_flip@flip-vs-suspend-interruptible.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-tglb:         [PASS][25] -> [FAIL][26] ([fdo#103167]) +5 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-iclb:         [PASS][27] -> [FAIL][28] ([fdo#103167]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-iclb:         [PASS][29] -> [DMESG-WARN][30] ([fdo#111764])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [PASS][31] -> [DMESG-WARN][32] ([fdo#108566]) +4 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [PASS][33] -> [FAIL][34] ([fdo#103166])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr@no_drrs:
    - shard-iclb:         [PASS][35] -> [FAIL][36] ([fdo#108341])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb5/igt@kms_psr@no_drrs.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb1/igt@kms_psr@no_drrs.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         [PASS][37] -> [SKIP][38] ([fdo#109441])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb1/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][39] -> [FAIL][40] ([fdo#99912])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-apl6/igt@kms_setmode@basic.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-apl1/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-tglb:         [PASS][41] -> [INCOMPLETE][42] ([fdo#111832] / [fdo#111850]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html

  * igt@perf_pmu@init-busy-vcs1:
    - shard-iclb:         [PASS][43] -> [SKIP][44] ([fdo#112080]) +12 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb4/igt@perf_pmu@init-busy-vcs1.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb8/igt@perf_pmu@init-busy-vcs1.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [PASS][45] -> [SKIP][46] ([fdo#109276]) +17 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb1/igt@prime_busy@hang-bsd2.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb8/igt@prime_busy@hang-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-none:
    - shard-iclb:         [SKIP][47] ([fdo#109276] / [fdo#112080]) -> [PASS][48] +4 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb3/igt@gem_ctx_isolation@vcs1-none.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb1/igt@gem_ctx_isolation@vcs1-none.html

  * igt@gem_exec_parallel@fds:
    - shard-tglb:         [INCOMPLETE][49] ([fdo#111867]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@gem_exec_parallel@fds.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb3/igt@gem_exec_parallel@fds.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][51] ([fdo#112080]) -> [PASS][52] +12 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb5/igt@gem_exec_parallel@vcs1-fds.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb4/igt@gem_exec_parallel@vcs1-fds.html

  * {igt@gem_exec_parse_blt@bb-start-cmd}:
    - shard-glk:          [TIMEOUT][53] ([fdo#112271]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-glk4/igt@gem_exec_parse_blt@bb-start-cmd.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-glk3/igt@gem_exec_parse_blt@bb-start-cmd.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [SKIP][55] ([fdo#112146]) -> [PASS][56] +5 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-snb:          [DMESG-WARN][57] ([fdo#111870]) -> [PASS][58] +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-snb2/igt@gem_userptr_blits@sync-unmap.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-snb6/igt@gem_userptr_blits@sync-unmap.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [DMESG-WARN][59] ([fdo#111870]) -> [PASS][60] +4 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-hsw4/igt@gem_userptr_blits@sync-unmap-after-close.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-hsw5/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-tglb:         [INCOMPLETE][61] ([fdo#111832] / [fdo#111850]) -> [PASS][62] +2 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb5/igt@gem_workarounds@suspend-resume-context.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb6/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_selftest@live_hangcheck:
    - shard-tglb:         [INCOMPLETE][63] ([fdo#111747]) -> [PASS][64]
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@i915_selftest@live_hangcheck.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb4/igt@i915_selftest@live_hangcheck.html

  * igt@i915_suspend@debugfs-reader:
    - shard-tglb:         [INCOMPLETE][65] ([fdo#111850]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb8/igt@i915_suspend@debugfs-reader.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb9/igt@i915_suspend@debugfs-reader.html

  * igt@i915_suspend@forcewake:
    - shard-iclb:         [INCOMPLETE][67] ([fdo#107713]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb3/igt@i915_suspend@forcewake.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb5/igt@i915_suspend@forcewake.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-kbl:          [INCOMPLETE][69] ([fdo#103665]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-kbl6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-kbl3/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-glk:          [FAIL][71] ([fdo#104873]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-glk1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-glk1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-hsw:          [FAIL][73] ([fdo#105767]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-hsw2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled:
    - shard-iclb:         [FAIL][75] ([fdo#103184] / [fdo#103232]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb5/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-hsw:          [INCOMPLETE][77] ([fdo#103540]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-hsw4/igt@kms_flip@2x-flip-vs-suspend.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-hsw2/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-iclb:         [FAIL][79] ([fdo#103167]) -> [PASS][80] +5 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-glk:          [FAIL][81] ([fdo#103167]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-farfromfence:
    - shard-snb:          [INCOMPLETE][83] ([fdo#105411]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-snb2/igt@kms_frontbuffer_tracking@fbc-farfromfence.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-snb7/igt@kms_frontbuffer_tracking@fbc-farfromfence.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-kbl:          [FAIL][85] ([fdo#103167]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
    - shard-apl:          [FAIL][87] ([fdo#103167]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-apl3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-apl6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
    - shard-tglb:         [FAIL][89] ([fdo#103167]) -> [PASS][90] +2 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][91] ([fdo#109441]) -> [PASS][92] +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb1/igt@kms_psr@psr2_cursor_render.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [DMESG-WARN][93] ([fdo#108566]) -> [PASS][94] +5 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][95] ([fdo#109276]) -> [PASS][96] +16 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb6/igt@prime_vgem@fence-wait-bsd2.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [FAIL][97] ([fdo#111329]) -> [SKIP][98] ([fdo#109276] / [fdo#112080])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_exec_schedule@deep-bsd1:
    - shard-tglb:         [FAIL][99] ([fdo#111646]) -> [INCOMPLETE][100] ([fdo#111671])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@gem_exec_schedule@deep-bsd1.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb3/igt@gem_exec_schedule@deep-bsd1.html

  * igt@gem_exec_schedule@deep-bsd2:
    - shard-tglb:         [INCOMPLETE][101] ([fdo#111671]) -> [FAIL][102] ([fdo#111646])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb4/igt@gem_exec_schedule@deep-bsd2.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb1/igt@gem_exec_schedule@deep-bsd2.html

  * igt@kms_atomic_transition@6x-modeset-transitions-fencing:
    - shard-tglb:         [SKIP][103] ([fdo#112016 ] / [fdo#112021 ]) -> [SKIP][104] ([fdo#112021 ])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb6/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html

  * igt@kms_psr@psr2_suspend:
    - shard-tglb:         [DMESG-WARN][105] ([fdo#111600]) -> [INCOMPLETE][106] ([fdo#111832] / [fdo#111850])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7399/shard-tglb5/igt@kms_psr@psr2_suspend.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3741/shard-tglb2/igt@kms_psr@psr2_suspend.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.

== Logs ==

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

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

end of thread, other threads:[~2019-11-22 18:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-21 12:55 [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Mika Kahola
2019-11-21 13:43 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) Patchwork
2019-11-22  8:16 ` [igt-dev] [PATCH i-g-t v2] tests/kms_getfb: Add support for GEN12 CCS render compression Imre Deak
2019-11-22  9:27   ` Kahola, Mika
2019-11-22 18:11 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_getfb: Add support for GEN12 CCS render compression (rev2) 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.