Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-15 14:18 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
@ 2024-10-15 14:18 ` Pravalika Gurram
  2024-10-15 15:49   ` Zbigniew Kempczyński
  0 siblings, 1 reply; 17+ messages in thread
From: Pravalika Gurram @ 2024-10-15 14:18 UTC (permalink / raw)
  To: igt-dev, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska
  Cc: Pravalika Gurram

Added "xe_find_engine_by_class" helper function
to query with the required engine class
and get the engine info.

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
---
 lib/xe/xe_query.c | 22 ++++++++++++++++++++++
 lib/xe/xe_query.h |  1 +
 2 files changed, 23 insertions(+)

diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 8694fa3f9..ddb9d4065 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -731,6 +731,28 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
 	return false;
 }
 
+/**
+ * xe_find_engine_by_class
+ * @fd: xe device fd
+ * @engine_class: engine class
+ *
+ * Returns engine info of xe device @fd and @engine_class otherwise NULL.
+ */
+struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
+{
+	struct xe_device *xe_dev;
+
+	xe_dev = find_in_cache(fd);
+	igt_assert(xe_dev);
+
+	igt_assert(engine_class >= 0 && engine_class < xe_dev->engines->num_engines);
+	for (int i = 0; i < xe_dev->engines->num_engines; i++)
+		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
+			return &xe_dev->engines->engines[i];
+
+	return NULL;
+
+}
 /**
  * xe_has_media_gt:
  * @fd: xe device fd
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index fd1155f7f..cabb8078c 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
 int xe_supports_faults(int fd);
 const char *xe_engine_class_string(uint32_t engine_class);
 bool xe_has_engine_class(int fd, uint16_t engine_class);
+struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
 bool xe_has_media_gt(int fd);
 bool xe_is_media_gt(int fd, int gt);
 uint16_t xe_gt_get_tile_id(int fd, int gt);
-- 
2.34.1


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

* Re: [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-15 14:18 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
@ 2024-10-15 15:49   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-15 15:49 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev, sai.gowtham.ch, katarzyna.piecielska

On Tue, Oct 15, 2024 at 07:48:25PM +0530, Pravalika Gurram wrote:
> Added "xe_find_engine_by_class" helper function
> to query with the required engine class
> and get the engine info.
> 
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> ---
>  lib/xe/xe_query.c | 22 ++++++++++++++++++++++
>  lib/xe/xe_query.h |  1 +
>  2 files changed, 23 insertions(+)
> 
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 8694fa3f9..ddb9d4065 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -731,6 +731,28 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
>  	return false;
>  }
>  
> +/**
> + * xe_find_engine_by_class
> + * @fd: xe device fd
> + * @engine_class: engine class
> + *
> + * Returns engine info of xe device @fd and @engine_class otherwise NULL.
> + */
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
> +{
> +	struct xe_device *xe_dev;
> +
> +	xe_dev = find_in_cache(fd);
> +	igt_assert(xe_dev);
> +
> +	igt_assert(engine_class >= 0 && engine_class < xe_dev->engines->num_engines);

This assert isn't true. You're mixing engine_class and index.

--
Zbigniew

> +	for (int i = 0; i < xe_dev->engines->num_engines; i++)
> +		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
> +			return &xe_dev->engines->engines[i];
> +
> +	return NULL;
> +
> +}
>  /**
>   * xe_has_media_gt:
>   * @fd: xe device fd
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index fd1155f7f..cabb8078c 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
>  int xe_supports_faults(int fd);
>  const char *xe_engine_class_string(uint32_t engine_class);
>  bool xe_has_engine_class(int fd, uint16_t engine_class);
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
>  bool xe_has_media_gt(int fd);
>  bool xe_is_media_gt(int fd, int gt);
>  uint16_t xe_gt_get_tile_id(int fd, int gt);
> -- 
> 2.34.1
> 

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

* [PATCH i-g-t 0/2] xe_find_engine_by_class helper
@ 2024-10-16 10:19 Pravalika Gurram
  2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
                   ` (5 more replies)
  0 siblings, 6 replies; 17+ messages in thread
From: Pravalika Gurram @ 2024-10-16 10:19 UTC (permalink / raw)
  To: igt-dev, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska
  Cc: Pravalika Gurram

Added "xe_find_engine_by_class" helper function to query with the required
engine class and get the engine info.

Use 'xe_find_engine_by_class' helper to get the engine info with the
required engine class.  Stop assuming engine id is equal to 1

Pravalika Gurram (2):
  lib/xe/xe_query: xe_find_engine_by_class helper
  tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class

 lib/xe/xe_query.c                  | 20 ++++++++++++++++++++
 lib/xe/xe_query.h                  |  1 +
 tests/intel/xe_exec_compute_mode.c |  5 ++++-
 3 files changed, 25 insertions(+), 1 deletion(-)

-- 
2.34.1


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

* [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
@ 2024-10-16 10:19 ` Pravalika Gurram
  2024-10-16 10:36   ` Zbigniew Kempczyński
  2024-10-21 12:59   ` Kamil Konieczny
  2024-10-16 10:19 ` [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class Pravalika Gurram
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 17+ messages in thread
From: Pravalika Gurram @ 2024-10-16 10:19 UTC (permalink / raw)
  To: igt-dev, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska
  Cc: Pravalika Gurram

Added "xe_find_engine_by_class" helper function to query with the required
engine class and get the engine info.

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
---
 lib/xe/xe_query.c | 20 ++++++++++++++++++++
 lib/xe/xe_query.h |  1 +
 2 files changed, 21 insertions(+)

diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 8694fa3f9..0c9cff066 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -731,6 +731,26 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
 	return false;
 }
 
+/**
+ * xe_find_engine_by_class
+ * @fd: xe device fd
+ * @engine_class: engine class
+ *
+ * Returns engine info of xe device @fd and @engine_class otherwise NULL.
+ */
+struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
+{
+	struct xe_device *xe_dev;
+
+	xe_dev = find_in_cache(fd);
+	igt_assert(xe_dev);
+
+	for (int i = 0; i < xe_dev->engines->num_engines; i++)
+		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
+			return &xe_dev->engines->engines[i];
+
+	return NULL;
+}
 /**
  * xe_has_media_gt:
  * @fd: xe device fd
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index fd1155f7f..cabb8078c 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
 int xe_supports_faults(int fd);
 const char *xe_engine_class_string(uint32_t engine_class);
 bool xe_has_engine_class(int fd, uint16_t engine_class);
+struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
 bool xe_has_media_gt(int fd);
 bool xe_is_media_gt(int fd, int gt);
 uint16_t xe_gt_get_tile_id(int fd, int gt);
-- 
2.34.1


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

* [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
  2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
@ 2024-10-16 10:19 ` Pravalika Gurram
  2024-10-16 10:37   ` Zbigniew Kempczyński
  2024-10-21 15:40   ` Kamil Konieczny
  2024-10-16 10:39 ` ✗ GitLab.Pipeline: warning for xe_find_engine_by_class helper (rev2) Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 17+ messages in thread
From: Pravalika Gurram @ 2024-10-16 10:19 UTC (permalink / raw)
  To: igt-dev, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska
  Cc: Pravalika Gurram

Use 'xe_find_engine_by_class' helper to get the engine info with the
required engine class.  Stop assuming engine id is equal to 1

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
---
 tests/intel/xe_exec_compute_mode.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
index 82e607848..b238503ea 100644
--- a/tests/intel/xe_exec_compute_mode.c
+++ b/tests/intel/xe_exec_compute_mode.c
@@ -461,7 +461,10 @@ static void lr_mode_workload(int fd)
 	vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
 	ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
 	bo_size = xe_bb_size(fd, sizeof(*spin));
-	engine = xe_engine(fd, 1);
+
+	engine = xe_find_engine_by_class(fd, DRM_XE_ENGINE_CLASS_COPY);
+	igt_assert(engine);
+
 	bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, engine->instance.gt_id), 0);
 	spin = xe_bo_map(fd, bo, bo_size);
 
-- 
2.34.1


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

* Re: [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
@ 2024-10-16 10:36   ` Zbigniew Kempczyński
  2024-10-21 12:59   ` Kamil Konieczny
  1 sibling, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-16 10:36 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev, sai.gowtham.ch, katarzyna.piecielska

On Wed, Oct 16, 2024 at 03:49:32PM +0530, Pravalika Gurram wrote:
> Added "xe_find_engine_by_class" helper function to query with the required
> engine class and get the engine info.
> 
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> ---
>  lib/xe/xe_query.c | 20 ++++++++++++++++++++
>  lib/xe/xe_query.h |  1 +
>  2 files changed, 21 insertions(+)
> 
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 8694fa3f9..0c9cff066 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -731,6 +731,26 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
>  	return false;
>  }
>  
> +/**
> + * xe_find_engine_by_class
> + * @fd: xe device fd
> + * @engine_class: engine class
> + *
> + * Returns engine info of xe device @fd and @engine_class otherwise NULL.
> + */
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
> +{
> +	struct xe_device *xe_dev;
> +
> +	xe_dev = find_in_cache(fd);
> +	igt_assert(xe_dev);
> +
> +	for (int i = 0; i < xe_dev->engines->num_engines; i++)
> +		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
> +			return &xe_dev->engines->engines[i];
> +
> +	return NULL;
> +}
>  /**
>   * xe_has_media_gt:
>   * @fd: xe device fd
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index fd1155f7f..cabb8078c 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
>  int xe_supports_faults(int fd);
>  const char *xe_engine_class_string(uint32_t engine_class);
>  bool xe_has_engine_class(int fd, uint16_t engine_class);
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
>  bool xe_has_media_gt(int fd);
>  bool xe_is_media_gt(int fd, int gt);
>  uint16_t xe_gt_get_tile_id(int fd, int gt);
> -- 
> 2.34.1
> 

LGTM:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

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

* Re: [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class
  2024-10-16 10:19 ` [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class Pravalika Gurram
@ 2024-10-16 10:37   ` Zbigniew Kempczyński
  2024-10-21 15:40   ` Kamil Konieczny
  1 sibling, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-16 10:37 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev, sai.gowtham.ch, katarzyna.piecielska

On Wed, Oct 16, 2024 at 03:49:33PM +0530, Pravalika Gurram wrote:
> Use 'xe_find_engine_by_class' helper to get the engine info with the
> required engine class.  Stop assuming engine id is equal to 1
> 
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> ---
>  tests/intel/xe_exec_compute_mode.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
> index 82e607848..b238503ea 100644
> --- a/tests/intel/xe_exec_compute_mode.c
> +++ b/tests/intel/xe_exec_compute_mode.c
> @@ -461,7 +461,10 @@ static void lr_mode_workload(int fd)
>  	vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
>  	ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
>  	bo_size = xe_bb_size(fd, sizeof(*spin));
> -	engine = xe_engine(fd, 1);
> +

Unnecessary blank line. With this nit fixed:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

Don't send next revision, just remind me when CI results will be available.
I'll remove it before pushing.

--
Zbigniew

> +	engine = xe_find_engine_by_class(fd, DRM_XE_ENGINE_CLASS_COPY);
> +	igt_assert(engine);
> +
>  	bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, engine->instance.gt_id), 0);
>  	spin = xe_bo_map(fd, bo, bo_size);
>  
> -- 
> 2.34.1
> 

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

* ✗ GitLab.Pipeline: warning for xe_find_engine_by_class helper (rev2)
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
  2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
  2024-10-16 10:19 ` [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class Pravalika Gurram
@ 2024-10-16 10:39 ` Patchwork
  2024-10-16 11:05 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-10-16 10:39 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev

== Series Details ==

Series: xe_find_engine_by_class helper (rev2)
URL   : https://patchwork.freedesktop.org/series/140001/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1291203 for the overview.

build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/65150067):
  $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script
  Checking if the user of the pipeline is allowed...
  Checking if the job's project is part of a well-known group...
  Thank you for contributing to freedesktop.org
  Fetching changes...
  Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
  Checking out 3fe31edf as detached HEAD (ref is intel/IGTPW_11921)...
  Removing build/
  Removing scripts/__pycache__/
  
  Skipping Git submodules setup
  section_end:1729074800:get_sources
  section_start:1729074800:step_script
  Executing "step_script" stage of the job script
  Using docker image sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian:commit-3fe31edf1e9ef420e80c408980c13b30fb81070b with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian@sha256:b9fe73c6ff5d68f5692fd18b9076735679c8bfa7ed393e752dd4927a2cdf9874 ...
  section_end:1729074802:step_script
  section_start:1729074802:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1729074803:cleanup_file_variables
  ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:ca01fc804bb92e5df42a202dd7e0470610c6711c66a808525defcb8bbb774078: image not known (docker.go:650:0s)

== Logs ==

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

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

* ✗ Fi.CI.BAT: failure for xe_find_engine_by_class helper (rev2)
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
                   ` (2 preceding siblings ...)
  2024-10-16 10:39 ` ✗ GitLab.Pipeline: warning for xe_find_engine_by_class helper (rev2) Patchwork
@ 2024-10-16 11:05 ` Patchwork
  2024-10-16 11:11 ` ✓ CI.xeBAT: success " Patchwork
  2024-10-16 23:24 ` ✗ CI.xeFULL: failure " Patchwork
  5 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-10-16 11:05 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev

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

== Series Details ==

Series: xe_find_engine_by_class helper (rev2)
URL   : https://patchwork.freedesktop.org/series/140001/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8077 -> IGTPW_11921
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11921 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11921, 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/IGTPW_11921/index.html

Participating hosts (44 -> 43)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - bat-dg2-13:         [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8077/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11921/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live:
    - fi-bsw-n3050:       [DMESG-FAIL][3] ([i915#12172]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8077/fi-bsw-n3050/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11921/fi-bsw-n3050/igt@i915_selftest@live.html

  * igt@i915_selftest@live@active:
    - fi-bsw-n3050:       [DMESG-FAIL][5] ([i915#12435]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8077/fi-bsw-n3050/igt@i915_selftest@live@active.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11921/fi-bsw-n3050/igt@i915_selftest@live@active.html

  
  [i915#12172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12172
  [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8077 -> IGTPW_11921

  CI-20190529: 20190529
  CI_DRM_15540: 12e4970af1ecdeb76e94df2daf51a9c3d6b9f519 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11921: 3fe31edf1e9ef420e80c408980c13b30fb81070b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8077: 42f9e9702f74a4993318adea936baaa186084689 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ CI.xeBAT: success for xe_find_engine_by_class helper (rev2)
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
                   ` (3 preceding siblings ...)
  2024-10-16 11:05 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-10-16 11:11 ` Patchwork
  2024-10-16 23:24 ` ✗ CI.xeFULL: failure " Patchwork
  5 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-10-16 11:11 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev

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

== Series Details ==

Series: xe_find_engine_by_class helper (rev2)
URL   : https://patchwork.freedesktop.org/series/140001/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8077_BAT -> XEIGTPW_11921_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 9)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_evict@evict-beng-small:
    - bat-adlp-7:         NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-adlp-7/igt@xe_evict@evict-beng-small.html

  * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
    - bat-lnl-1:          [PASS][2] -> [DMESG-WARN][3] ([Intel XE#2687])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
    - bat-adlp-7:         NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - bat-dg2-oem2:       [PASS][5] -> [INCOMPLETE][6] ([Intel XE#2874]) +1 other test incomplete
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-adlp-7:         NOTRUN -> [SKIP][7] ([Intel XE#2229])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  
#### Possible fixes ####

  * igt@kms_frontbuffer_tracking@basic:
    - bat-adlp-7:         [FAIL][8] ([Intel XE#1861]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - bat-adlp-7:         [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

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

  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
  [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688


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

  * IGT: IGT_8077 -> IGTPW_11921

  IGTPW_11921: 3fe31edf1e9ef420e80c408980c13b30fb81070b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8077: 42f9e9702f74a4993318adea936baaa186084689 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2072-12e4970af1ecdeb76e94df2daf51a9c3d6b9f519: 12e4970af1ecdeb76e94df2daf51a9c3d6b9f519

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/index.html

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

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

* ✗ CI.xeFULL: failure for xe_find_engine_by_class helper (rev2)
  2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
                   ` (4 preceding siblings ...)
  2024-10-16 11:11 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-10-16 23:24 ` Patchwork
  2024-10-21 10:47   ` Gurram, Pravalika
  5 siblings, 1 reply; 17+ messages in thread
From: Patchwork @ 2024-10-16 23:24 UTC (permalink / raw)
  To: Pravalika Gurram; +Cc: igt-dev

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

== Series Details ==

Series: xe_find_engine_by_class helper (rev2)
URL   : https://patchwork.freedesktop.org/series/140001/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8077_full -> XEIGTPW_11921_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_11921_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_11921_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 (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@xe_drm_fdinfo@utilization-single-full-load:
    - shard-lnl:          [PASS][2] -> [FAIL][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load.html

  
#### Suppressed ####

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

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - {shard-bmg}:        [SKIP][4] ([Intel XE#367]) -> [SKIP][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - {shard-bmg}:        [SKIP][6] ([Intel XE#2320]) -> [SKIP][7] +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-8/igt@kms_cursor_crc@cursor-random-128x42.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_vblank@query-forked-busy:
    - {shard-bmg}:        [PASS][8] -> [SKIP][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-4/igt@kms_vblank@query-forked-busy.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_vblank@query-forked-busy.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#623])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
    - shard-lnl:          NOTRUN -> [FAIL][11] ([Intel XE#911]) +2 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-lnl:          [PASS][12] -> [FAIL][13] ([Intel XE#1701]) +1 other test fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [PASS][14] -> [SKIP][15] ([Intel XE#2890])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#316]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg2-set2:     [PASS][17] -> [SKIP][18] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][19] ([Intel XE#877])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#1407])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#2890])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][22] ([Intel XE#1124]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#619])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#1124]) +9 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#367]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#787]) +83 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#2887]) +6 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#2907]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#2669]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1195])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][33] ([Intel XE#1195] / [Intel XE#1727])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][34] ([Intel XE#1195])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][35] ([Intel XE#3113])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#306]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#373]) +8 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#373])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][39] ([Intel XE#1178]) +3 other tests fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-dg2-set2:     [PASS][40] -> [SKIP][41] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_cursor_crc@cursor-random-128x42.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#308])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1424]) +3 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#323]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#309]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-lnl:          [PASS][46] -> [FAIL][47] ([Intel XE#1475]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#2958])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#1137])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1421]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@blocking-wf_vblank:
    - shard-lnl:          [PASS][52] -> [FAIL][53] ([Intel XE#886]) +8 other tests fail
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          NOTRUN -> [FAIL][54] ([Intel XE#886]) +2 other tests fail
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][55] ([Intel XE#301])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][56] ([Intel XE#1204])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#1401] / [Intel XE#1745])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#1401])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#1397] / [Intel XE#1745])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#1397])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#651]) +25 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#656]) +9 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#651]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#658])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#653]) +23 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#2351] / [Intel XE#2890])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][67] -> [SKIP][68] ([Intel XE#455])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane@plane-position-covered@pipe-a-plane-1:
    - shard-lnl:          [PASS][69] -> [DMESG-FAIL][70] ([Intel XE#324])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html

  * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
    - shard-lnl:          [PASS][71] -> [DMESG-WARN][72] ([Intel XE#324]) +7 other tests dmesg-warn
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html

  * igt@kms_plane_lowres@tiling-4:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#599]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][74] -> [FAIL][75] ([Intel XE#361])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#2763]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#2763]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#2763] / [Intel XE#455])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#870])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [PASS][80] -> [FAIL][81] ([Intel XE#2029])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@universal-planes:
    - shard-lnl:          [PASS][82] -> [INCOMPLETE][83] ([Intel XE#1620] / [Intel XE#2864])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@universal-planes.html

  * igt@kms_pm_rpm@universal-planes@plane-32:
    - shard-lnl:          [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#1620])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-32.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-32.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#1489]) +6 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#2893]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     NOTRUN -> [SKIP][88] ([Intel XE#1122])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-lnl:          [PASS][90] -> [FAIL][91] ([Intel XE#2948]) +7 other tests fail
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#1406]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-lnl:          [PASS][93] -> [DMESG-WARN][94] ([Intel XE#2055])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-180.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][95] ([Intel XE#1127])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#1437])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#1127])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#327]) +3 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_vrr@flip-basic:
    - shard-lnl:          [PASS][99] -> [FAIL][100] ([Intel XE#2443]) +1 other test fail
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_vrr@flip-basic.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#455]) +16 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_vrr@flipline.html

  * igt@kms_vrr@max-min:
    - shard-lnl:          NOTRUN -> [FAIL][102] ([Intel XE#2443]) +1 other test fail
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_vrr@max-min.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#756]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#1091] / [Intel XE#2849])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     NOTRUN -> [SKIP][105] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#1126]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eudebug@basic-connect:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#2905]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#2905]) +8 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_evict@evict-cm-threads-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#688]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@xe_evict@evict-cm-threads-small-multi-vm.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#1392]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> [SKIP][111] ([Intel XE#288]) +24 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     NOTRUN -> [SKIP][112] ([Intel XE#2360])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_reset@cm-close-execqueues-close-fd:
    - shard-lnl:          [PASS][113] -> [FAIL][114] ([Intel XE#1081])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
    - shard-dg2-set2:     [PASS][115] -> [FAIL][116] ([Intel XE#1081])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_exec_reset@cm-close-execqueues-close-fd.html

  * igt@xe_exec_sip@invalidinstr-disabled:
    - shard-dg2-set2:     [PASS][117] -> [SKIP][118] ([Intel XE#1130]) +7 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@xe_exec_sip@invalidinstr-disabled.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_sip@invalidinstr-disabled.html

  * igt@xe_exec_threads@threads-cm-userptr-invalidate:
    - shard-dg2-set2:     [PASS][119] -> [INCOMPLETE][120] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_exec_threads@threads-cm-userptr-invalidate.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_exec_threads@threads-cm-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#2931])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-dg2-set2:     [PASS][122] -> [ABORT][123] ([Intel XE#2625])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@xe_gt_freq@freq_suspend.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][124] ([Intel XE#255])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_huc_copy@huc_copy.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#2229])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#560])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@force-load:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#378])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@xe_module_load@force-load.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#2541]) +5 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_pat@pat-index-xelp:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#1130]) +2 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][130] ([Intel XE#979])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#2284] / [Intel XE#366])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@s4-basic:
    - shard-lnl:          [PASS][132] -> [ABORT][133] ([Intel XE#1358] / [Intel XE#1607])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@xe_pm@s4-basic.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@xe_pm@s4-basic.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-dg2-set2:     [PASS][134] -> [ABORT][135] ([Intel XE#1358] / [Intel XE#1794])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][136] -> [FAIL][137] ([Intel XE#958])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][138] ([Intel XE#944]) +4 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#944]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_query@multigpu-query-mem-usage.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs:
    - shard-lnl:          [INCOMPLETE][140] -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - shard-lnl:          [FAIL][142] ([Intel XE#1701]) -> [PASS][143] +1 other test pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][144] ([Intel XE#1426]) -> [PASS][145] +1 other test pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-0:
    - {shard-bmg}:        [SKIP][146] ([Intel XE#2231]) -> [PASS][147] +2 other tests pass
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - {shard-bmg}:        [SKIP][148] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][149] +1 other test pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#2890]) -> [PASS][151] +7 other tests pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][153] +2 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-lnl:          [FAIL][154] ([Intel XE#1475]) -> [PASS][155]
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - {shard-bmg}:        [DMESG-WARN][156] ([Intel XE#877]) -> [PASS][157] +3 other tests pass
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_feature_discovery@display-1x:
    - {shard-bmg}:        [SKIP][158] -> [PASS][159] +15 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_feature_discovery@display-1x.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-8/igt@kms_feature_discovery@display-1x.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][160] ([Intel XE#301]) -> [PASS][161] +5 other tests pass
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
    - {shard-bmg}:        [FAIL][162] ([Intel XE#301]) -> [PASS][163] +1 other test pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - {shard-bmg}:        [SKIP][164] ([Intel XE#3007]) -> [PASS][165] +2 other tests pass
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@plain-flip-ts-check@c-edp1:
    - shard-lnl:          [FAIL][166] ([Intel XE#886]) -> [PASS][167] +3 other tests pass
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html

  * igt@kms_lease@lease-uevent:
    - shard-dg2-set2:     [SKIP][168] ([Intel XE#2423] / [i915#2575]) -> [PASS][169] +13 other tests pass
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_lease@lease-uevent.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_lease@lease-uevent.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-dg2-set2:     [ABORT][170] ([Intel XE#1035] / [Intel XE#2625]) -> [PASS][171] +1 other test pass
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane@plane-position-covered@pipe-b-plane-4:
    - shard-lnl:          [DMESG-WARN][172] ([Intel XE#324]) -> [PASS][173] +3 other tests pass
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html

  * igt@kms_plane@plane-position-hole:
    - shard-lnl:          [DMESG-FAIL][174] ([Intel XE#324]) -> [PASS][175] +1 other test pass
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_plane@plane-position-hole.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_plane@plane-position-hole.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][176] ([Intel XE#361]) -> [PASS][177]
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][178] ([Intel XE#718]) -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][180] ([Intel XE#1430]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-lnl:          [DMESG-FAIL][182] ([Intel XE#1620]) -> [PASS][183]
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@legacy-planes:
    - shard-lnl:          [INCOMPLETE][184] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html

  * igt@kms_pm_rpm@legacy-planes@plane-41:
    - shard-lnl:          [DMESG-WARN][186] ([Intel XE#1620]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-41.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html

  * igt@kms_pm_rpm@legacy-planes@plane-50:
    - shard-lnl:          [FAIL][188] -> [PASS][189] +2 other tests pass
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-50.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-50.html

  * igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
    - shard-lnl:          [FAIL][190] ([Intel XE#1649]) -> [PASS][191] +1 other test pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
    - shard-lnl:          [FAIL][192] ([Intel XE#899]) -> [PASS][193] +3 other tests pass
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-lnl:          [FAIL][194] ([Intel XE#2443]) -> [PASS][195] +3 other tests pass
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_vrr@flipline.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_vrr@flipline.html

  * igt@xe_evict@evict-beng-threads-large:
    - {shard-bmg}:        [TIMEOUT][196] ([Intel XE#1473]) -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-dg2-set2:     [TIMEOUT][198] ([Intel XE#1473]) -> [PASS][199]
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [FAIL][200] ([Intel XE#1000]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1130]) -> [PASS][203] +27 other tests pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind.html

  * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:
    - shard-lnl:          [FAIL][204] ([Intel XE#2754]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_reset@close-execqueues-close-fd:
    - {shard-bmg}:        [DMESG-WARN][206] -> [PASS][207]
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_exec_reset@close-execqueues-close-fd.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@xe_exec_reset@close-execqueues-close-fd.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-dg2-set2:     [FAIL][208] -> [PASS][209]
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@xe_exec_reset@cm-close-fd.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [TIMEOUT][210] ([Intel XE#2105]) -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
    - {shard-bmg}:        [INCOMPLETE][212] ([Intel XE#2998]) -> [PASS][213] +1 other test pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html

  * igt@xe_live_ktest@xe_migrate:
    - shard-lnl:          [SKIP][214] ([Intel XE#1192]) -> [PASS][215]
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_live_ktest@xe_migrate.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_live_ktest@xe_migrate.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - {shard-bmg}:        [FAIL][216] ([Intel XE#3099]) -> [PASS][217] +2 other tests pass
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-1/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

  * igt@xe_pm@s2idle-basic:
    - shard-dg2-set2:     [ABORT][218] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][219]
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-432/igt@xe_pm@s2idle-basic.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s2idle-basic-exec:
    - {shard-bmg}:        [SKIP][220] ([Intel XE#1130]) -> [PASS][221] +38 other tests pass
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [ABORT][222] ([Intel XE#1794]) -> [PASS][223]
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events:
    - shard-lnl:          [INCOMPLETE][224] -> [FAIL][225] ([Intel XE#911])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2-set2:     [SKIP][226] ([Intel XE#2890]) -> [SKIP][227] ([Intel XE#1124]) +1 other test skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][230] ([Intel XE#1195]) -> [INCOMPLETE][231] ([Intel XE#1195] / [Intel XE#1727])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][232] ([Intel XE#2890]) -> [SKIP][233] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-dg2-set2:     [SKIP][234] ([Intel XE#2423] / [i915#2575]) -> [SKIP][235] ([Intel XE#373]) +2 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     [INCOMPLETE][236] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][237] ([Intel XE#1178])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_content_protection@atomic.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][238] ([Intel XE#1195]) -> [FAIL][239] ([Intel XE#1178])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_content_protection@atomic@pipe-a-dp-4.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_content_protection@atomic@pipe-a-dp-4.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [FAIL][241] ([Intel XE#301])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
    - shard-dg2-set2:     [SKIP][242] ([Intel XE#455]) -> [SKIP][243] ([Intel XE#2351] / [Intel XE#2890])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-dg2-set2:     [SKIP][244] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][245] ([Intel XE#455])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][246] ([Intel XE#2890]) -> [SKIP][247] ([Intel XE#651]) +3 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#651]) -> [SKIP][249] ([Intel XE#2890])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][250] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][251] ([Intel XE#651])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#2890]) -> [SKIP][253] ([Intel XE#653]) +2 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#653]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#2423] / [i915#2575]) -> [SKIP][257] ([Intel XE#2763] / [Intel XE#455])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#2890]) -> [SKIP][259] ([Intel XE#1129])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     [SKIP][260] ([Intel XE#2890]) -> [SKIP][261] ([Intel XE#1489]) +2 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-sprite-blt:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][263] ([Intel XE#2351] / [Intel XE#2890])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-blt.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-blt.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     [SKIP][264] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][265] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr@pr-dpms.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#2890]) -> [SKIP][267] ([Intel XE#2850] / [Intel XE#929])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr@psr2-cursor-render.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_psr@psr2-cursor-render.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#2423] / [i915#2575]) -> [SKIP][269] ([Intel XE#455]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][270] ([Intel XE#1729]) -> [SKIP][271] ([Intel XE#362])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_eudebug@multiple-sessions:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#1130]) -> [SKIP][273] ([Intel XE#2905]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_eudebug@multiple-sessions.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html

  * igt@xe_eudebug@sysfs-toggle:
    - shard-dg2-set2:     [SKIP][274] ([Intel XE#2905]) -> [SKIP][275] ([Intel XE#1130]) +1 other test skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_eudebug@sysfs-toggle.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_eudebug@sysfs-toggle.html

  * igt@xe_evict@evict-beng-mixed-many-threads-large:
    - shard-dg2-set2:     [SKIP][276] ([Intel XE#1130]) -> [TIMEOUT][277] ([Intel XE#1473])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#1130]) -> [SKIP][279] ([Intel XE#288]) +5 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#288]) -> [SKIP][281] ([Intel XE#1130]) +1 other test skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_oa@invalid-oa-metric-set-id:
    - shard-dg2-set2:     [SKIP][282] ([Intel XE#1130]) -> [SKIP][283] ([Intel XE#2541]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_oa@invalid-oa-metric-set-id.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#1130]) -> [ABORT][285] ([Intel XE#1358])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-dg2-set2:     [SKIP][286] ([Intel XE#944]) -> [SKIP][287] ([Intel XE#1130])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

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

  [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
  [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
  [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
  [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
  [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
  [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931
  [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
  [Intel XE#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958
  [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
  [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_8077 -> IGTPW_11921

  IGTPW_11921: 3fe31edf1e9ef420e80c408980c13b30fb81070b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8077: 42f9e9702f74a4993318adea936baaa186084689 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-2072-12e4970af1ecdeb76e94df2daf51a9c3d6b9f519: 12e4970af1ecdeb76e94df2daf51a9c3d6b9f519

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/index.html

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

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

* RE: ✗ CI.xeFULL: failure for xe_find_engine_by_class helper (rev2)
  2024-10-16 23:24 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-10-21 10:47   ` Gurram, Pravalika
  2024-10-22 10:31     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 17+ messages in thread
From: Gurram, Pravalika @ 2024-10-21 10:47 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org

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



From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, October 17, 2024 4:54 AM
To: Gurram, Pravalika <pravalika.gurram@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ CI.xeFULL: failure for xe_find_engine_by_class helper (rev2)

Patch Details
Series:
xe_find_engine_by_class helper (rev2)
URL:
https://patchwork.freedesktop.org/series/140001/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/index.html
CI Bug Log - changes from XEIGT_8077_full -> XEIGTPW_11921_full
Summary

FAILURE

Serious unknown changes coming with XEIGTPW_11921_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11921_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (4 -> 4)

No changes in participating hosts

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html>

  *   igt@xe_drm_fdinfo@utilization-single-full-load:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load.html>

Suppressed

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

  *   igt@kms_bw@linear-tiling-2-displays-2560x1440p:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html>

  *   igt@kms_cursor_crc@cursor-random-128x42:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-8/igt@kms_cursor_crc@cursor-random-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_cursor_crc@cursor-random-128x42.html> +1 other test skip

  *   igt@kms_vblank@query-forked-busy:

     *   {shard-bmg}: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-4/igt@kms_vblank@query-forked-busy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_vblank@query-forked-busy.html>

Known issues

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

IGT changes
Issues hit

  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#623<https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>)

  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +2 other tests fail

  *   igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> (Intel XE#1701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) +1 other test fail

  *   igt@kms_big_fb@4-tiled-32bpp-rotate-180:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_big_fb@4-tiled-8bpp-rotate-270:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +1 other test skip

  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +2 other tests skip

  *   igt@kms_big_fb@linear-64bpp-rotate-180:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>)

  *   igt@kms_big_fb@x-tiled-32bpp-rotate-270:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>)

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other tests skip

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>)

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +9 other tests skip

  *   igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +4 other tests skip

  *   igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +21 other tests skip

  *   igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +83 other tests skip

  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +6 other tests skip

  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) +2 other tests skip

  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#2669<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +3 other tests skip

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>)

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:

     *   shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:

     *   shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>)

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:

     *   shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html> (Intel XE#3113<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113>)

  *   igt@kms_chamelium_color@ctm-blue-to-red:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_chamelium_color@ctm-blue-to-red.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1 other test skip

  *   igt@kms_chamelium_edid@hdmi-mode-timings:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_chamelium_edid@hdmi-mode-timings.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +8 other tests skip

  *   igt@kms_chamelium_frames@dp-crc-single:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_chamelium_frames@dp-crc-single.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>)

  *   igt@kms_content_protection@srm@pipe-a-dp-4:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +3 other tests fail

  *   igt@kms_cursor_crc@cursor-random-128x42:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_cursor_crc@cursor-random-128x42.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_cursor_crc@cursor-random-128x42.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip

  *   igt@kms_cursor_crc@cursor-random-512x512:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)

  *   igt@kms_cursor_crc@cursor-rapid-movement-128x42:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +3 other tests skip

  *   igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +3 other tests skip

  *   igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +1 other test skip

  *   igt@kms_cursor_legacy@flip-vs-cursor-toggle:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (Intel XE#1475<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475>) +1 other test fail

  *   igt@kms_fbcon_fbt@psr-suspend:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#2958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958>)

  *   igt@kms_feature_discovery@dp-mst:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>)

  *   igt@kms_flip@2x-flip-vs-rmfb-interruptible:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3 other tests skip

  *   igt@kms_flip@blocking-wf_vblank:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +8 other tests fail

  *   igt@kms_flip@flip-vs-absolute-wf_vblank:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2 other tests fail

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:

     *   shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html> (Intel XE#1204<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>)

  *   igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>)

  *   igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html> (Intel XE#1397<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>)

  *   igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +25 other tests skip

  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +9 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +2 other tests skip

  *   igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>)

  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +23 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_hdr@invalid-hdr:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@kms_hdr@invalid-hdr.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_hdr@invalid-hdr.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)

  *   igt@kms_plane@plane-position-covered@pipe-a-plane-1:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html> (Intel XE#324<https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>)

  *   igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html> (Intel XE#324<https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) +7 other tests dmesg-warn

  *   igt@kms_plane_lowres@tiling-4:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane_lowres@tiling-4.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +3 other tests skip

  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html> (Intel XE#361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>)

  *   igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +3 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +2 other tests skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)

  *   igt@kms_pm_backlight@fade:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_pm_backlight@fade.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)

  *   igt@kms_pm_dc@deep-pkgc:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>)

  *   igt@kms_pm_rpm@universal-planes:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@universal-planes.html> (Intel XE#1620<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864>)

  *   igt@kms_pm_rpm@universal-planes@plane-32:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-32.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-32.html> (Intel XE#1620<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>)

  *   igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +6 other tests skip

  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +1 other test skip

  *   igt@kms_psr2_su@page_flip-p010:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>)

  *   igt@kms_psr@fbc-pr-cursor-plane-move:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-move.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +11 other tests skip

  *   igt@kms_psr@fbc-psr2-cursor-plane-onoff:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html> (Intel XE#2948<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948>) +7 other tests fail

  *   igt@kms_psr@pr-cursor-plane-onoff:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +1 other test skip

  *   igt@kms_rotation_crc@primary-rotation-180:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-180.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-180.html> (Intel XE#2055<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055>)

  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)

  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#1437<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437>)

  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)

  *   igt@kms_rotation_crc@sprite-rotation-270:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html> (Intel XE#327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) +3 other tests skip

  *   igt@kms_vrr@flip-basic:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_vrr@flip-basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_vrr@flip-basic.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 other test fail

  *   igt@kms_vrr@flipline:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_vrr@flipline.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +16 other tests skip

  *   igt@kms_vrr@max-min:

     *   shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_vrr@max-min.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 other test fail

  *   igt@kms_writeback@writeback-fb-id:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip

  *   igt@sriov_basic@enable-vfs-autoprobe-off:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>)

  *   igt@xe_compute_preempt@compute-preempt-many:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip

  *   igt@xe_copy_basic@mem-set-linear-0xfffe:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) +1 other test skip

  *   igt@xe_eudebug@basic-connect:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_eudebug@basic-connect.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +3 other tests skip

  *   igt@xe_eudebug@basic-vm-access-parameters:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +8 other tests skip

  *   igt@xe_evict@evict-cm-threads-small-multi-vm:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@xe_evict@evict-cm-threads-small-multi-vm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +1 other test skip

  *   igt@xe_exec_basic@multigpu-no-exec-basic:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1 other test skip

  *   igt@xe_exec_fault_mode@twice-userptr-invalidate-race:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +24 other tests skip

  *   igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>)

  *   igt@xe_exec_reset@cm-close-execqueues-close-fd:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>)
     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>)

  *   igt@xe_exec_sip@invalidinstr-disabled:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@xe_exec_sip@invalidinstr-disabled.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_sip@invalidinstr-disabled.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +7 other tests skip

  *   igt@xe_exec_threads@threads-cm-userptr-invalidate:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_exec_threads@threads-cm-userptr-invalidate.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_exec_threads@threads-cm-userptr-invalidate.html> (Intel XE#1169<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169> / Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356>)

  *   igt@xe_fault_injection@inject-fault-probe:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe.html> (Intel XE#2931<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931>)

  *   igt@xe_gt_freq@freq_suspend:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@xe_gt_freq@freq_suspend.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html> (Intel XE#2625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625>)

  *   igt@xe_huc_copy@huc_copy:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_huc_copy@huc_copy.html> (Intel XE#255<https://gitlab.freedesktop.org/drm/xe/kernel/issues/255>)

  *   igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)

  *   igt@xe_media_fill@media-fill:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>)

  *   igt@xe_module_load@force-load:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>)

  *   igt@xe_oa@mmio-triggered-reports:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +5 other tests skip

  *   igt@xe_pat@pat-index-xelp:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_pat@pat-index-xelp.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +2 other tests skip

  *   igt@xe_pat@pat-index-xelpg:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>)

  *   igt@xe_pm@s3-d3cold-basic-exec:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_pm@s3-d3cold-basic-exec.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>)

  *   igt@xe_pm@s4-basic:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@xe_pm@s4-basic.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@xe_pm@s4-basic.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607>)

  *   igt@xe_pm@s4-multiple-execs:

     *   shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_pm@s4-multiple-execs.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>)

  *   igt@xe_pm_residency@toggle-gt-c6:

     *   shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>)

  *   igt@xe_query@multigpu-query-engines:

     *   shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +4 other tests skip

  *   igt@xe_query@multigpu-query-mem-usage:

     *   shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@xe_query@multigpu-query-mem-usage.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 other test skip

Possible fixes

  *   igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs:

     *   shard-lnl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs.html>

  *   igt@kms_atomic_transition@modeset-transition-nonblocking:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking.html> (Intel XE#1701<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html> +1 other test pass

  *   igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> (Intel XE#1426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> +1 other test pass

  *   igt@kms_big_fb@x-tiled-16bpp-rotate-0:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html> +2 other tests pass

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (Intel XE#2231<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> +1 other test pass

  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> +7 other tests pass

  *   igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html> +2 other tests pass

  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (Intel XE#1475<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>

  *   igt@kms_display_modes@extended-mode-basic:

     *   {shard-bmg}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html> +3 other tests pass

  *   igt@kms_feature_discovery@display-1x:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_feature_discovery@display-1x.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-8/igt@kms_feature_discovery@display-1x.html> +15 other tests pass

  *   igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html> +5 other tests pass

  *   igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:

     *   {shard-bmg}: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> +1 other test pass

  *   igt@kms_flip@2x-flip-vs-panning-vs-hang:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (Intel XE#3007<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> +2 other tests pass

  *   igt@kms_flip@plain-flip-ts-check@c-edp1:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html> +3 other tests pass

  *   igt@kms_lease@lease-uevent:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_lease@lease-uevent.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@kms_lease@lease-uevent.html> +13 other tests pass

  *   igt@kms_plane@plane-panning-bottom-right-suspend:

     *   shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#2625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend.html> +1 other test pass

  *   igt@kms_plane@plane-position-covered@pipe-b-plane-4:

     *   shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> (Intel XE#324<https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> +3 other tests pass

  *   igt@kms_plane@plane-position-hole:

     *   shard-lnl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-3/igt@kms_plane@plane-position-hole.html> (Intel XE#324<https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_plane@plane-position-hole.html> +1 other test pass

  *   igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html> (Intel XE#361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html>

  *   igt@kms_pm_dc@dc5-dpms:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html>

  *   igt@kms_pm_dc@dc6-psr:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html>

  *   igt@kms_pm_rpm@dpms-mode-unset-lpsp:

     *   shard-lnl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (Intel XE#1620<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html>

  *   igt@kms_pm_rpm@legacy-planes:

     *   shard-lnl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes.html> (Intel XE#1620<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620> / Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html>

  *   igt@kms_pm_rpm@legacy-planes@plane-41:

     *   shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-41.html> (Intel XE#1620<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html>

  *   igt@kms_pm_rpm@legacy-planes@plane-50:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-50.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-50.html> +2 other tests pass

  *   igt@kms_psr@fbc-psr2-sprite-blt@edp-1:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html> (Intel XE#1649<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html> +1 other test pass

  *   igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> +3 other tests pass

  *   igt@kms_vrr@flipline:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-4/igt@kms_vrr@flipline.html> (Intel XE#2443<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-5/igt@kms_vrr@flipline.html> +3 other tests pass

  *   igt@xe_evict@evict-beng-threads-large:

     *   {shard-bmg}: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html>

  *   igt@xe_evict@evict-mixed-many-threads-small:

     *   shard-dg2-set2: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html>

  *   igt@xe_evict@evict-mixed-threads-large:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html>

  *   igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind.html> +27 other tests pass

  *   igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:

     *   shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html> (Intel XE#2754<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html>

  *   igt@xe_exec_reset@close-execqueues-close-fd:

     *   {shard-bmg}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_exec_reset@close-execqueues-close-fd.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-7/igt@xe_exec_reset@close-execqueues-close-fd.html>

  *   igt@xe_exec_reset@cm-close-fd:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-436/igt@xe_exec_reset@cm-close-fd.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-434/igt@xe_exec_reset@cm-close-fd.html>

  *   igt@xe_exec_reset@parallel-gt-reset:

     *   shard-dg2-set2: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html> (Intel XE#2105<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html>

  *   igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:

     *   {shard-bmg}: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2998<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> +1 other test pass

  *   igt@xe_live_ktest@xe_migrate:

     *   shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-1/igt@xe_live_ktest@xe_migrate.html>

  *   igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:

     *   {shard-bmg}: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> (Intel XE#3099<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-1/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> +2 other tests pass

  *   igt@xe_pm@s2idle-basic:

     *   shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-432/igt@xe_pm@s2idle-basic.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@xe_pm@s2idle-basic.html>

  *   igt@xe_pm@s2idle-basic-exec:

     *   {shard-bmg}: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-bmg-4/igt@xe_pm@s2idle-basic-exec.html> +38 other tests pass

  *   igt@xe_pm@s4-vm-bind-unbind-all:

     *   shard-lnl: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html>

Warnings

  *   igt@kms_async_flips@async-flip-with-page-flip-events:

     *   shard-lnl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events.html> (Intel XE#911<https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>)

  *   igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test skip

  *   igt@kms_bw@linear-tiling-2-displays-2560x1440p:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)

  *   igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>)

  *   igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +1 other test skip

  *   igt@kms_chamelium_hpd@vga-hpd-fast:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-fast.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-fast.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests skip

  *   igt@kms_content_protection@atomic:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_content_protection@atomic.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)

  *   igt@kms_content_protection@atomic@pipe-a-dp-4:

     *   shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_content_protection@atomic@pipe-a-dp-4.html> (Intel XE#1195<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_content_protection@atomic@pipe-a-dp-4.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)

  *   igt@kms_flip@flip-vs-expired-vblank-interruptible:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)

  *   igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +3 other tests skip

  *   igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>)

  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +2 other tests skip

  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 other test skip

  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)

  *   igt@kms_pm_dc@dc5-psr:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>)

  *   igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +2 other tests skip

  *   igt@kms_psr@fbc-psr2-sprite-blt:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-blt.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-blt.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>)

  *   igt@kms_psr@pr-dpms:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr@pr-dpms.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-435/igt@kms_psr@pr-dpms.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +1 other test skip

  *   igt@kms_psr@psr2-cursor-render:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_psr@psr2-cursor-render.html> (Intel XE#2890<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@kms_psr@psr2-cursor-render.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>)

  *   igt@kms_scaling_modes@scaling-mode-full-aspect:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip

  *   igt@kms_tiled_display@basic-test-pattern:

     *   shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>)

  *   igt@xe_eudebug@multiple-sessions:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_eudebug@multiple-sessions.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +1 other test skip

  *   igt@xe_eudebug@sysfs-toggle:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_eudebug@sysfs-toggle.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_eudebug@sysfs-toggle.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip

  *   igt@xe_evict@evict-beng-mixed-many-threads-large:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>)

  *   igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +5 other tests skip

  *   igt@xe_exec_fault_mode@once-invalid-userptr-fault:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip

  *   igt@xe_oa@invalid-oa-metric-set-id:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_oa@invalid-oa-metric-set-id.html> (Intel XE#2541<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +1 other test skip

  *   igt@xe_pm@s2idle-basic-exec:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358>)

  *   igt@xe_query@multigpu-query-topology-l3-bank-mask:

     *   shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8077/shard-dg2-435/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/shard-dg2-433/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>)

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

Above are unrelated to change in xe_exec_compute_mode test and xe_query.



Build changes

  *   IGT: IGT_8077 -> IGTPW_11921

IGTPW_11921: 3fe31edf1e9ef420e80c408980c13b30fb81070b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8077: 42f9e9702f74a4993318adea936baaa186084689 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2072-12e4970af1ecdeb76e94df2daf51a9c3d6b9f519: 12e4970af1ecdeb76e94df2daf51a9c3d6b9f519

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

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

* Re: [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
  2024-10-16 10:36   ` Zbigniew Kempczyński
@ 2024-10-21 12:59   ` Kamil Konieczny
  2024-10-22 13:55     ` Zbigniew Kempczyński
  1 sibling, 1 reply; 17+ messages in thread
From: Kamil Konieczny @ 2024-10-21 12:59 UTC (permalink / raw)
  To: igt-dev
  Cc: Pravalika Gurram, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska

Hi Pravalika,
On 2024-10-16 at 15:49:32 +0530, Pravalika Gurram wrote:
> Added "xe_find_engine_by_class" helper function to query with the required
> engine class and get the engine info.
> 
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> ---
>  lib/xe/xe_query.c | 20 ++++++++++++++++++++
>  lib/xe/xe_query.h |  1 +
>  2 files changed, 21 insertions(+)
> 
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 8694fa3f9..0c9cff066 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -731,6 +731,26 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
>  	return false;
>  }
>  
> +/**
> + * xe_find_engine_by_class
> + * @fd: xe device fd
> + * @engine_class: engine class
> + *
> + * Returns engine info of xe device @fd and @engine_class otherwise NULL.
> + */
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
> +{
> +	struct xe_device *xe_dev;
> +
> +	xe_dev = find_in_cache(fd);
> +	igt_assert(xe_dev);

imho here just 'if (!xe_dev) return NULL;'

Regards,
Kamil

> +
> +	for (int i = 0; i < xe_dev->engines->num_engines; i++)
> +		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
> +			return &xe_dev->engines->engines[i];
> +
> +	return NULL;
> +}
>  /**
>   * xe_has_media_gt:
>   * @fd: xe device fd
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index fd1155f7f..cabb8078c 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
>  int xe_supports_faults(int fd);
>  const char *xe_engine_class_string(uint32_t engine_class);
>  bool xe_has_engine_class(int fd, uint16_t engine_class);
> +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
>  bool xe_has_media_gt(int fd);
>  bool xe_is_media_gt(int fd, int gt);
>  uint16_t xe_gt_get_tile_id(int fd, int gt);
> -- 
> 2.34.1
> 

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

* Re: [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class
  2024-10-16 10:19 ` [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class Pravalika Gurram
  2024-10-16 10:37   ` Zbigniew Kempczyński
@ 2024-10-21 15:40   ` Kamil Konieczny
  2024-10-22 10:29     ` Zbigniew Kempczyński
  1 sibling, 1 reply; 17+ messages in thread
From: Kamil Konieczny @ 2024-10-21 15:40 UTC (permalink / raw)
  To: igt-dev
  Cc: Pravalika Gurram, zbigniew.kempczynski, sai.gowtham.ch,
	katarzyna.piecielska

Hi Pravalika,
On 2024-10-16 at 15:49:33 +0530, Pravalika Gurram wrote:
> Use 'xe_find_engine_by_class' helper to get the engine info with the
> required engine class.  Stop assuming engine id is equal to 1
> 
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> ---
>  tests/intel/xe_exec_compute_mode.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
> index 82e607848..b238503ea 100644
> --- a/tests/intel/xe_exec_compute_mode.c
> +++ b/tests/intel/xe_exec_compute_mode.c
> @@ -461,7 +461,10 @@ static void lr_mode_workload(int fd)
>  	vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
>  	ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
>  	bo_size = xe_bb_size(fd, sizeof(*spin));
> -	engine = xe_engine(fd, 1);
> +
> +	engine = xe_find_engine_by_class(fd, DRM_XE_ENGINE_CLASS_COPY);
> +	igt_assert(engine);

Instead of igt_assert it could be better to use
	igt_skip_on(!engine, "message...\n")

also move that to begin of this function (before vm_create or other inits)

Regards,
Kamil

> +
>  	bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, engine->instance.gt_id), 0);
>  	spin = xe_bo_map(fd, bo, bo_size);
>  
> -- 
> 2.34.1
> 

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

* Re: [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class
  2024-10-21 15:40   ` Kamil Konieczny
@ 2024-10-22 10:29     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-22 10:29 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev, Pravalika Gurram, sai.gowtham.ch,
	katarzyna.piecielska

On Mon, Oct 21, 2024 at 05:40:57PM +0200, Kamil Konieczny wrote:
> Hi Pravalika,
> On 2024-10-16 at 15:49:33 +0530, Pravalika Gurram wrote:
> > Use 'xe_find_engine_by_class' helper to get the engine info with the
> > required engine class.  Stop assuming engine id is equal to 1
> > 
> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> > ---
> >  tests/intel/xe_exec_compute_mode.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> > 
> > diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c
> > index 82e607848..b238503ea 100644
> > --- a/tests/intel/xe_exec_compute_mode.c
> > +++ b/tests/intel/xe_exec_compute_mode.c
> > @@ -461,7 +461,10 @@ static void lr_mode_workload(int fd)
> >  	vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> >  	ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> >  	bo_size = xe_bb_size(fd, sizeof(*spin));
> > -	engine = xe_engine(fd, 1);
> > +
> > +	engine = xe_find_engine_by_class(fd, DRM_XE_ENGINE_CLASS_COPY);
> > +	igt_assert(engine);
> 
> Instead of igt_assert it could be better to use
> 	igt_skip_on(!engine, "message...\n")
> 
> also move that to begin of this function (before vm_create or other inits)
> 
> Regards,
> Kamil

There's no possibility there's no COPY engine. So assert is fine for me
here.

--
Zbigniew

> 
> > +
> >  	bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, engine->instance.gt_id), 0);
> >  	spin = xe_bo_map(fd, bo, bo_size);
> >  
> > -- 
> > 2.34.1
> > 

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

* Re: ✗ CI.xeFULL: failure for xe_find_engine_by_class helper (rev2)
  2024-10-21 10:47   ` Gurram, Pravalika
@ 2024-10-22 10:31     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-22 10:31 UTC (permalink / raw)
  To: Gurram, Pravalika
  Cc: igt-dev@lists.freedesktop.org,
	I915-ci-infra@lists.freedesktop.org

On Mon, Oct 21, 2024 at 10:47:40AM +0000, Gurram, Pravalika wrote:
>     
> 
>     
> 
>    From: Patchwork <patchwork@emeril.freedesktop.org>
>    Sent: Thursday, October 17, 2024 4:54 AM
>    To: Gurram, Pravalika <pravalika.gurram@intel.com>
>    Cc: igt-dev@lists.freedesktop.org
>    Subject: ✗ CI.xeFULL: failure for xe_find_engine_by_class helper (rev2)
> 
>     
> 
>    Patch Details
> 
>    Series:  xe_find_engine_by_class helper (rev2)                            
>    URL:     https://patchwork.freedesktop.org/series/140001/                 
>    State:   failure                                                          
>    Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11921/index.html 
> 
>         CI Bug Log - changes from XEIGT_8077_full -> XEIGTPW_11921_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with XEIGTPW_11921_full absolutely need to
>    be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in XEIGTPW_11921_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 (4 -> 4)
> 
>    No changes in participating hosts
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    XEIGTPW_11921_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      o igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>         o shard-lnl: NOTRUN -> FAIL
>      o igt@xe_drm_fdinfo@utilization-single-full-load:
>         o shard-lnl: PASS -> FAIL
> 
>     Suppressed
> 
>    The following results come from untrusted machines, tests, or statuses.
>    They do not affect the overall result.
> 
>      o igt@kms_bw@linear-tiling-2-displays-2560x1440p:
>         o {shard-bmg}: SKIP (Intel XE#367) -> SKIP
>      o igt@kms_cursor_crc@cursor-random-128x42:
>         o {shard-bmg}: SKIP (Intel XE#2320) -> SKIP +1 other test skip
>      o igt@kms_vblank@query-forked-busy:
>         o {shard-bmg}: PASS -> SKIP
> 
> Known issues
> 
>    Here are the changes found in XEIGTPW_11921_full that come from known
>    issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      o igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#623)
>      o igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
>         o shard-lnl: NOTRUN -> FAIL (Intel XE#911) +2 other tests fail
>      o igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
>         o shard-lnl: PASS -> FAIL (Intel XE#1701) +1 other test fail
>      o igt@kms_big_fb@4-tiled-32bpp-rotate-180:
>         o shard-dg2-set2: PASS -> SKIP (Intel XE#2890)
>      o igt@kms_big_fb@4-tiled-8bpp-rotate-270:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +1 other test skip
>      o igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
>         o shard-dg2-set2: PASS -> SKIP (Intel XE#2351 / Intel XE#2890) +2
>           other tests skip
>      o igt@kms_big_fb@linear-64bpp-rotate-180:
>         o shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#877)
>      o igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1407)
>      o igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2890)
>      o igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +3 other tests skip
>      o igt@kms_big_fb@yf-tiled-addfb:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#619)
>      o igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +9 other tests skip
>      o igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +4 other tests skip
>      o igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +21
>           other tests skip
>      o igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +83 other tests skip
>      o igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +6 other tests skip
>      o igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907) +2 other tests skip
>      o igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2669) +3 other tests skip
>      o igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
>         o shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1195)
>      o igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>         o shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#1195 / Intel
>           XE#1727)
>      o igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
>         o shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#1195)
>      o igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
>         o shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#3113)
>      o igt@kms_chamelium_color@ctm-blue-to-red:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) +1 other test skip
>      o igt@kms_chamelium_edid@hdmi-mode-timings:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +8 other tests skip
>      o igt@kms_chamelium_frames@dp-crc-single:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#373)
>      o igt@kms_content_protection@srm@pipe-a-dp-4:
>         o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +3 other tests fail
>      o igt@kms_cursor_crc@cursor-random-128x42:
>         o shard-dg2-set2: PASS -> SKIP (Intel XE#2423 / i915#2575) +2 other
>           tests skip
>      o igt@kms_cursor_crc@cursor-random-512x512:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308)
>      o igt@kms_cursor_crc@cursor-rapid-movement-128x42:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +3 other tests skip
>      o igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#323) +3 other tests skip
>      o igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip
>      o igt@kms_cursor_legacy@flip-vs-cursor-toggle:
>         o shard-lnl: PASS -> FAIL (Intel XE#1475) +1 other test fail
>      o igt@kms_fbcon_fbt@psr-suspend:
>         o shard-lnl: PASS -> FAIL (Intel XE#2958)
>      o igt@kms_feature_discovery@dp-mst:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1137)
>      o igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1421) +3 other tests skip
>      o igt@kms_flip@blocking-wf_vblank:
>         o shard-lnl: PASS -> FAIL (Intel XE#886) +8 other tests fail
>      o igt@kms_flip@flip-vs-absolute-wf_vblank:
>         o shard-lnl: NOTRUN -> FAIL (Intel XE#886) +2 other tests fail
>      o igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
>         o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301)
>      o igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
>         o shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1204)
>      o igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745)
>      o igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1401)
>      o igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1397 / Intel XE#1745)
>      o igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1397)
>      o igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +25 other tests skip
>      o igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#656) +9 other tests skip
>      o igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#651) +2 other tests skip
>      o igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#658)
>      o igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +23 other tests skip
>      o igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2351 / Intel XE#2890)
>      o igt@kms_hdr@invalid-hdr:
>         o shard-dg2-set2: PASS -> SKIP (Intel XE#455)
>      o igt@kms_plane@plane-position-covered@pipe-a-plane-1:
>         o shard-lnl: PASS -> DMESG-FAIL (Intel XE#324)
>      o igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
>         o shard-lnl: PASS -> DMESG-WARN (Intel XE#324) +7 other tests
>           dmesg-warn
>      o igt@kms_plane_lowres@tiling-4:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#599) +3 other tests skip
>      o igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
>         o shard-dg2-set2: PASS -> FAIL (Intel XE#361)
>      o igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +3 other tests skip
>      o igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763) +2 other tests skip
>      o igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2763 / Intel XE#455)
>      o igt@kms_pm_backlight@fade:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#870)
>      o igt@kms_pm_dc@deep-pkgc:
>         o shard-lnl: PASS -> FAIL (Intel XE#2029)
>      o igt@kms_pm_rpm@universal-planes:
>         o shard-lnl: PASS -> INCOMPLETE (Intel XE#1620 / Intel XE#2864)
>      o igt@kms_pm_rpm@universal-planes@plane-32:
>         o shard-lnl: PASS -> DMESG-FAIL (Intel XE#1620)
>      o igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +6 other tests skip
>      o igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2893) +1 other test skip
>      o igt@kms_psr2_su@page_flip-p010:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122)
>      o igt@kms_psr@fbc-pr-cursor-plane-move:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +11
>           other tests skip
>      o igt@kms_psr@fbc-psr2-cursor-plane-onoff:
>         o shard-lnl: PASS -> FAIL (Intel XE#2948) +7 other tests fail
>      o igt@kms_psr@pr-cursor-plane-onoff:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +1 other test skip
>      o igt@kms_rotation_crc@primary-rotation-180:
>         o shard-lnl: PASS -> DMESG-WARN (Intel XE#2055)
>      o igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1127)
>      o igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1437)
>      o igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1127)
>      o igt@kms_rotation_crc@sprite-rotation-270:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#327) +3 other tests skip
>      o igt@kms_vrr@flip-basic:
>         o shard-lnl: PASS -> FAIL (Intel XE#2443) +1 other test fail
>      o igt@kms_vrr@flipline:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +16 other tests skip
>      o igt@kms_vrr@max-min:
>         o shard-lnl: NOTRUN -> FAIL (Intel XE#2443) +1 other test fail
>      o igt@kms_writeback@writeback-fb-id:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756) +1 other test skip
>      o igt@sriov_basic@enable-vfs-autoprobe-off:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1091 / Intel XE#2849)
>      o igt@xe_compute_preempt@compute-preempt-many:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) +1
>           other test skip
>      o igt@xe_copy_basic@mem-set-linear-0xfffe:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1126) +1 other test skip
>      o igt@xe_eudebug@basic-connect:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip
>      o igt@xe_eudebug@basic-vm-access-parameters:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +8 other tests skip
>      o igt@xe_evict@evict-cm-threads-small-multi-vm:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#688) +1 other test skip
>      o igt@xe_exec_basic@multigpu-no-exec-basic:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +1 other test skip
>      o igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +24 other tests skip
>      o igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2360)
>      o igt@xe_exec_reset@cm-close-execqueues-close-fd:
>         o shard-lnl: PASS -> FAIL (Intel XE#1081)
>         o shard-dg2-set2: PASS -> FAIL (Intel XE#1081)
>      o igt@xe_exec_sip@invalidinstr-disabled:
>         o shard-dg2-set2: PASS -> SKIP (Intel XE#1130) +7 other tests skip
>      o igt@xe_exec_threads@threads-cm-userptr-invalidate:
>         o shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1169 / Intel XE#1195 /
>           Intel XE#1356)
>      o igt@xe_fault_injection@inject-fault-probe:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2931)
>      o igt@xe_gt_freq@freq_suspend:
>         o shard-dg2-set2: PASS -> ABORT (Intel XE#2625)
>      o igt@xe_huc_copy@huc_copy:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#255)
>      o igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2229)
>      o igt@xe_media_fill@media-fill:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#560)
>      o igt@xe_module_load@force-load:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#378)
>      o igt@xe_oa@mmio-triggered-reports:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541) +5 other tests skip
>      o igt@xe_pat@pat-index-xelp:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1130) +2 other tests skip
>      o igt@xe_pat@pat-index-xelpg:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#979)
>      o igt@xe_pm@s3-d3cold-basic-exec:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366)
>      o igt@xe_pm@s4-basic:
>         o shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607)
>      o igt@xe_pm@s4-multiple-execs:
>         o shard-dg2-set2: PASS -> ABORT (Intel XE#1358 / Intel XE#1794)
>      o igt@xe_pm_residency@toggle-gt-c6:
>         o shard-lnl: PASS -> FAIL (Intel XE#958)
>      o igt@xe_query@multigpu-query-engines:
>         o shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) +4 other tests skip
>      o igt@xe_query@multigpu-query-mem-usage:
>         o shard-lnl: NOTRUN -> SKIP (Intel XE#944) +1 other test skip
> 
>     Possible fixes
> 
>      o igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs:
>         o shard-lnl: INCOMPLETE -> PASS
>      o igt@kms_atomic_transition@modeset-transition-nonblocking:
>         o shard-lnl: FAIL (Intel XE#1701) -> PASS +1 other test pass
>      o igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
>         o shard-dg2-set2: FAIL (Intel XE#1426) -> PASS +1 other test pass
>      o igt@kms_big_fb@x-tiled-16bpp-rotate-0:
>         o {shard-bmg}: SKIP (Intel XE#2231) -> PASS +2 other tests pass
>      o igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>         o {shard-bmg}: SKIP (Intel XE#2231 / Intel XE#2890) -> PASS +1 other
>           test pass
>      o igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> PASS +7 other tests pass
>      o igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
>         o shard-dg2-set2: SKIP (Intel XE#2351 / Intel XE#2890) -> PASS +2
>           other tests pass
>      o igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>         o shard-lnl: FAIL (Intel XE#1475) -> PASS
>      o igt@kms_display_modes@extended-mode-basic:
>         o {shard-bmg}: DMESG-WARN (Intel XE#877) -> PASS +3 other tests pass
>      o igt@kms_feature_discovery@display-1x:
>         o {shard-bmg}: SKIP -> PASS +15 other tests pass
>      o igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
>         o shard-dg2-set2: FAIL (Intel XE#301) -> PASS +5 other tests pass
>      o igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
>         o {shard-bmg}: FAIL (Intel XE#301) -> PASS +1 other test pass
>      o igt@kms_flip@2x-flip-vs-panning-vs-hang:
>         o {shard-bmg}: SKIP (Intel XE#3007) -> PASS +2 other tests pass
>      o igt@kms_flip@plain-flip-ts-check@c-edp1:
>         o shard-lnl: FAIL (Intel XE#886) -> PASS +3 other tests pass
>      o igt@kms_lease@lease-uevent:
>         o shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> PASS +13 other
>           tests pass
>      o igt@kms_plane@plane-panning-bottom-right-suspend:
>         o shard-dg2-set2: ABORT (Intel XE#1035 / Intel XE#2625) -> PASS +1
>           other test pass
>      o igt@kms_plane@plane-position-covered@pipe-b-plane-4:
>         o shard-lnl: DMESG-WARN (Intel XE#324) -> PASS +3 other tests pass
>      o igt@kms_plane@plane-position-hole:
>         o shard-lnl: DMESG-FAIL (Intel XE#324) -> PASS +1 other test pass
>      o igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
>         o shard-dg2-set2: FAIL (Intel XE#361) -> PASS
>      o igt@kms_pm_dc@dc5-dpms:
>         o shard-lnl: FAIL (Intel XE#718) -> PASS
>      o igt@kms_pm_dc@dc6-psr:
>         o shard-lnl: FAIL (Intel XE#1430) -> PASS
>      o igt@kms_pm_rpm@dpms-mode-unset-lpsp:
>         o shard-lnl: DMESG-FAIL (Intel XE#1620) -> PASS
>      o igt@kms_pm_rpm@legacy-planes:
>         o shard-lnl: INCOMPLETE (Intel XE#1620 / Intel XE#2864) -> PASS
>      o igt@kms_pm_rpm@legacy-planes@plane-41:
>         o shard-lnl: DMESG-WARN (Intel XE#1620) -> PASS
>      o igt@kms_pm_rpm@legacy-planes@plane-50:
>         o shard-lnl: FAIL -> PASS +2 other tests pass
>      o igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
>         o shard-lnl: FAIL (Intel XE#1649) -> PASS +1 other test pass
>      o igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
>         o shard-lnl: FAIL (Intel XE#899) -> PASS +3 other tests pass
>      o igt@kms_vrr@flipline:
>         o shard-lnl: FAIL (Intel XE#2443) -> PASS +3 other tests pass
>      o igt@xe_evict@evict-beng-threads-large:
>         o {shard-bmg}: TIMEOUT (Intel XE#1473) -> PASS
>      o igt@xe_evict@evict-mixed-many-threads-small:
>         o shard-dg2-set2: TIMEOUT (Intel XE#1473) -> PASS
>      o igt@xe_evict@evict-mixed-threads-large:
>         o shard-dg2-set2: FAIL (Intel XE#1000) -> PASS
>      o igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> PASS +27 other tests pass
>      o igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race:
>         o shard-lnl: FAIL (Intel XE#2754) -> PASS
>      o igt@xe_exec_reset@close-execqueues-close-fd:
>         o {shard-bmg}: DMESG-WARN -> PASS
>      o igt@xe_exec_reset@cm-close-fd:
>         o shard-dg2-set2: FAIL -> PASS
>      o igt@xe_exec_reset@parallel-gt-reset:
>         o shard-dg2-set2: TIMEOUT (Intel XE#2105) -> PASS
>      o igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
>         o {shard-bmg}: INCOMPLETE (Intel XE#2998) -> PASS +1 other test pass
>      o igt@xe_live_ktest@xe_migrate:
>         o shard-lnl: SKIP (Intel XE#1192) -> PASS
>      o igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
>         o {shard-bmg}: FAIL (Intel XE#3099) -> PASS +2 other tests pass
>      o igt@xe_pm@s2idle-basic:
>         o shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) -> PASS
>      o igt@xe_pm@s2idle-basic-exec:
>         o {shard-bmg}: SKIP (Intel XE#1130) -> PASS +38 other tests pass
>      o igt@xe_pm@s4-vm-bind-unbind-all:
>         o shard-lnl: ABORT (Intel XE#1794) -> PASS
> 
>     Warnings
> 
>      o igt@kms_async_flips@async-flip-with-page-flip-events:
>         o shard-lnl: INCOMPLETE -> FAIL (Intel XE#911)
>      o igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#1124) +1
>           other test skip
>      o igt@kms_bw@linear-tiling-2-displays-2560x1440p:
>         o shard-dg2-set2: SKIP (Intel XE#367) -> SKIP (Intel XE#2423 /
>           i915#2575)
>      o igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>         o shard-dg2-set2: INCOMPLETE (Intel XE#1195) -> INCOMPLETE (Intel
>           XE#1195 / Intel XE#1727)
>      o igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#455 / Intel
>           XE#787) +1 other test skip
>      o igt@kms_chamelium_hpd@vga-hpd-fast:
>         o shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
>           XE#373) +2 other tests skip
>      o igt@kms_content_protection@atomic:
>         o shard-dg2-set2: INCOMPLETE (Intel XE#1195 / Intel XE#2715) -> FAIL
>           (Intel XE#1178)
>      o igt@kms_content_protection@atomic@pipe-a-dp-4:
>         o shard-dg2-set2: INCOMPLETE (Intel XE#1195) -> FAIL (Intel XE#1178)
>      o igt@kms_flip@flip-vs-expired-vblank-interruptible:
>         o shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> FAIL (Intel
>           XE#301)
>      o igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
>         o shard-dg2-set2: SKIP (Intel XE#455) -> SKIP (Intel XE#2351 / Intel
>           XE#2890)
>      o igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>         o shard-dg2-set2: SKIP (Intel XE#2351 / Intel XE#2890) -> SKIP (Intel
>           XE#455)
>      o igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#651) +3
>           other tests skip
>      o igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
>         o shard-dg2-set2: SKIP (Intel XE#651) -> SKIP (Intel XE#2890)
>      o igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
>         o shard-dg2-set2: SKIP (Intel XE#2351 / Intel XE#2890) -> SKIP (Intel
>           XE#651)
>      o igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#653) +2
>           other tests skip
>      o igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
>         o shard-dg2-set2: SKIP (Intel XE#2351 / Intel XE#2890) -> SKIP (Intel
>           XE#653) +1 other test skip
>      o igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
>         o shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
>           XE#2763 / Intel XE#455)
>      o igt@kms_pm_dc@dc5-psr:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#1129)
>      o igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#1489) +2
>           other tests skip
>      o igt@kms_psr@fbc-psr2-sprite-blt:
>         o shard-dg2-set2: SKIP (Intel XE#2850 / Intel XE#929) -> SKIP (Intel
>           XE#2351 / Intel XE#2890)
>      o igt@kms_psr@pr-dpms:
>         o shard-dg2-set2: SKIP (Intel XE#2351 / Intel XE#2890) -> SKIP (Intel
>           XE#2850 / Intel XE#929) +1 other test skip
>      o igt@kms_psr@psr2-cursor-render:
>         o shard-dg2-set2: SKIP (Intel XE#2890) -> SKIP (Intel XE#2850 / Intel
>           XE#929)
>      o igt@kms_scaling_modes@scaling-mode-full-aspect:
>         o shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
>           XE#455) +1 other test skip
>      o igt@kms_tiled_display@basic-test-pattern:
>         o shard-dg2-set2: FAIL (Intel XE#1729) -> SKIP (Intel XE#362)
>      o igt@xe_eudebug@multiple-sessions:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +1
>           other test skip
>      o igt@xe_eudebug@sysfs-toggle:
>         o shard-dg2-set2: SKIP (Intel XE#2905) -> SKIP (Intel XE#1130) +1
>           other test skip
>      o igt@xe_evict@evict-beng-mixed-many-threads-large:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> TIMEOUT (Intel XE#1473)
>      o igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#288) +5
>           other tests skip
>      o igt@xe_exec_fault_mode@once-invalid-userptr-fault:
>         o shard-dg2-set2: SKIP (Intel XE#288) -> SKIP (Intel XE#1130) +1
>           other test skip
>      o igt@xe_oa@invalid-oa-metric-set-id:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2541) +1
>           other test skip
>      o igt@xe_pm@s2idle-basic-exec:
>         o shard-dg2-set2: SKIP (Intel XE#1130) -> ABORT (Intel XE#1358)
>      o igt@xe_query@multigpu-query-topology-l3-bank-mask:
>         o shard-dg2-set2: SKIP (Intel XE#944) -> SKIP (Intel XE#1130)
> 
>    {name}: This element is suppressed. This means it is ignored when
>    computing
>    the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>    Above are unrelated to change in xe_exec_compute_mode test and xe_query.

It is very hard to find your answer here. Check how your email client
supports quoting to indent and mark message text you're replying to.

--
Zbigniew

> 
>     
> 
> Build changes
> 
>      o IGT: IGT_8077 -> IGTPW_11921
> 
>    IGTPW_11921: 3fe31edf1e9ef420e80c408980c13b30fb81070b @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    IGT_8077: 42f9e9702f74a4993318adea936baaa186084689 @
>    https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>    xe-2072-12e4970af1ecdeb76e94df2daf51a9c3d6b9f519:
>    12e4970af1ecdeb76e94df2daf51a9c3d6b9f519

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

* Re: [PATCH i-g-t 1/2] lib/xe/xe_query: xe_find_engine_by_class helper
  2024-10-21 12:59   ` Kamil Konieczny
@ 2024-10-22 13:55     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 17+ messages in thread
From: Zbigniew Kempczyński @ 2024-10-22 13:55 UTC (permalink / raw)
  To: Kamil Konieczny, igt-dev, Pravalika Gurram, sai.gowtham.ch,
	katarzyna.piecielska

On Mon, Oct 21, 2024 at 02:59:08PM +0200, Kamil Konieczny wrote:
> Hi Pravalika,
> On 2024-10-16 at 15:49:32 +0530, Pravalika Gurram wrote:
> > Added "xe_find_engine_by_class" helper function to query with the required
> > engine class and get the engine info.
> > 
> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Signed-off-by: Pravalika Gurram <pravalika.gurram@intel.com>
> > ---
> >  lib/xe/xe_query.c | 20 ++++++++++++++++++++
> >  lib/xe/xe_query.h |  1 +
> >  2 files changed, 21 insertions(+)
> > 
> > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> > index 8694fa3f9..0c9cff066 100644
> > --- a/lib/xe/xe_query.c
> > +++ b/lib/xe/xe_query.c
> > @@ -731,6 +731,26 @@ bool xe_has_engine_class(int fd, uint16_t engine_class)
> >  	return false;
> >  }
> >  
> > +/**
> > + * xe_find_engine_by_class
> > + * @fd: xe device fd
> > + * @engine_class: engine class
> > + *
> > + * Returns engine info of xe device @fd and @engine_class otherwise NULL.
> > + */
> > +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class)
> > +{
> > +	struct xe_device *xe_dev;
> > +
> > +	xe_dev = find_in_cache(fd);
> > +	igt_assert(xe_dev);
> 
> imho here just 'if (!xe_dev) return NULL;'
> 
> Regards,
> Kamil

Assert is fine here. Sth really wrong will happen if previously there
will be no fd xe_dev data in the cache.

--
Zbigniew

> 
> > +
> > +	for (int i = 0; i < xe_dev->engines->num_engines; i++)
> > +		if (xe_dev->engines->engines[i].instance.engine_class == engine_class)
> > +			return &xe_dev->engines->engines[i];
> > +
> > +	return NULL;
> > +}
> >  /**
> >   * xe_has_media_gt:
> >   * @fd: xe device fd
> > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> > index fd1155f7f..cabb8078c 100644
> > --- a/lib/xe/xe_query.h
> > +++ b/lib/xe/xe_query.h
> > @@ -108,6 +108,7 @@ uint16_t xe_dev_id(int fd);
> >  int xe_supports_faults(int fd);
> >  const char *xe_engine_class_string(uint32_t engine_class);
> >  bool xe_has_engine_class(int fd, uint16_t engine_class);
> > +struct drm_xe_engine *xe_find_engine_by_class(int fd, uint16_t engine_class);
> >  bool xe_has_media_gt(int fd);
> >  bool xe_is_media_gt(int fd, int gt);
> >  uint16_t xe_gt_get_tile_id(int fd, int gt);
> > -- 
> > 2.34.1
> > 

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

end of thread, other threads:[~2024-10-22 13:55 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-16 10:19 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
2024-10-16 10:19 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
2024-10-16 10:36   ` Zbigniew Kempczyński
2024-10-21 12:59   ` Kamil Konieczny
2024-10-22 13:55     ` Zbigniew Kempczyński
2024-10-16 10:19 ` [PATCH i-g-t 2/2] tests/intel/xe_exec_compute_mode: Use xe_find_engine_by_class Pravalika Gurram
2024-10-16 10:37   ` Zbigniew Kempczyński
2024-10-21 15:40   ` Kamil Konieczny
2024-10-22 10:29     ` Zbigniew Kempczyński
2024-10-16 10:39 ` ✗ GitLab.Pipeline: warning for xe_find_engine_by_class helper (rev2) Patchwork
2024-10-16 11:05 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-10-16 11:11 ` ✓ CI.xeBAT: success " Patchwork
2024-10-16 23:24 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-21 10:47   ` Gurram, Pravalika
2024-10-22 10:31     ` Zbigniew Kempczyński
  -- strict thread matches above, loose matches on Subject: below --
2024-10-15 14:18 [PATCH i-g-t 0/2] xe_find_engine_by_class helper Pravalika Gurram
2024-10-15 14:18 ` [PATCH i-g-t 1/2] lib/xe/xe_query: " Pravalika Gurram
2024-10-15 15:49   ` Zbigniew Kempczyński

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