Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/dp: use seq buf for printing rates
@ 2024-11-27 13:18 Jani Nikula
  2024-11-27 14:14 ` ✗ i915.CI.BAT: failure for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Jani Nikula @ 2024-11-27 13:18 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

Hand rolling the buffer overflow handling with snprintf() is a bit
tedious. The seq_buf interface is made for this. Switch to it.

Use struct intel_display while at it.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
 1 file changed, 14 insertions(+), 22 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 053a9a4182e7..4471c8fcd478 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -28,6 +28,7 @@
 #include <linux/export.h>
 #include <linux/i2c.h>
 #include <linux/notifier.h>
+#include <linux/seq_buf.h>
 #include <linux/slab.h>
 #include <linux/sort.h>
 #include <linux/string_helpers.h>
@@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
 	return DISPLAY_VER(i915) >= 10;
 }
 
-static void snprintf_int_array(char *str, size_t len,
-			       const int *array, int nelem)
+static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)
 {
 	int i;
 
-	str[0] = '\0';
-
-	for (i = 0; i < nelem; i++) {
-		int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
-		if (r >= len)
-			return;
-		str += r;
-		len -= r;
-	}
+	for (i = 0; i < nelem; i++)
+		seq_buf_printf(s, "%s%d", i ? ", " : "", array[i]);
 }
 
 static void intel_dp_print_rates(struct intel_dp *intel_dp)
 {
-	struct drm_i915_private *i915 = dp_to_i915(intel_dp);
-	char str[128]; /* FIXME: too big for stack? */
+	struct intel_display *display = to_intel_display(intel_dp);
+	DECLARE_SEQ_BUF(s, 128); /* FIXME: too big for stack? */
 
 	if (!drm_debug_enabled(DRM_UT_KMS))
 		return;
 
-	snprintf_int_array(str, sizeof(str),
-			   intel_dp->source_rates, intel_dp->num_source_rates);
-	drm_dbg_kms(&i915->drm, "source rates: %s\n", str);
+	seq_buf_print_array(&s, intel_dp->source_rates, intel_dp->num_source_rates);
+	drm_dbg_kms(display->drm, "source rates: %s\n", seq_buf_str(&s));
 
-	snprintf_int_array(str, sizeof(str),
-			   intel_dp->sink_rates, intel_dp->num_sink_rates);
-	drm_dbg_kms(&i915->drm, "sink rates: %s\n", str);
+	seq_buf_clear(&s);
+	seq_buf_print_array(&s, intel_dp->sink_rates, intel_dp->num_sink_rates);
+	drm_dbg_kms(display->drm, "sink rates: %s\n", seq_buf_str(&s));
 
-	snprintf_int_array(str, sizeof(str),
-			   intel_dp->common_rates, intel_dp->num_common_rates);
-	drm_dbg_kms(&i915->drm, "common rates: %s\n", str);
+	seq_buf_clear(&s);
+	seq_buf_print_array(&s, intel_dp->common_rates, intel_dp->num_common_rates);
+	drm_dbg_kms(display->drm, "common rates: %s\n", seq_buf_str(&s));
 }
 
 static int forced_link_rate(struct intel_dp *intel_dp)
-- 
2.39.5


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

* ✗ i915.CI.BAT: failure for drm/i915/dp: use seq buf for printing rates
  2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
@ 2024-11-27 14:14 ` Patchwork
  2024-11-28 13:03   ` Jani Nikula
  2024-11-27 15:17 ` [PATCH] " Gustavo Sousa
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2024-11-27 14:14 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/dp: use seq buf for printing rates
URL   : https://patchwork.freedesktop.org/series/141841/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15753 -> Patchwork_141841v1
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_141841v1 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_141841v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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/Patchwork_141841v1/index.html

Participating hosts (45 -> 43)
------------------------------

  Missing    (2): fi-snb-2520m bat-jsl-3 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-8/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-8/igt@i915_selftest@live.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - bat-adls-6:         [PASS][3] -> [FAIL][4] ([i915#12903])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-adls-6/igt@i915_pm_rpm@module-reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-apl-1/igt@dmabuf@all-tests.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_pm_rpm@module-reload:
    - bat-dg1-7:          [FAIL][9] ([i915#12903]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-mtlp-6:         [ABORT][11] -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [ABORT][13] ([i915#12061]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-6:         [ABORT][15] ([i915#12061]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

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

  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904


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

  * Linux: CI_DRM_15753 -> Patchwork_141841v1

  CI-20190529: 20190529
  CI_DRM_15753: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_141841v1: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/index.html

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

* Re: [PATCH] drm/i915/dp: use seq buf for printing rates
  2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
  2024-11-27 14:14 ` ✗ i915.CI.BAT: failure for " Patchwork
@ 2024-11-27 15:17 ` Gustavo Sousa
  2024-11-27 17:24   ` Jani Nikula
  2024-11-27 15:34 ` Raag Jadav
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Gustavo Sousa @ 2024-11-27 15:17 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx, intel-xe; +Cc: jani.nikula

Quoting Jani Nikula (2024-11-27 10:18:38-03:00)
>Hand rolling the buffer overflow handling with snprintf() is a bit
>tedious. The seq_buf interface is made for this. Switch to it.

Cool! Today I learned a new kernel interface. :-)

>
>Use struct intel_display while at it.
>
>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>---
> drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
> 1 file changed, 14 insertions(+), 22 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>index 053a9a4182e7..4471c8fcd478 100644
>--- a/drivers/gpu/drm/i915/display/intel_dp.c
>+++ b/drivers/gpu/drm/i915/display/intel_dp.c
>@@ -28,6 +28,7 @@
> #include <linux/export.h>
> #include <linux/i2c.h>
> #include <linux/notifier.h>
>+#include <linux/seq_buf.h>
> #include <linux/slab.h>
> #include <linux/sort.h>
> #include <linux/string_helpers.h>
>@@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
>         return DISPLAY_VER(i915) >= 10;
> }
> 
>-static void snprintf_int_array(char *str, size_t len,
>-                               const int *array, int nelem)
>+static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)
> {
>         int i;
> 
>-        str[0] = '\0';
>-
>-        for (i = 0; i < nelem; i++) {
>-                int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
>-                if (r >= len)
>-                        return;
>-                str += r;
>-                len -= r;
>-        }
>+        for (i = 0; i < nelem; i++)
>+                seq_buf_printf(s, "%s%d", i ? ", " : "", array[i]);
> }
> 
> static void intel_dp_print_rates(struct intel_dp *intel_dp)
> {
>-        struct drm_i915_private *i915 = dp_to_i915(intel_dp);
>-        char str[128]; /* FIXME: too big for stack? */
>+        struct intel_display *display = to_intel_display(intel_dp);
>+        DECLARE_SEQ_BUF(s, 128); /* FIXME: too big for stack? */

I wonder if just using drm_dbg_printer() would make things simpler,
without requiring a buffer.

Anyway, the patch looks good to me, so:

Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

> 
>         if (!drm_debug_enabled(DRM_UT_KMS))
>                 return;
> 
>-        snprintf_int_array(str, sizeof(str),
>-                           intel_dp->source_rates, intel_dp->num_source_rates);
>-        drm_dbg_kms(&i915->drm, "source rates: %s\n", str);
>+        seq_buf_print_array(&s, intel_dp->source_rates, intel_dp->num_source_rates);
>+        drm_dbg_kms(display->drm, "source rates: %s\n", seq_buf_str(&s));
> 
>-        snprintf_int_array(str, sizeof(str),
>-                           intel_dp->sink_rates, intel_dp->num_sink_rates);
>-        drm_dbg_kms(&i915->drm, "sink rates: %s\n", str);
>+        seq_buf_clear(&s);
>+        seq_buf_print_array(&s, intel_dp->sink_rates, intel_dp->num_sink_rates);
>+        drm_dbg_kms(display->drm, "sink rates: %s\n", seq_buf_str(&s));
> 
>-        snprintf_int_array(str, sizeof(str),
>-                           intel_dp->common_rates, intel_dp->num_common_rates);
>-        drm_dbg_kms(&i915->drm, "common rates: %s\n", str);
>+        seq_buf_clear(&s);
>+        seq_buf_print_array(&s, intel_dp->common_rates, intel_dp->num_common_rates);
>+        drm_dbg_kms(display->drm, "common rates: %s\n", seq_buf_str(&s));
> }
> 
> static int forced_link_rate(struct intel_dp *intel_dp)
>-- 
>2.39.5
>

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

* Re: [PATCH] drm/i915/dp: use seq buf for printing rates
  2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
  2024-11-27 14:14 ` ✗ i915.CI.BAT: failure for " Patchwork
  2024-11-27 15:17 ` [PATCH] " Gustavo Sousa
@ 2024-11-27 15:34 ` Raag Jadav
  2024-11-27 17:06   ` Jani Nikula
  2024-11-29 10:53 ` ✓ i915.CI.BAT: success for " Patchwork
  2024-11-29 14:03 ` ✗ i915.CI.Full: failure " Patchwork
  4 siblings, 1 reply; 11+ messages in thread
From: Raag Jadav @ 2024-11-27 15:34 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe

On Wed, Nov 27, 2024 at 03:18:38PM +0200, Jani Nikula wrote:
> Hand rolling the buffer overflow handling with snprintf() is a bit
> tedious. The seq_buf interface is made for this. Switch to it.
> 
> Use struct intel_display while at it.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
>  1 file changed, 14 insertions(+), 22 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 053a9a4182e7..4471c8fcd478 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -28,6 +28,7 @@
>  #include <linux/export.h>
>  #include <linux/i2c.h>
>  #include <linux/notifier.h>
> +#include <linux/seq_buf.h>
>  #include <linux/slab.h>
>  #include <linux/sort.h>
>  #include <linux/string_helpers.h>
> @@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
>  	return DISPLAY_VER(i915) >= 10;
>  }
>  
> -static void snprintf_int_array(char *str, size_t len,
> -			       const int *array, int nelem)
> +static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)

Perhaps with more users worth introducing as part of core lib?

Andy and I did something similar with kmemdup.
https://lore.kernel.org/linux-gpio/20241126172240.6044-1-raag.jadav@intel.com/

Raag

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

* Re: [PATCH] drm/i915/dp: use seq buf for printing rates
  2024-11-27 15:34 ` Raag Jadav
@ 2024-11-27 17:06   ` Jani Nikula
  0 siblings, 0 replies; 11+ messages in thread
From: Jani Nikula @ 2024-11-27 17:06 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-gfx, intel-xe

On Wed, 27 Nov 2024, Raag Jadav <raag.jadav@intel.com> wrote:
> On Wed, Nov 27, 2024 at 03:18:38PM +0200, Jani Nikula wrote:
>> Hand rolling the buffer overflow handling with snprintf() is a bit
>> tedious. The seq_buf interface is made for this. Switch to it.
>> 
>> Use struct intel_display while at it.
>> 
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
>>  1 file changed, 14 insertions(+), 22 deletions(-)
>> 
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>> index 053a9a4182e7..4471c8fcd478 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> @@ -28,6 +28,7 @@
>>  #include <linux/export.h>
>>  #include <linux/i2c.h>
>>  #include <linux/notifier.h>
>> +#include <linux/seq_buf.h>
>>  #include <linux/slab.h>
>>  #include <linux/sort.h>
>>  #include <linux/string_helpers.h>
>> @@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
>>  	return DISPLAY_VER(i915) >= 10;
>>  }
>>  
>> -static void snprintf_int_array(char *str, size_t len,
>> -			       const int *array, int nelem)
>> +static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)
>
> Perhaps with more users worth introducing as part of core lib?

Maybe later; right now I have neither the time or energy, just dumped
this off my local branch.

BR,
Jani.

>
> Andy and I did something similar with kmemdup.
> https://lore.kernel.org/linux-gpio/20241126172240.6044-1-raag.jadav@intel.com/
>
> Raag

-- 
Jani Nikula, Intel

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

* Re: [PATCH] drm/i915/dp: use seq buf for printing rates
  2024-11-27 15:17 ` [PATCH] " Gustavo Sousa
@ 2024-11-27 17:24   ` Jani Nikula
  2024-11-27 18:04     ` Gustavo Sousa
  0 siblings, 1 reply; 11+ messages in thread
From: Jani Nikula @ 2024-11-27 17:24 UTC (permalink / raw)
  To: Gustavo Sousa, intel-gfx, intel-xe

On Wed, 27 Nov 2024, Gustavo Sousa <gustavo.sousa@intel.com> wrote:
> Quoting Jani Nikula (2024-11-27 10:18:38-03:00)
>>Hand rolling the buffer overflow handling with snprintf() is a bit
>>tedious. The seq_buf interface is made for this. Switch to it.
>
> Cool! Today I learned a new kernel interface. :-)

\o/

>>
>>Use struct intel_display while at it.
>>
>>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>>---
>> drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
>> 1 file changed, 14 insertions(+), 22 deletions(-)
>>
>>diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>>index 053a9a4182e7..4471c8fcd478 100644
>>--- a/drivers/gpu/drm/i915/display/intel_dp.c
>>+++ b/drivers/gpu/drm/i915/display/intel_dp.c
>>@@ -28,6 +28,7 @@
>> #include <linux/export.h>
>> #include <linux/i2c.h>
>> #include <linux/notifier.h>
>>+#include <linux/seq_buf.h>
>> #include <linux/slab.h>
>> #include <linux/sort.h>
>> #include <linux/string_helpers.h>
>>@@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
>>         return DISPLAY_VER(i915) >= 10;
>> }
>> 
>>-static void snprintf_int_array(char *str, size_t len,
>>-                               const int *array, int nelem)
>>+static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)
>> {
>>         int i;
>> 
>>-        str[0] = '\0';
>>-
>>-        for (i = 0; i < nelem; i++) {
>>-                int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
>>-                if (r >= len)
>>-                        return;
>>-                str += r;
>>-                len -= r;
>>-        }
>>+        for (i = 0; i < nelem; i++)
>>+                seq_buf_printf(s, "%s%d", i ? ", " : "", array[i]);
>> }
>> 
>> static void intel_dp_print_rates(struct intel_dp *intel_dp)
>> {
>>-        struct drm_i915_private *i915 = dp_to_i915(intel_dp);
>>-        char str[128]; /* FIXME: too big for stack? */
>>+        struct intel_display *display = to_intel_display(intel_dp);
>>+        DECLARE_SEQ_BUF(s, 128); /* FIXME: too big for stack? */
>
> I wonder if just using drm_dbg_printer() would make things simpler,
> without requiring a buffer.

Mmh, that's always line based, isn't it? It would result in each rate
getting printed on its own line, which is too spammy.

> Anyway, the patch looks good to me, so:
>
> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>

Thanks!

>
>> 
>>         if (!drm_debug_enabled(DRM_UT_KMS))
>>                 return;
>> 
>>-        snprintf_int_array(str, sizeof(str),
>>-                           intel_dp->source_rates, intel_dp->num_source_rates);
>>-        drm_dbg_kms(&i915->drm, "source rates: %s\n", str);
>>+        seq_buf_print_array(&s, intel_dp->source_rates, intel_dp->num_source_rates);
>>+        drm_dbg_kms(display->drm, "source rates: %s\n", seq_buf_str(&s));
>> 
>>-        snprintf_int_array(str, sizeof(str),
>>-                           intel_dp->sink_rates, intel_dp->num_sink_rates);
>>-        drm_dbg_kms(&i915->drm, "sink rates: %s\n", str);
>>+        seq_buf_clear(&s);
>>+        seq_buf_print_array(&s, intel_dp->sink_rates, intel_dp->num_sink_rates);
>>+        drm_dbg_kms(display->drm, "sink rates: %s\n", seq_buf_str(&s));
>> 
>>-        snprintf_int_array(str, sizeof(str),
>>-                           intel_dp->common_rates, intel_dp->num_common_rates);
>>-        drm_dbg_kms(&i915->drm, "common rates: %s\n", str);
>>+        seq_buf_clear(&s);
>>+        seq_buf_print_array(&s, intel_dp->common_rates, intel_dp->num_common_rates);
>>+        drm_dbg_kms(display->drm, "common rates: %s\n", seq_buf_str(&s));
>> }
>> 
>> static int forced_link_rate(struct intel_dp *intel_dp)
>>-- 
>>2.39.5
>>

-- 
Jani Nikula, Intel

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

* Re: [PATCH] drm/i915/dp: use seq buf for printing rates
  2024-11-27 17:24   ` Jani Nikula
@ 2024-11-27 18:04     ` Gustavo Sousa
  0 siblings, 0 replies; 11+ messages in thread
From: Gustavo Sousa @ 2024-11-27 18:04 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx, intel-xe

Quoting Jani Nikula (2024-11-27 14:24:58-03:00)
>On Wed, 27 Nov 2024, Gustavo Sousa <gustavo.sousa@intel.com> wrote:
>> Quoting Jani Nikula (2024-11-27 10:18:38-03:00)
>>>Hand rolling the buffer overflow handling with snprintf() is a bit
>>>tedious. The seq_buf interface is made for this. Switch to it.
>>
>> Cool! Today I learned a new kernel interface. :-)
>
>\o/
>
>>>
>>>Use struct intel_display while at it.
>>>
>>>Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>>>---
>>> drivers/gpu/drm/i915/display/intel_dp.c | 36 ++++++++++---------------
>>> 1 file changed, 14 insertions(+), 22 deletions(-)
>>>
>>>diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>>>index 053a9a4182e7..4471c8fcd478 100644
>>>--- a/drivers/gpu/drm/i915/display/intel_dp.c
>>>+++ b/drivers/gpu/drm/i915/display/intel_dp.c
>>>@@ -28,6 +28,7 @@
>>> #include <linux/export.h>
>>> #include <linux/i2c.h>
>>> #include <linux/notifier.h>
>>>+#include <linux/seq_buf.h>
>>> #include <linux/slab.h>
>>> #include <linux/sort.h>
>>> #include <linux/string_helpers.h>
>>>@@ -1506,41 +1507,32 @@ bool intel_dp_source_supports_tps4(struct drm_i915_private *i915)
>>>         return DISPLAY_VER(i915) >= 10;
>>> }
>>> 
>>>-static void snprintf_int_array(char *str, size_t len,
>>>-                               const int *array, int nelem)
>>>+static void seq_buf_print_array(struct seq_buf *s, const int *array, int nelem)
>>> {
>>>         int i;
>>> 
>>>-        str[0] = '\0';
>>>-
>>>-        for (i = 0; i < nelem; i++) {
>>>-                int r = snprintf(str, len, "%s%d", i ? ", " : "", array[i]);
>>>-                if (r >= len)
>>>-                        return;
>>>-                str += r;
>>>-                len -= r;
>>>-        }
>>>+        for (i = 0; i < nelem; i++)
>>>+                seq_buf_printf(s, "%s%d", i ? ", " : "", array[i]);
>>> }
>>> 
>>> static void intel_dp_print_rates(struct intel_dp *intel_dp)
>>> {
>>>-        struct drm_i915_private *i915 = dp_to_i915(intel_dp);
>>>-        char str[128]; /* FIXME: too big for stack? */
>>>+        struct intel_display *display = to_intel_display(intel_dp);
>>>+        DECLARE_SEQ_BUF(s, 128); /* FIXME: too big for stack? */
>>
>> I wonder if just using drm_dbg_printer() would make things simpler,
>> without requiring a buffer.
>
>Mmh, that's always line based, isn't it? It would result in each rate
>getting printed on its own line, which is too spammy.

Oh... I thought we could keep the "\n" to be emitted at the end. However,
now that you mentioned, I'm not sure if that really works and/or that it
is race-free.

Looking at results of

    git grep -W -e 'drm_printf(.*",' --and --not -e '\\n'

, I see that ivpu_bo_print_info(), drm_buddy_print(), bridges_show() and
drm_print_bits() are some examples of the existing cases that are
similar to what I was thinking.

--
Gustavo Sousa

>
>> Anyway, the patch looks good to me, so:
>>
>> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
>
>Thanks!
>
>>
>>> 
>>>         if (!drm_debug_enabled(DRM_UT_KMS))
>>>                 return;
>>> 
>>>-        snprintf_int_array(str, sizeof(str),
>>>-                           intel_dp->source_rates, intel_dp->num_source_rates);
>>>-        drm_dbg_kms(&i915->drm, "source rates: %s\n", str);
>>>+        seq_buf_print_array(&s, intel_dp->source_rates, intel_dp->num_source_rates);
>>>+        drm_dbg_kms(display->drm, "source rates: %s\n", seq_buf_str(&s));
>>> 
>>>-        snprintf_int_array(str, sizeof(str),
>>>-                           intel_dp->sink_rates, intel_dp->num_sink_rates);
>>>-        drm_dbg_kms(&i915->drm, "sink rates: %s\n", str);
>>>+        seq_buf_clear(&s);
>>>+        seq_buf_print_array(&s, intel_dp->sink_rates, intel_dp->num_sink_rates);
>>>+        drm_dbg_kms(display->drm, "sink rates: %s\n", seq_buf_str(&s));
>>> 
>>>-        snprintf_int_array(str, sizeof(str),
>>>-                           intel_dp->common_rates, intel_dp->num_common_rates);
>>>-        drm_dbg_kms(&i915->drm, "common rates: %s\n", str);
>>>+        seq_buf_clear(&s);
>>>+        seq_buf_print_array(&s, intel_dp->common_rates, intel_dp->num_common_rates);
>>>+        drm_dbg_kms(display->drm, "common rates: %s\n", seq_buf_str(&s));
>>> }
>>> 
>>> static int forced_link_rate(struct intel_dp *intel_dp)
>>>-- 
>>>2.39.5
>>>
>
>-- 
>Jani Nikula, Intel

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

* Re: ✗ i915.CI.BAT: failure for drm/i915/dp: use seq buf for printing rates
  2024-11-27 14:14 ` ✗ i915.CI.BAT: failure for " Patchwork
@ 2024-11-28 13:03   ` Jani Nikula
  2024-11-29 11:23     ` Illipilli, TejasreeX
  0 siblings, 1 reply; 11+ messages in thread
From: Jani Nikula @ 2024-11-28 13:03 UTC (permalink / raw)
  To: I915-ci-infra; +Cc: intel-gfx

On Wed, 27 Nov 2024, Patchwork <patchwork@emeril.freedesktop.org> wrote:
> == Series Details ==
>
> Series: drm/i915/dp: use seq buf for printing rates
> URL   : https://patchwork.freedesktop.org/series/141841/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_15753 -> Patchwork_141841v1
> ====================================================
>
> Summary
> -------
>
>   **FAILURE**
>
>   Serious unknown changes coming with Patchwork_141841v1 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_141841v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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/Patchwork_141841v1/index.html
>
> Participating hosts (45 -> 43)
> ------------------------------
>
>   Missing    (2): fi-snb-2520m bat-jsl-3 
>
> Possible new issues
> -------------------
>
>   Here are the unknown changes that may have been introduced in Patchwork_141841v1:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
>   * igt@i915_selftest@live:
>     - bat-mtlp-8:         [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-8/igt@i915_selftest@live.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-8/igt@i915_selftest@live.html

Unrelated, please re-report.

BR,
Jani.


>
>   
> Known issues
> ------------
>
>   Here are the changes found in Patchwork_141841v1 that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
>   * igt@i915_pm_rpm@module-reload:
>     - bat-adls-6:         [PASS][3] -> [FAIL][4] ([i915#12903])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-adls-6/igt@i915_pm_rpm@module-reload.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html
>
>   * igt@i915_selftest@live@workarounds:
>     - bat-arlh-3:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>
>   
> #### Possible fixes ####
>
>   * igt@dmabuf@all-tests:
>     - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-apl-1/igt@dmabuf@all-tests.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-apl-1/igt@dmabuf@all-tests.html
>
>   * igt@i915_pm_rpm@module-reload:
>     - bat-dg1-7:          [FAIL][9] ([i915#12903]) -> [PASS][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
>
>   * igt@i915_selftest@live:
>     - bat-mtlp-6:         [ABORT][11] -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6/igt@i915_selftest@live.html
>
>   * igt@i915_selftest@live@workarounds:
>     - bat-arls-5:         [ABORT][13] ([i915#12061]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arls-5/igt@i915_selftest@live@workarounds.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
>     - bat-mtlp-6:         [ABORT][15] ([i915#12061]) -> [PASS][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
>
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>   [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
>   [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
>   [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
>
>
> Build changes
> -------------
>
>   * Linux: CI_DRM_15753 -> Patchwork_141841v1
>
>   CI-20190529: 20190529
>   CI_DRM_15753: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   Patchwork_141841v1: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/index.html

-- 
Jani Nikula, Intel

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

* ✓ i915.CI.BAT: success for drm/i915/dp: use seq buf for printing rates
  2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
                   ` (2 preceding siblings ...)
  2024-11-27 15:34 ` Raag Jadav
@ 2024-11-29 10:53 ` Patchwork
  2024-11-29 14:03 ` ✗ i915.CI.Full: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-29 10:53 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/dp: use seq buf for printing rates
URL   : https://patchwork.freedesktop.org/series/141841/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_15753 -> Patchwork_141841v1
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (45 -> 43)
------------------------------

  Missing    (2): fi-snb-2520m bat-jsl-3 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - bat-adls-6:         [PASS][1] -> [FAIL][2] ([i915#12903])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-adls-6/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][3] -> [INCOMPLETE][4] ([i915#13133]) +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-8/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@dmabuf@all-tests:
    - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-apl-1/igt@dmabuf@all-tests.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-apl-1/igt@dmabuf@all-tests.html

  * igt@i915_pm_rpm@module-reload:
    - bat-dg1-7:          [FAIL][9] ([i915#12903]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-dg1-7/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [ABORT][11] ([i915#12061]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - bat-mtlp-6:         [ABORT][13] ([i915#12061]) -> [PASS][14] +1 other test pass
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
  [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
  [i915#13133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13133


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

  * Linux: CI_DRM_15753 -> Patchwork_141841v1

  CI-20190529: 20190529
  CI_DRM_15753: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_141841v1: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/index.html

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

* RE: ✗ i915.CI.BAT: failure for drm/i915/dp: use seq buf for printing rates
  2024-11-28 13:03   ` Jani Nikula
@ 2024-11-29 11:23     ` Illipilli, TejasreeX
  0 siblings, 0 replies; 11+ messages in thread
From: Illipilli, TejasreeX @ 2024-11-29 11:23 UTC (permalink / raw)
  To: i915-ci-infra@lists.freedesktop.org; +Cc: intel-gfx@lists.freedesktop.org

Hi,

https://patchwork.freedesktop.org/series/141841/ - Re-reported.

Thanks,
Tejasree


-----Original Message-----
From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Jani Nikula
Sent: Thursday, November 28, 2024 6:33 PM
To: I915-ci-infra@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: ✗ i915.CI.BAT: failure for drm/i915/dp: use seq buf for printing rates

On Wed, 27 Nov 2024, Patchwork <patchwork@emeril.freedesktop.org> wrote:
> == Series Details ==
>
> Series: drm/i915/dp: use seq buf for printing rates
> URL   : https://patchwork.freedesktop.org/series/141841/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_15753 -> Patchwork_141841v1 
> ====================================================
>
> Summary
> -------
>
>   **FAILURE**
>
>   Serious unknown changes coming with Patchwork_141841v1 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in Patchwork_141841v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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/Patchwork_141841v1/index.html
>
> Participating hosts (45 -> 43)
> ------------------------------
>
>   Missing    (2): fi-snb-2520m bat-jsl-3 
>
> Possible new issues
> -------------------
>
>   Here are the unknown changes that may have been introduced in Patchwork_141841v1:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
>   * igt@i915_selftest@live:
>     - bat-mtlp-8:         [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-8/igt@i915_selftest@live.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-8
> /igt@i915_selftest@live.html

Unrelated, please re-report.

BR,
Jani.


>
>   
> Known issues
> ------------
>
>   Here are the changes found in Patchwork_141841v1 that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
>   * igt@i915_pm_rpm@module-reload:
>     - bat-adls-6:         [PASS][3] -> [FAIL][4] ([i915#12903])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-adls-6/igt@i915_pm_rpm@module-reload.html
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-adls-6
> /igt@i915_pm_rpm@module-reload.html
>
>   * igt@i915_selftest@live@workarounds:
>     - bat-arlh-3:         [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arlh-3/igt@i915_selftest@live@workarounds.html
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arlh-3
> /igt@i915_selftest@live@workarounds.html
>
>   
> #### Possible fixes ####
>
>   * igt@dmabuf@all-tests:
>     - bat-apl-1:          [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-apl-1/igt@dmabuf@all-tests.html
>    [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-apl-1/
> igt@dmabuf@all-tests.html
>
>   * igt@i915_pm_rpm@module-reload:
>     - bat-dg1-7:          [FAIL][9] ([i915#12903]) -> [PASS][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-dg1-7/
> igt@i915_pm_rpm@module-reload.html
>
>   * igt@i915_selftest@live:
>     - bat-mtlp-6:         [ABORT][11] -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live.html
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6
> /igt@i915_selftest@live.html
>
>   * igt@i915_selftest@live@workarounds:
>     - bat-arls-5:         [ABORT][13] ([i915#12061]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-arls-5/igt@i915_selftest@live@workarounds.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
>     - bat-mtlp-6:         [ABORT][15] ([i915#12061]) -> [PASS][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/bat-mtlp-6
> /igt@i915_selftest@live@workarounds.html
>
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>   [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
>   [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
>   [i915#12904]: 
> https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
>
>
> Build changes
> -------------
>
>   * Linux: CI_DRM_15753 -> Patchwork_141841v1
>
>   CI-20190529: 20190529
>   CI_DRM_15753: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGT_8127: 433ecaf95ccaed2b5adcb40d27fa5b7a08a2e03d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   Patchwork_141841v1: 4e5e3c93cf642f47374ed6e003f0a55b8af0f25b @ 
> git://anongit.freedesktop.org/gfx-ci/linux
>
> == Logs ==
>
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/index.html

--
Jani Nikula, Intel

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

* ✗ i915.CI.Full: failure for drm/i915/dp: use seq buf for printing rates
  2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
                   ` (3 preceding siblings ...)
  2024-11-29 10:53 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2024-11-29 14:03 ` Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-29 14:03 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 100270 bytes --]

== Series Details ==

Series: drm/i915/dp: use seq buf for printing rates
URL   : https://patchwork.freedesktop.org/series/141841/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15753_full -> Patchwork_141841v1_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_141841v1_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_141841v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (12 -> 11)
------------------------------

  Additional (1): pig-kbl-iris 
  Missing    (2): shard-snb-0 shard-dg2-set2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_lmem_swapping@verify:
    - shard-dg2:          NOTRUN -> [ABORT][1] +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@gem_lmem_swapping@verify.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk:          NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk2/igt@gem_workarounds@suspend-resume-context.html

  * igt@kms_pm_rpm@i2c:
    - shard-rkl:          NOTRUN -> [SKIP][3] +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_pm_rpm@i2c.html

  

### Piglit changes ###

#### Suppressed ####

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

  * igt@i915_selftest@live:
    - pig-kbl-iris:       NOTRUN -> [{DMESG-FAIL}][4] +1 other test {dmesg-fail}
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/pig-kbl-iris/igt@i915_selftest@live.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-keep-cache:
    - shard-dg2:          NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#8411]) +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html

  * igt@api_intel_bb@crc32:
    - shard-rkl:          NOTRUN -> [SKIP][7] ([i915#6230])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@api_intel_bb@crc32.html
    - shard-tglu:         NOTRUN -> [SKIP][8] ([i915#6230])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@api_intel_bb@crc32.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-mtlp:         NOTRUN -> [SKIP][9] ([i915#8411]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@debugfs_test@basic-hwmon:
    - shard-mtlp:         NOTRUN -> [SKIP][10] ([i915#9318])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html

  * igt@device_reset@cold-reset-bound:
    - shard-mtlp:         NOTRUN -> [SKIP][11] ([i915#11078])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@device_reset@cold-reset-bound.html
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#11078])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@device_reset@cold-reset-bound.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> [SKIP][13] ([i915#11078])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_fdinfo@busy-hang@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][14] ([i915#8414]) +63 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@drm_fdinfo@busy-hang@rcs0.html

  * igt@drm_fdinfo@busy@vcs1:
    - shard-dg1:          NOTRUN -> [SKIP][15] ([i915#8414]) +18 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html

  * igt@drm_fdinfo@most-busy-check-all@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8414]) +44 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html

  * igt@gem_basic@multigpu-create-close:
    - shard-mtlp:         NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_basic@multigpu-create-close.html
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#7697])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_basic@multigpu-create-close.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#3936])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_busy@semaphore.html
    - shard-dg1:          NOTRUN -> [SKIP][20] ([i915#3936])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gem_busy@semaphore.html
    - shard-mtlp:         NOTRUN -> [SKIP][21] ([i915#3936])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_busy@semaphore.html

  * igt@gem_caching@reads:
    - shard-mtlp:         NOTRUN -> [SKIP][22] ([i915#4873]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@gem_caching@reads.html

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html
    - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglu:         NOTRUN -> [SKIP][25] ([i915#3555] / [i915#9323])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html
    - shard-mtlp:         NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9323]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][27] ([i915#7297])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@gem_ccs@suspend-resume.html
    - shard-dg1:          NOTRUN -> [SKIP][28] ([i915#9323])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_ccs@suspend-resume.html
    - shard-tglu:         NOTRUN -> [SKIP][29] ([i915#9323]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@gem_ccs@suspend-resume.html
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#9323]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][31] ([i915#12392] / [i915#7297])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][32] ([i915#7697]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_compute@compute-square:
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#9310])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@gem_compute@compute-square.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#6335]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][35] ([i915#1099]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-snb4/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_persistence@hang:
    - shard-mtlp:         NOTRUN -> [SKIP][36] ([i915#8555]) +5 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@gem_ctx_persistence@hang.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#8555]) +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg1:          NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@hostile:
    - shard-dg2:          NOTRUN -> [FAIL][39] ([i915#11980] / [i915#12580])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@gem_ctx_persistence@hostile.html
    - shard-mtlp:         NOTRUN -> [FAIL][40] ([i915#11980] / [i915#12580])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@gem_ctx_persistence@hostile.html

  * igt@gem_ctx_persistence@legacy-engines-mixed@blt:
    - shard-rkl:          [PASS][41] -> [DMESG-WARN][42] ([i915#12964]) +2 other tests dmesg-warn
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-rkl-2/igt@gem_ctx_persistence@legacy-engines-mixed@blt.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@gem_ctx_persistence@legacy-engines-mixed@blt.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#5882]) +7 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html

  * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
    - shard-mtlp:         NOTRUN -> [SKIP][44] ([i915#5882]) +6 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([i915#280])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@gem_ctx_sseu@engines.html
    - shard-tglu-1:       NOTRUN -> [SKIP][46] ([i915#280])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_ctx_sseu@engines.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#280]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-dg1:          NOTRUN -> [SKIP][48] ([i915#280]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html
    - shard-mtlp:         NOTRUN -> [SKIP][49] ([i915#280]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-mtlp:         NOTRUN -> [SKIP][50] ([i915#4771]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_balancer@bonded-pair:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#4771])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html

  * igt@gem_exec_balancer@bonded-sync:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#4771])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          NOTRUN -> [SKIP][53] ([i915#4812]) +3 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4036])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4036])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
    - shard-mtlp:         NOTRUN -> [SKIP][56] ([i915#4036])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#4525]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-tglu:         NOTRUN -> [FAIL][58] ([i915#6117])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_big@single:
    - shard-tglu-1:       NOTRUN -> [ABORT][59] ([i915#11713])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_exec_big@single.html

  * igt@gem_exec_capture@capture:
    - shard-mtlp:         NOTRUN -> [FAIL][60] ([i915#11965] / [i915#12558]) +1 other test fail
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_exec_capture@capture.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-glk:          NOTRUN -> [SKIP][61] ([i915#6334]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-mtlp:         NOTRUN -> [SKIP][62] ([i915#6334]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_fence@concurrent:
    - shard-mtlp:         NOTRUN -> [SKIP][63] ([i915#4812]) +8 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_exec_fence@concurrent.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#3711])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) +5 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3539])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
    - shard-dg1:          NOTRUN -> [SKIP][67] ([i915#3539])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_flush@basic-wb-pro-default:
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#3539] / [i915#4852]) +2 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_exec_flush@basic-wb-pro-default.html

  * igt@gem_exec_params@rsvd2-dirt:
    - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#5107])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#5107])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html

  * igt@gem_exec_reloc@basic-gtt-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#3281]) +21 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-cpu.html

  * igt@gem_exec_reloc@basic-gtt-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#3281]) +52 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-write-read-active:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#3281]) +33 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
    - shard-rkl:          NOTRUN -> [SKIP][74] ([i915#3281]) +9 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html

  * igt@gem_exec_schedule@deep@rcs0:
    - shard-mtlp:         NOTRUN -> [SKIP][75] ([i915#4537])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#4537] / [i915#4812]) +4 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@preempt-queue-contexts:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#4537] / [i915#4812])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#4812]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#4860]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4860]) +3 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_fenced_exec_thrash@too-many-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][81] ([i915#4860]) +7 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@gem_fenced_exec_thrash@too-many-fences.html

  * igt@gem_huc_copy@huc-copy:
    - shard-glk:          NOTRUN -> [SKIP][82] ([i915#2190])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk9/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          NOTRUN -> [SKIP][83] ([i915#4613] / [i915#7582])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
    - shard-tglu-1:       NOTRUN -> [SKIP][84] ([i915#4613] / [i915#7582])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][85] ([i915#4613]) +20 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> [SKIP][86] ([i915#4613]) +5 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-rkl:          NOTRUN -> [SKIP][87] ([i915#4613]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-tglu:         NOTRUN -> [SKIP][88] ([i915#4613]) +6 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg1:          [PASS][89] -> [TIMEOUT][90] ([i915#5493]) +1 other test timeout
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_lmem_swapping@verify:
    - shard-tglu-1:       NOTRUN -> [SKIP][91] ([i915#4613])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_lmem_swapping@verify.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][92] ([i915#12193]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][93] ([i915#4565]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html

  * igt@gem_media_fill@media-fill:
    - shard-mtlp:         NOTRUN -> [SKIP][94] ([i915#8289])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@gem_media_fill@media-fill.html

  * igt@gem_media_vme:
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#284])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@gem_media_vme.html

  * igt@gem_mmap@bad-size:
    - shard-mtlp:         NOTRUN -> [SKIP][96] ([i915#4083]) +26 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_mmap@bad-size.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#4077]) +31 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_mmap_gtt@cpuset-medium-copy:
    - shard-mtlp:         NOTRUN -> [SKIP][98] ([i915#4077]) +60 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html

  * igt@gem_mmap_gtt@fault-concurrent:
    - shard-dg1:          NOTRUN -> [SKIP][99] ([i915#4077]) +16 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_mmap_gtt@fault-concurrent.html

  * igt@gem_mmap_wc@copy:
    - shard-dg2:          NOTRUN -> [SKIP][100] ([i915#4083]) +16 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_mmap_wc@copy.html

  * igt@gem_mmap_wc@read:
    - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#4083]) +10 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_mmap_wc@read.html

  * igt@gem_pread@snoop:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#3282]) +14 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_pread@snoop.html
    - shard-dg1:          NOTRUN -> [SKIP][103] ([i915#3282]) +14 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gem_pread@snoop.html

  * igt@gem_pxp@create-regular-context-2:
    - shard-rkl:          NOTRUN -> [TIMEOUT][104] ([i915#12917] / [i915#12964]) +4 other tests timeout
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@gem_pxp@create-regular-context-2.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#4270]) +8 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_pxp@fail-invalid-protected-context:
    - shard-rkl:          NOTRUN -> [TIMEOUT][106] ([i915#12964])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          NOTRUN -> [FAIL][107] ([i915#13109])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
    - shard-tglu-1:       NOTRUN -> [FAIL][108] ([i915#12940])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
    - shard-mtlp:         NOTRUN -> [SKIP][109] ([i915#13033]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglu:         NOTRUN -> [SKIP][110] ([i915#4270])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-dg1:          NOTRUN -> [SKIP][111] ([i915#4270]) +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][112] ([i915#3282]) +27 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][113] ([i915#8428]) +33 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html

  * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#5190] / [i915#8428]) +17 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#4079]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][116] ([i915#4079]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_softpin@evict-snoop:
    - shard-mtlp:         NOTRUN -> [SKIP][117] ([i915#4885]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@gem_softpin@evict-snoop.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][118] ([i915#4885])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          NOTRUN -> [SKIP][119] ([i915#3282]) +3 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_tiled_pread_basic:
    - shard-mtlp:         NOTRUN -> [SKIP][120] ([i915#4079]) +7 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@gem_tiled_pread_basic.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#4879])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@gem_unfence_active_buffers.html
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#4879])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@access-control:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#3297]) +16 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#3297]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#3297] / [i915#3323])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-tglu-1:       NOTRUN -> [SKIP][126] ([i915#3297] / [i915#3323])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-dg1:          NOTRUN -> [SKIP][127] ([i915#3282] / [i915#3297])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
    - shard-mtlp:         NOTRUN -> [SKIP][128] ([i915#3282] / [i915#3297])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#3297]) +4 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#3297] / [i915#4880]) +2 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#3297] / [i915#4880]) +2 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([i915#3297]) +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#3281] / [i915#3297])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@sd-probe:
    - shard-dg1:          NOTRUN -> [SKIP][134] ([i915#3297] / [i915#4958])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#3297]) +2 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          NOTRUN -> [DMESG-FAIL][136] ([i915#12964]) +1 other test dmesg-fail
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@batch-zero-length:
    - shard-tglu:         NOTRUN -> [SKIP][137] ([i915#2527] / [i915#2856]) +4 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#2527]) +7 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@gen9_exec_parse@bb-start-far:
    - shard-rkl:          NOTRUN -> [SKIP][139] ([i915#2527]) +3 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@gen9_exec_parse@bb-start-far.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([i915#2856]) +10 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-tglu-1:       NOTRUN -> [SKIP][141] ([i915#2527] / [i915#2856]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([i915#2856]) +19 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_fb_tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][143] ([i915#4881]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@i915_fb_tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][144] ([i915#4881])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@i915_fb_tiling.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          NOTRUN -> [ABORT][145] ([i915#9820])
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
    - shard-rkl:          [PASS][146] -> [ABORT][147] ([i915#9820])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
    - shard-dg1:          [PASS][148] -> [ABORT][149] ([i915#9820])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         NOTRUN -> [ABORT][150] ([i915#10131] / [i915#10887] / [i915#9820])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          NOTRUN -> [SKIP][151] ([i915#6412])
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@i915_module_load@resize-bar.html
    - shard-tglu-1:       NOTRUN -> [SKIP][152] ([i915#6412])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@i915_module_load@resize-bar.html
    - shard-dg1:          NOTRUN -> [SKIP][153] ([i915#7178])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@i915_module_load@resize-bar.html
    - shard-mtlp:         NOTRUN -> [SKIP][154] ([i915#6412])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#8399])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][156] ([i915#8399]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-3/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-rkl:          NOTRUN -> [SKIP][157] ([i915#6590]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-tglu-1:       NOTRUN -> [SKIP][158] ([i915#6590]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-dg1:          NOTRUN -> [SKIP][159] ([i915#6590]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][160] ([i915#6590]) +2 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@i915_pm_freq_mult@media-freq@gt1.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglu:         NOTRUN -> [WARN][161] ([i915#2681]) +6 other tests warn
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
    - shard-dg1:          [PASS][162] -> [FAIL][163] ([i915#12739] / [i915#3591])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html

  * igt@i915_pm_rps@basic-api:
    - shard-mtlp:         NOTRUN -> [SKIP][164] ([i915#11681] / [i915#6621]) +2 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#11681] / [i915#6621]) +1 other test skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_rps@thresholds:
    - shard-dg1:          NOTRUN -> [SKIP][166] ([i915#11681])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@i915_pm_rps@thresholds.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][167] ([i915#11681])
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html
    - shard-mtlp:         NOTRUN -> [SKIP][168] ([i915#11681]) +2 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_pm_rps@waitboost:
    - shard-mtlp:         NOTRUN -> [FAIL][169] ([i915#8346]) +1 other test fail
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@i915_pm_rps@waitboost.html

  * igt@i915_pm_sseu@full-enable:
    - shard-rkl:          NOTRUN -> [SKIP][170] ([i915#4387])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
    - shard-dg1:          NOTRUN -> [SKIP][171] ([i915#4387])
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
    - shard-mtlp:         NOTRUN -> [SKIP][172] ([i915#8437])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html

  * igt@i915_power@sanity:
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#7984])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@i915_power@sanity.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-mtlp:         NOTRUN -> [SKIP][174] ([i915#6188])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_selftest@mock:
    - shard-mtlp:         NOTRUN -> [DMESG-WARN][175] ([i915#9311]) +1 other test dmesg-warn
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@i915_selftest@mock.html

  * igt@i915_selftest@mock@memory_region:
    - shard-dg1:          NOTRUN -> [DMESG-WARN][176] ([i915#9311]) +1 other test dmesg-warn
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@i915_selftest@mock@memory_region.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][177] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@i915_suspend@basic-s2idle-without-i915.html
    - shard-tglu:         NOTRUN -> [ABORT][178] ([i915#13010])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][179] ([i915#4817]) +1 other test incomplete
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk4/igt@i915_suspend@forcewake.html

  * igt@intel_hwmon@hwmon-read:
    - shard-mtlp:         NOTRUN -> [SKIP][180] ([i915#7707]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][181] ([i915#4212]) +7 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][182] ([i915#5190])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][183] ([i915#4212]) +6 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][184] ([i915#4215] / [i915#5190])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][185] ([i915#4215])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_addfb_basic@clobberred-modifier:
    - shard-dg1:          NOTRUN -> [SKIP][186] ([i915#4212]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-mtlp:         NOTRUN -> [SKIP][187] ([i915#12454] / [i915#12712])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_addfb_basic@legacy-format:
    - shard-dg1:          NOTRUN -> [DMESG-WARN][188] ([i915#4423])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_addfb_basic@legacy-format.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
    - shard-mtlp:         NOTRUN -> [SKIP][189] ([i915#8709]) +11 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
    - shard-rkl:          NOTRUN -> [SKIP][190] ([i915#8709]) +3 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#8709]) +7 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][192] ([i915#8709]) +11 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][193] ([i915#6228])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@test-cursor:
    - shard-mtlp:         NOTRUN -> [SKIP][194] ([i915#10333])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglu:         NOTRUN -> [SKIP][195] ([i915#9531])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-mtlp:         NOTRUN -> [SKIP][196] ([i915#1769] / [i915#3555]) +1 other test skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [FAIL][197] ([i915#5956]) +1 other test fail
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][198] ([i915#5286]) +6 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
    - shard-tglu-1:       NOTRUN -> [SKIP][199] ([i915#5286]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-dg1:          NOTRUN -> [SKIP][200] ([i915#4538] / [i915#5286]) +8 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][201] ([i915#5286]) +12 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#3638]) +3 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-mtlp:         NOTRUN -> [SKIP][203] +127 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#3638]) +8 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][205] ([i915#4538] / [i915#5190]) +30 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2:          NOTRUN -> [SKIP][206] ([i915#5190]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-mtlp:         NOTRUN -> [SKIP][207] ([i915#6187]) +4 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg1:          NOTRUN -> [SKIP][208] ([i915#4538]) +10 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#12313]) +8 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#12313]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][211] ([i915#12313]) +3 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][212] ([i915#12313]) +2 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-tglu:         NOTRUN -> [SKIP][213] ([i915#6095]) +129 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][214] ([i915#6095]) +19 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][216] ([i915#12805])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][217] ([i915#12805])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][218] ([i915#12805]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][219] ([i915#6095]) +26 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][220] ([i915#12313])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][221] ([i915#10307] / [i915#6095]) +227 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][222] ([i915#6095]) +182 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][223] ([i915#6095]) +91 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][224] ([i915#6095]) +314 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][225] ([i915#12313]) +5 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#3742]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][227] ([i915#7213] / [i915#9010]) +5 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#11616] / [i915#7213]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#3742])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][230] ([i915#4087]) +4 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html

  * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][231] ([i915#4087]) +4 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-dg2:          NOTRUN -> [SKIP][232] +38 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][233] ([i915#7828]) +28 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-tglu:         NOTRUN -> [SKIP][234] ([i915#7828]) +12 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#7828]) +9 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#7828]) +4 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
    - shard-dg1:          NOTRUN -> [SKIP][237] ([i915#7828]) +18 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-mtlp:         NOTRUN -> [SKIP][238] ([i915#7828]) +48 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_color@deep-color:
    - shard-tglu-1:       NOTRUN -> [SKIP][239] ([i915#3555] / [i915#9979])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_color@deep-color.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][240] ([i915#3116] / [i915#3299]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][241] ([i915#3299]) +3 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([i915#3299]) +2 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-dg1:          NOTRUN -> [SKIP][243] ([i915#7116] / [i915#9424]) +2 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][244] ([i915#6944] / [i915#9424]) +1 other test skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][245] ([i915#6944] / [i915#9424]) +5 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#9424])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
    - shard-tglu-1:       NOTRUN -> [SKIP][247] ([i915#6944] / [i915#9424])
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg2:          NOTRUN -> [SKIP][248] ([i915#9424]) +2 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-8/igt@kms_content_protection@mei-interface.html
    - shard-dg1:          NOTRUN -> [SKIP][249] ([i915#9424]) +2 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_content_protection@mei-interface.html
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#8063] / [i915#9433])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#7118])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_content_protection@srm.html
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#7118])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_content_protection@srm.html
    - shard-tglu:         NOTRUN -> [SKIP][253] ([i915#6944] / [i915#7116] / [i915#7118])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@kms_content_protection@srm.html
    - shard-mtlp:         NOTRUN -> [SKIP][254] ([i915#6944])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-tglu:         NOTRUN -> [SKIP][255] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_content_protection@type1.html
    - shard-mtlp:         NOTRUN -> [SKIP][256] ([i915#3555] / [i915#6944] / [i915#9424])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#7118] / [i915#9424])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-64x21:
    - shard-mtlp:         NOTRUN -> [SKIP][258] ([i915#8814]) +13 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-64x21.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8814]) +13 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-mtlp:         NOTRUN -> [SKIP][260] ([i915#13049]) +8 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-tglu-1:       NOTRUN -> [SKIP][261] ([i915#3555])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][262] ([i915#13049]) +2 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][263] ([i915#13049]) +2 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#3555]) +14 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
    - shard-rkl:          NOTRUN -> [SKIP][265] ([i915#3555]) +7 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#13049])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-dg1:          NOTRUN -> [SKIP][267] ([i915#13049]) +1 other test skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][268] ([i915#7882])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglu:         NOTRUN -> [SKIP][269] ([i915#4103]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][270] ([i915#4213]) +5 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][271] ([i915#4103] / [i915#4213]) +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][272] +21 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][273] ([i915#9809]) +27 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-snb:          [PASS][274] -> [FAIL][275] ([i915#2346]) +1 other test fail
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-dg2:          NOTRUN -> [SKIP][276] ([i915#9067])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
    - shard-rkl:          NOTRUN -> [SKIP][277] ([i915#9067])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
    - shard-tglu:         NOTRUN -> [SKIP][278] ([i915#9067])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
    - shard-mtlp:         NOTRUN -> [SKIP][279] ([i915#9067])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg1:          NOTRUN -> [SKIP][280] ([i915#4103] / [i915#4213])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-dg1:          NOTRUN -> [SKIP][281] ([i915#9723])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-mtlp:         NOTRUN -> [SKIP][282] ([i915#9833])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-dg2:          NOTRUN -> [SKIP][283] ([i915#9833]) +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-tglu:         NOTRUN -> [SKIP][284] ([i915#9723])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8827])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-mtlp:         NOTRUN -> [SKIP][286] ([i915#8588])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dp_aux_dev:
    - shard-dg1:          NOTRUN -> [SKIP][287] ([i915#1257])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@kms_dp_aux_dev.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-mtlp:         NOTRUN -> [SKIP][288] ([i915#12402])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_draw_crc@draw-method-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][289] ([i915#8812]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8812])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#8812])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html

  * igt@kms_dsc@dsc-basic:
    - shard-dg2:          NOTRUN -> [SKIP][292] ([i915#3555] / [i915#3840]) +3 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_dsc@dsc-basic.html
    - shard-mtlp:         NOTRUN -> [SKIP][293] ([i915#3555] / [i915#3840] / [i915#9159])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][294] ([i915#3840] / [i915#9688])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-rkl:          NOTRUN -> [SKIP][295] ([i915#3840])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-tglu:         NOTRUN -> [SKIP][296] ([i915#3840]) +1 other test skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html
    - shard-mtlp:         NOTRUN -> [SKIP][297] ([i915#3840] / [i915#9688])
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#3840])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][299] ([i915#3840])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][300] ([i915#3555] / [i915#3840])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-mtlp:         NOTRUN -> [SKIP][301] ([i915#3555] / [i915#3840]) +3 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#3555] / [i915#3840]) +1 other test skip
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
    - shard-tglu-1:       NOTRUN -> [SKIP][303] ([i915#3555] / [i915#3840])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][304] ([i915#3555] / [i915#3840])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-tglu:         NOTRUN -> [SKIP][305] ([i915#3840] / [i915#9053])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-mtlp:         NOTRUN -> [SKIP][306] ([i915#3555] / [i915#3840] / [i915#9053])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][307] ([i915#3955])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#3469])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][309] ([i915#3469])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-mtlp:         NOTRUN -> [SKIP][310] ([i915#4854])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-dg2:          NOTRUN -> [SKIP][311] ([i915#1839]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-mtlp:         NOTRUN -> [SKIP][312] ([i915#1839]) +2 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-tglu:         NOTRUN -> [SKIP][313] ([i915#1839])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-tglu:         NOTRUN -> [SKIP][314] ([i915#9337])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][315] ([i915#658])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@kms_feature_discovery@psr1.html
    - shard-dg2:          NOTRUN -> [SKIP][316] ([i915#658])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-3/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg1:          NOTRUN -> [SKIP][317] ([i915#658]) +1 other test skip
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][318] ([i915#3637]) +12 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-fences:
    - shard-dg2:          NOTRUN -> [SKIP][319] ([i915#8381]) +3 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences.html
    - shard-dg1:          NOTRUN -> [SKIP][320] ([i915#8381]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-mtlp:         NOTRUN -> [SKIP][321] ([i915#3637]) +38 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#9934]) +23 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
    - shard-rkl:          NOTRUN -> [SKIP][323] ([i915#9934]) +11 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip:
    - shard-dg1:          NOTRUN -> [SKIP][324] ([i915#9934]) +11 other tests skip
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][325] ([i915#3637]) +4 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a2:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][326] ([i915#12964]) +14 other tests dmesg-warn
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-5/igt@kms_flip@dpms-vs-vblank-race-interruptible@b-hdmi-a2.html

  * igt@kms_flip@flip-vs-fences:
    - shard-mtlp:         NOTRUN -> [SKIP][327] ([i915#8381]) +3 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html

  * igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a3:
    - shard-dg1:          NOTRUN -> [INCOMPLETE][328] ([i915#6113]) +1 other test incomplete
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a3.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][329] ([i915#4839])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][330] ([i915#12745])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip@plain-flip-fb-recreate@a-edp1:
    - shard-mtlp:         NOTRUN -> [FAIL][331] ([i915#11989]) +1 other test fail
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html

  * igt@kms_flip@plain-flip-fb-recreate@a-vga1:
    - shard-snb:          [PASS][332] -> [FAIL][333] ([i915#11989]) +2 other tests fail
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html

  * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
    - shard-tglu:         [PASS][334] -> [FAIL][335] ([i915#11989]) +4 other tests fail
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html

  * igt@kms_flip@plain-flip-ts-check:
    - shard-rkl:          NOTRUN -> [FAIL][336] ([i915#11989]) +1 other test fail
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_flip@plain-flip-ts-check.html

  * igt@kms_flip@plain-flip-ts-check@b-hdmi-a1:
    - shard-rkl:          NOTRUN -> [FAIL][337] ([i915#13071])
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][338] ([i915#2672] / [i915#3555]) +3 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][339] ([i915#2672] / [i915#3555]) +6 other tests skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][340] ([i915#2672] / [i915#3555] / [i915#5190]) +5 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][341] ([i915#2672] / [i915#3555]) +3 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][342] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][343] ([i915#2587] / [i915#2672]) +5 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][344] ([i915#2672]) +3 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
    - shard-tglu-1:       NOTRUN -> [SKIP][345] ([i915#2587] / [i915#2672]) +1 other test skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][346] ([i915#2672] / [i915#3555]) +6 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-dg1:          NOTRUN -> [SKIP][347] ([i915#2587] / [i915#2672]) +6 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8813])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][349] ([i915#8810]) +2 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][350] ([i915#2672] / [i915#8813]) +17 other tests skip
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8810] / [i915#8813]) +7 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][352] ([i915#3555] / [i915#8810]) +5 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][353] ([i915#2672] / [i915#3555]) +1 other test skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][354] ([i915#2672]) +10 other tests skip
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][355] ([i915#2672] / [i915#3555] / [i915#8813]) +33 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-mtlp:         NOTRUN -> [SKIP][356] ([i915#5274])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-dg2:          [PASS][357] -> [FAIL][358] ([i915#6880])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][359] ([i915#8708]) +52 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
    - shard-snb:          [PASS][360] -> [SKIP][361]
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15753/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][362] ([i915#1825]) +183 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][363] ([i915#5354]) +97 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][364] ([i915#1825]) +41 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][365] ([i915#10056])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][366] ([i915#5439])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-tglu-1:       NOTRUN -> [SKIP][367] ([i915#5439])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
    - shard-dg1:          NOTRUN -> [SKIP][368] ([i915#5439])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][369] ([i915#10055]) +1 other test skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
    - shard-dg2:          NOTRUN -> [SKIP][370] ([i915#10055])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-rkl:          NOTRUN -> [SKIP][371] ([i915#3023]) +26 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
    - shard-tglu-1:       NOTRUN -> [SKIP][372] +43 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][373] +92 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          NOTRUN -> [SKIP][374] ([i915#10433] / [i915#3458]) +3 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][375] ([i915#3458]) +34 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][376] ([i915#8708]) +54 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-dg2:          NOTRUN -> [SKIP][377] ([i915#3458]) +40 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][378] +271 other tests skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][379] +148 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][380] ([i915#8708]) +33 other tests skip
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglu-1:       NOTRUN -> [SKIP][381] ([i915#13012] / [i915#13030])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@bpc-switch:
    - shard-tglu:         NOTRUN -> [SKIP][382] ([i915#3555] / [i915#8228])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_hdr@bpc-switch.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-mtlp:         NOTRUN -> [SKIP][383] ([i915#12713])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg2:          NOTRUN -> [SKIP][384] ([i915#12713])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][385] ([i915#12713])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          NOTRUN -> [SKIP][386] ([i915#3555] / [i915#8228]) +2 other tests skip
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_hdr@static-toggle.html
    - shard-tglu-1:       NOTRUN -> [SKIP][387] ([i915#3555] / [i915#8228]) +1 other test skip
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_hdr@static-toggle.html
    - shard-dg1:          NOTRUN -> [SKIP][388] ([i915#3555] / [i915#8228]) +3 other tests skip
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-mtlp:         NOTRUN -> [SKIP][389] ([i915#3555] / [i915#8228]) +4 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][390] ([i915#3555] / [i915#8228]) +5 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-mtlp:         NOTRUN -> [SKIP][391] ([i915#3555] / [i915#6403] / [i915#8826])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][392] ([i915#9457]) +3 other tests skip
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-2/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg1:          NOTRUN -> [SKIP][393] ([i915#10656])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_joiner@basic-big-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][394] ([i915#10656])
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][395] ([i915#12388])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-1/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][396] ([i915#10656])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html
    - shard-tglu:         NOTRUN -> [SKIP][397] ([i915#12394])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][398] ([i915#12339]) +1 other test skip
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg2-7/igt@kms_joiner@basic-ultra-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][399] ([i915#12339]) +1 other test skip
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
    - shard-tglu-1:       NOTRUN -> [SKIP][400] ([i915#12339])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][401] ([i915#12339])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][402] ([i915#12388])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
    - shard-tglu-1:       NOTRUN -> [SKIP][403] ([i915#12388])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][404] ([i915#12388])
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-mtlp:         NOTRUN -> [SKIP][405] ([i915#10656]) +3 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-mtlp:         NOTRUN -> [SKIP][406] ([i915#12339]) +1 other test skip
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-mtlp:         NOTRUN -> [SKIP][407] ([i915#4816])
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-rkl:          NOTRUN -> [SKIP][408] ([i915#4070] / [i915#4816])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-tglu-1:       NOTRUN -> [SKIP][409] ([i915#1839])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg1:          NOTRUN -> [SKIP][410] ([i915#1839])
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-dg2:          NOTRUN -> [SKIP][411] ([i915#6301])
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/sha

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141841v1/index.html

[-- Attachment #2: Type: text/html, Size: 109418 bytes --]

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

end of thread, other threads:[~2024-11-29 14:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-27 13:18 [PATCH] drm/i915/dp: use seq buf for printing rates Jani Nikula
2024-11-27 14:14 ` ✗ i915.CI.BAT: failure for " Patchwork
2024-11-28 13:03   ` Jani Nikula
2024-11-29 11:23     ` Illipilli, TejasreeX
2024-11-27 15:17 ` [PATCH] " Gustavo Sousa
2024-11-27 17:24   ` Jani Nikula
2024-11-27 18:04     ` Gustavo Sousa
2024-11-27 15:34 ` Raag Jadav
2024-11-27 17:06   ` Jani Nikula
2024-11-29 10:53 ` ✓ i915.CI.BAT: success for " Patchwork
2024-11-29 14:03 ` ✗ i915.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox