Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
@ 2024-11-13  8:51 Dominik Grzegorzek
  2024-11-13  8:51 ` [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events Dominik Grzegorzek
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Dominik Grzegorzek @ 2024-11-13  8:51 UTC (permalink / raw)
  To: igt-dev; +Cc: christoph.manszewski, Dominik Grzegorzek

Exec queue placement event has been added in logical order, due to that
there is a shift in event numbering. Sync uapi to match kernel changes.

Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 .../drm-uapi-experimental/xe_drm_eudebug.h    | 30 +++++++++++++++----
 1 file changed, 24 insertions(+), 6 deletions(-)

diff --git a/include/drm-uapi-experimental/xe_drm_eudebug.h b/include/drm-uapi-experimental/xe_drm_eudebug.h
index 13c069e00..f50051e9a 100644
--- a/include/drm-uapi-experimental/xe_drm_eudebug.h
+++ b/include/drm-uapi-experimental/xe_drm_eudebug.h
@@ -147,12 +147,13 @@ struct drm_xe_eudebug_event {
 #define DRM_XE_EUDEBUG_EVENT_OPEN		2
 #define DRM_XE_EUDEBUG_EVENT_VM			3
 #define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE		4
-#define DRM_XE_EUDEBUG_EVENT_EU_ATTENTION	5
-#define DRM_XE_EUDEBUG_EVENT_VM_BIND		6
-#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP		7
-#define DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE	8
-#define DRM_XE_EUDEBUG_EVENT_METADATA		9
-#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA 10
+#define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS 5
+#define DRM_XE_EUDEBUG_EVENT_EU_ATTENTION	6
+#define DRM_XE_EUDEBUG_EVENT_VM_BIND		7
+#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP		8
+#define DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE	9
+#define DRM_XE_EUDEBUG_EVENT_METADATA		10
+#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA 11
 
 	__u16 flags;
 #define DRM_XE_EUDEBUG_EVENT_CREATE		(1 << 0)
@@ -188,6 +189,22 @@ struct drm_xe_eudebug_event_exec_queue {
 	__u64 lrc_handle[];
 };
 
+struct drm_xe_eudebug_event_exec_queue_placements {
+	struct drm_xe_eudebug_event base;
+
+	__u64 client_handle;
+	__u64 vm_handle;
+	__u64 exec_queue_handle;
+	__u64 lrc_handle;
+	__u32 num_placements;
+	__u32 pad;
+	/**
+	 * @instances: user pointer to num_placements sized array of struct
+	 * drm_xe_engine_class_instance
+	 */
+	__u64 instances[];
+};
+
 struct drm_xe_eudebug_event_eu_attention {
 	struct drm_xe_eudebug_event base;
 
@@ -303,6 +320,7 @@ struct drm_xe_eudebug_vm_open {
 	/** @flags: flags */
 	__u64 flags;
 
+#define DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS (10ULL * NSEC_PER_SEC)
 	/** @timeout_ns: Timeout value in nanoseconds operations (fsync) */
 	__u64 timeout_ns;
 };
-- 
2.34.1


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

* [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events.
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
@ 2024-11-13  8:51 ` Dominik Grzegorzek
  2024-11-13 11:02   ` Manszewski, Christoph
  2024-11-13  8:51 ` [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements Dominik Grzegorzek
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Dominik Grzegorzek @ 2024-11-13  8:51 UTC (permalink / raw)
  To: igt-dev; +Cc: christoph.manszewski, Dominik Grzegorzek

Adds definition and support for DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS,
which is sent during exec_queue creation/discovery.

Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 lib/xe/xe_eudebug.c | 101 ++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 97 insertions(+), 4 deletions(-)

diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
index 74aa26024..c5814421b 100644
--- a/lib/xe/xe_eudebug.c
+++ b/lib/xe/xe_eudebug.c
@@ -77,6 +77,8 @@ static const char *type_to_str(unsigned int type)
 		return "vm";
 	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE:
 		return "exec_queue";
+	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS:
+		return "exec_queue_placements";
 	case DRM_XE_EUDEBUG_EVENT_EU_ATTENTION:
 		return "attention";
 	case DRM_XE_EUDEBUG_EVENT_VM_BIND:
@@ -120,6 +122,18 @@ static const char *flags_to_str(unsigned int flags)
 	return "flags unknown";
 }
 
+static const char *eu_engine_class_to_str(uint16_t engine_class)
+{
+	switch (engine_class) {
+	case DRM_XE_ENGINE_CLASS_COMPUTE:
+		return "ccs";
+	case DRM_XE_ENGINE_CLASS_RENDER:
+		return "rcs";
+	default:
+		return "unsupported class";
+	}
+}
+
 static const char *event_members_to_str(struct drm_xe_eudebug_event *e, char *buf)
 {
 	switch (e->type) {
@@ -145,6 +159,26 @@ static const char *event_members_to_str(struct drm_xe_eudebug_event *e, char *bu
 			ee->exec_queue_handle, ee->engine_class, ee->width);
 		break;
 	}
+	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
+		struct drm_xe_eudebug_event_exec_queue_placements *ee = (void *)e;
+		struct drm_xe_engine_class_instance *instances = (void *)(ee->instances);
+		int i, l;
+
+		l = sprintf(buf, "client_handle=%llu, vm_handle=%llu, "
+			    "exec_queue_handle=%llu, lrc_handle=%llu, "
+			    "num_placements=%d, gt_id=%d, mask=[",
+			    ee->client_handle, ee->vm_handle,
+			    ee->exec_queue_handle, ee->lrc_handle,
+			    ee->num_placements, instances[0].gt_id);
+
+		for (i = 0; i < ee->num_placements; i++)
+			l += sprintf(buf + l, "%s%d pad%d, ",
+				     eu_engine_class_to_str(instances[i].engine_class),
+				     instances[i].engine_instance, instances[i].pad);
+		buf[l - 2] = ']';
+
+		break;
+	}
 	case DRM_XE_EUDEBUG_EVENT_EU_ATTENTION: {
 		struct drm_xe_eudebug_event_eu_attention *ea = (void *)e;
 
@@ -423,6 +457,17 @@ static int match_fields(struct drm_xe_eudebug_event *a, void *data)
 			ret = 1;
 		break;
 	}
+	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
+		struct drm_xe_eudebug_event_exec_queue_placements *ae = (void *)a;
+		struct drm_xe_eudebug_event_exec_queue_placements *be = (void *)b;
+
+		if (ae->num_placements == be->num_placements &&
+		    memcmp(ae->instances, be->instances,
+			   sizeof(uint64_t) * ae->num_placements) == 0)
+			ret = 1;
+
+		break;
+	}
 	case DRM_XE_EUDEBUG_EVENT_VM_BIND: {
 		struct drm_xe_eudebug_event_vm_bind *ea = (void *)a;
 		struct drm_xe_eudebug_event_vm_bind *eb = (void *)b;
@@ -490,6 +535,13 @@ static int match_client_handle(struct drm_xe_eudebug_event *e, void *data)
 			return 1;
 		break;
 	}
+	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
+		struct drm_xe_eudebug_event_exec_queue_placements *ee = (void *)e;
+
+		if (ee->client_handle == h)
+			return 1;
+		break;
+	}
 	case DRM_XE_EUDEBUG_EVENT_VM_BIND: {
 		struct drm_xe_eudebug_event_vm_bind *evmb = (void *)e;
 
@@ -986,10 +1038,11 @@ xe_eudebug_event_log_match_opposite(struct xe_eudebug_event_log *l, uint32_t fil
 			if (XE_EUDEBUG_EVENT_IS_FILTERED(ev1->type, filter))
 				continue;
 
-			/* No opposite matching for binds */
+			/* No opposite matching for some events */
 			if ((ev1->type >= DRM_XE_EUDEBUG_EVENT_VM_BIND &&
 			     ev1->type <= DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE) ||
-			    ev1->type == DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA)
+			    ev1->type == DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA ||
+			    ev1->type == DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS)
 				continue;
 
 			ev2 = opposite_event_match(l, ev1, ev1);
@@ -1679,6 +1732,36 @@ static void exec_queue_event(struct xe_eudebug_client *c, uint32_t flags,
 	xe_eudebug_event_log_write(c->log, (void *)&ee);
 }
 
+static void exec_queue_placements_event(struct xe_eudebug_client *c,
+					int client_fd, uint32_t vm_id,
+					uint32_t exec_queue_handle,
+					uint16_t width, uint16_t lrc_no,
+					uint16_t num_placements,
+					struct drm_xe_engine_class_instance *eci)
+{
+	struct drm_xe_eudebug_event_exec_queue_placements *ee;
+	struct drm_xe_engine_class_instance *instances;
+	size_t sz = sizeof(*ee) + num_placements * sizeof(uint64_t);
+
+	ee = calloc(1, sz);
+	igt_assert(ee);
+
+	base_event(c, to_base(*ee), DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS,
+		   DRM_XE_EUDEBUG_EVENT_CREATE, sz);
+
+	ee->client_handle = client_fd;
+	ee->vm_handle = vm_id;
+	ee->exec_queue_handle = exec_queue_handle;
+	ee->num_placements = num_placements;
+
+	instances = (struct drm_xe_engine_class_instance *)(ee->instances);
+	for (int j = 0; j < num_placements; j++)
+		instances[j] = eci[j * width + lrc_no];
+
+	xe_eudebug_event_log_write(c->log, (void *)ee);
+	free(ee);
+}
+
 static void metadata_event(struct xe_eudebug_client *c, uint32_t flags,
 			   int client_fd, uint32_t id, uint64_t type, uint64_t len)
 {
@@ -1853,6 +1936,7 @@ void xe_eudebug_client_vm_destroy(struct xe_eudebug_client *c, int fd, uint32_t
 uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd,
 					     struct drm_xe_exec_queue_create *create)
 {
+	struct drm_xe_engine_class_instance *instances;
 	struct drm_xe_ext_set_property *ext;
 	bool send = false;
 	uint16_t class;
@@ -1860,7 +1944,8 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
 	igt_assert(c);
 	igt_assert(create);
 
-	class = ((struct drm_xe_engine_class_instance *)(create->instances))[0].engine_class;
+	instances = (struct drm_xe_engine_class_instance *)(create->instances);
+	class = instances[0].engine_class;
 
 	igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, create), 0);
 
@@ -1871,10 +1956,18 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
 		    ext->value & DRM_XE_EXEC_QUEUE_EUDEBUG_FLAG_ENABLE)
 			send = true;
 
-	if (send)
+	if (send) {
 		exec_queue_event(c, DRM_XE_EUDEBUG_EVENT_CREATE, fd, create->vm_id,
 				 create->exec_queue_id, class, create->width);
 
+		for (int i = 0; i < create->width; i++) {
+			exec_queue_placements_event(c, fd, create->vm_id, create->exec_queue_id,
+						    create->width, i,
+						    create->num_placements,
+						    instances);
+		}
+	}
+
 	return create->exec_queue_id;
 }
 
-- 
2.34.1


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

* [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
  2024-11-13  8:51 ` [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events Dominik Grzegorzek
@ 2024-11-13  8:51 ` Dominik Grzegorzek
  2024-11-13 11:02   ` Manszewski, Christoph
  2024-11-13 14:34   ` Zbigniew Kempczyński
  2024-11-13 10:26 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 10+ messages in thread
From: Dominik Grzegorzek @ 2024-11-13  8:51 UTC (permalink / raw)
  To: igt-dev; +Cc: christoph.manszewski, Dominik Grzegorzek

Add test which validates exec_queue_placement uAPI. It requires
ccs_mode, which is present only on platforms with multiple ccs engines.

Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
 tests/intel/xe_eudebug.c | 123 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 122 insertions(+), 1 deletion(-)

diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
index 8d45d59f3..39db16457 100644
--- a/tests/intel/xe_eudebug.c
+++ b/tests/intel/xe_eudebug.c
@@ -20,6 +20,7 @@
 #include <sys/prctl.h>
 
 #include "igt.h"
+#include "igt_sysfs.h"
 #include "intel_pat.h"
 #include "lib/igt_syncobj.h"
 #include "xe/xe_eudebug.h"
@@ -61,6 +62,7 @@ static void test_sysfs_toggle(int fd)
 #define VM_METADATA		(1 << 5)
 #define VM_BIND_METADATA	(1 << 6)
 #define VM_BIND_OP_MAP_USERPTR	(1 << 7)
+#define EXEC_QUEUES_PLACEMENTS	(1 << 8)
 #define TEST_DISCOVERY		(1 << 31)
 
 #define PAGE_SIZE SZ_4K
@@ -420,6 +422,80 @@ static void vm_bind_client(int fd, struct xe_eudebug_client *c)
 	xe_eudebug_client_vm_destroy(c, fd, vm);
 }
 
+static void placements_client(int fd, struct xe_eudebug_client *c)
+{
+	struct drm_xe_ext_set_property eq_ext = {
+		.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+		.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_EUDEBUG,
+		.value = DRM_XE_EXEC_QUEUE_EUDEBUG_FLAG_ENABLE,
+	};
+	struct drm_xe_exec_queue_create create = {
+		.extensions = to_user_pointer(&eq_ext),
+	};
+	struct drm_xe_engine_class_instance *eci;
+	bool at_least_4_ccs = false;
+	uint32_t vm;
+	int i, gt;
+
+	xe_for_each_gt(fd, gt) {
+		int count = 0;
+
+		xe_for_each_engine(fd, eci)
+			if (eci->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE &&
+			    eci->gt_id == gt)
+				count++;
+
+		if (count < 4)
+			continue;
+
+		at_least_4_ccs = true;
+
+		vm = xe_eudebug_client_vm_create(c, fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
+
+		eci = calloc(count * count - 2, sizeof(*eci));
+
+		for (i = 0; i < count * count - 2; i++) {
+			eci[i].engine_class = DRM_XE_ENGINE_CLASS_COMPUTE;
+			eci[i].gt_id = gt;
+		}
+
+		for (i = 0; i < count; i++)
+			eci[i].engine_instance = i;
+
+		create.instances = to_user_pointer(eci);
+		create.vm_id = vm;
+		create.width = 1;
+		create.num_placements = count;
+		xe_eudebug_client_exec_queue_create(c, fd, &create);
+		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
+
+		create.width = count;
+		create.num_placements = 1;
+		xe_eudebug_client_exec_queue_create(c, fd, &create);
+		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
+
+		// every other instance (logical_mask ~ 1010, 0101)
+		create.width = 2;
+		create.num_placements = count/2;
+		xe_eudebug_client_exec_queue_create(c, fd, &create);
+		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
+
+		// logically contigous placement (logical_mask ~ 1100, 0110, 0011)
+		for (i = 0; i < count * count - 2; i++)
+			eci[i].engine_instance = i / 2 + i % 2;
+
+		create.width = 2;
+		create.num_placements = count - 1;
+		xe_eudebug_client_exec_queue_create(c, fd, &create);
+		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
+
+		xe_eudebug_client_vm_destroy(c, fd, vm);
+		free(eci);
+	}
+
+	igt_require(at_least_4_ccs);
+}
+
 static void run_basic_client(struct xe_eudebug_client *c)
 {
 	int fd, i;
@@ -470,6 +546,9 @@ static void run_basic_client(struct xe_eudebug_client *c)
 		xe_eudebug_client_vm_destroy(c, fd, vm);
 	}
 
+	if (c->flags & EXEC_QUEUES_PLACEMENTS)
+		placements_client(fd, c);
+
 	if (c->flags & VM_BIND || c->flags & VM_BIND_METADATA)
 		basic_vm_bind_client(fd, c);
 
@@ -908,6 +987,11 @@ static void test_read_event(int fd)
  *	Attach the debugger to a process that performs bind, bind array, rebind,
  *	partial unbind, unbind and unbind all operations.
  *
+ * SUBTEST: exec-queue-placements
+ * Description:
+ *	Create compute exec_queues with various placements and compare them against
+ *	event sent to the debugger.
+ *
  * SUBTEST: multigpu-basic-client
  * Description:
  *	Attach the debugger to process which opens and closes xe drm client on all Xe devices.
@@ -2644,14 +2728,40 @@ static void test_basic_exec_queues_enable(int fd)
 	xe_vm_destroy(fd, vm_non_lr);
 }
 
+static void ccs_mode_all_engines(int num_gt)
+{
+	int fd, gt, gt_fd, num_slices, ccs_mode;
+	int num_gts_with_ccs_mode = 0;
+
+	for (gt = 0; gt < num_gt; gt++) {
+		fd = drm_open_driver(DRIVER_XE);
+		gt_fd = xe_sysfs_gt_open(fd, gt);
+		close(fd);
+
+		if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0)
+			continue;
+
+		num_gts_with_ccs_mode++;
+
+		igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0);
+		igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0);
+		igt_assert(num_slices == ccs_mode);
+		close(gt_fd);
+	}
+
+	errno = 0;
+	igt_require(num_gts_with_ccs_mode > 0);
+}
+
 igt_main
 {
 	bool was_enabled;
 	bool *multigpu_was_enabled;
-	int fd, gpu_count;
+	int fd, gpu_count, gt_count;
 
 	igt_fixture {
 		fd = drm_open_driver(DRIVER_XE);
+		gt_count = xe_number_gt(fd);
 		was_enabled = xe_eudebug_enable(fd, true);
 	}
 
@@ -2745,6 +2855,17 @@ igt_main
 	igt_subtest("discovery-empty-clients")
 		test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16);
 
+	igt_subtest_group {
+		igt_fixture {
+			drm_close_driver(fd);
+			ccs_mode_all_engines(gt_count);
+			fd = drm_open_driver(DRIVER_XE);
+		}
+
+		igt_subtest("exec-queue-placements")
+			test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true);
+	}
+
 	igt_fixture {
 		xe_eudebug_enable(fd, was_enabled);
 		drm_close_driver(fd);
-- 
2.34.1


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

* ✓ CI.xeBAT: success for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
  2024-11-13  8:51 ` [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events Dominik Grzegorzek
  2024-11-13  8:51 ` [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements Dominik Grzegorzek
@ 2024-11-13 10:26 ` Patchwork
  2024-11-13 10:29 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-13 10:26 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
URL   : https://patchwork.freedesktop.org/series/141273/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8105_BAT -> XEIGTPW_12085_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8105 -> IGTPW_12085
  * Linux: xe-2218-26f5fe99791def93b32e27e79e71dbd0666c117b -> xe-2219-cf3872e462498611b17e5f80f0b1d0900580da20

  IGTPW_12085: 12085
  IGT_8105: 8105
  xe-2218-26f5fe99791def93b32e27e79e71dbd0666c117b: 26f5fe99791def93b32e27e79e71dbd0666c117b
  xe-2219-cf3872e462498611b17e5f80f0b1d0900580da20: cf3872e462498611b17e5f80f0b1d0900580da20

== Logs ==

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

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

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

* ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
                   ` (2 preceding siblings ...)
  2024-11-13 10:26 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Patchwork
@ 2024-11-13 10:29 ` Patchwork
  2024-11-13 11:00 ` [PATCH i-g-t 1/3] " Manszewski, Christoph
  2024-11-13 12:52 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/3] " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-13 10:29 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
URL   : https://patchwork.freedesktop.org/series/141273/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8105 -> IGTPW_12085
====================================================

Summary
-------

  **FAILURE**

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

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

  Additional (1): fi-blb-e6850 
  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@vma:
    - bat-jsl-3:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-jsl-3/igt@i915_selftest@live@vma.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-jsl-3/igt@i915_selftest@live@vma.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rpm@module-reload:
    - fi-blb-e6850:       NOTRUN -> [SKIP][3] +33 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][4] -> [ABORT][5] ([i915#12061]) +1 other test abort
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-mtlp-8/igt@i915_selftest@live.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-mtlp-8/igt@i915_selftest@live.html
    - bat-jsl-3:          [PASS][6] -> [DMESG-WARN][7] ([i915#12668])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-jsl-3/igt@i915_selftest@live.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-jsl-3/igt@i915_selftest@live.html

  
#### Possible fixes ####

  * igt@fbdev@eof:
    - bat-arls-5:         [SKIP][8] ([i915#11191] / [i915#11345]) -> [PASS][9] +3 other tests pass
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@fbdev@eof.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@fbdev@eof.html

  * igt@fbdev@info:
    - bat-arls-5:         [SKIP][10] ([i915#1849]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@fbdev@info.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@fbdev@info.html

  * igt@i915_selftest@live:
    - bat-arlh-3:         [ABORT][12] ([i915#10341]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arlh-3/igt@i915_selftest@live.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arlh-3/igt@i915_selftest@live.html

  * igt@i915_selftest@live@execlists:
    - {bat-arls-6}:       [DMESG-WARN][14] ([i915#10341]) -> [PASS][15] +5 other tests pass
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-6/igt@i915_selftest@live@execlists.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-6/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gem_contexts:
    - {bat-arls-6}:       [DMESG-WARN][16] ([i915#12727]) -> [PASS][17] +32 other tests pass
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-6/igt@i915_selftest@live@gem_contexts.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-6/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@gt_heartbeat:
    - bat-arls-5:         [DMESG-WARN][18] ([i915#12727]) -> [PASS][19] +33 other tests pass
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@i915_selftest@live@gt_heartbeat.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gt_mocs:
    - {bat-arls-6}:       [DMESG-WARN][20] ([i915#10341] / [i915#12727]) -> [PASS][21] +1 other test pass
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-6/igt@i915_selftest@live@gt_mocs.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-6/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@sanitycheck:
    - bat-arls-5:         [DMESG-WARN][22] ([i915#10341]) -> [PASS][23] +5 other tests pass
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@i915_selftest@live@sanitycheck.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@i915_selftest@live@sanitycheck.html

  * igt@i915_selftest@live@workarounds:
    - bat-arlh-3:         [ABORT][24] ([i915#12061]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arlh-3/igt@i915_selftest@live@workarounds.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arlh-3/igt@i915_selftest@live@workarounds.html
    - bat-arls-5:         [DMESG-WARN][26] ([i915#10341] / [i915#12727]) -> [PASS][27] +1 other test pass
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@i915_selftest@live@workarounds.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-arls-5:         [SKIP][28] ([i915#3637]) -> [PASS][29] +3 other tests pass
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-arls-5:         [SKIP][30] ([i915#4342] / [i915#5354]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-arls-5:         [SKIP][32] ([i915#12732]) -> [PASS][33] +13 other tests pass
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-arls-5:         [SKIP][34] ([i915#12732] / [i915#3708]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@prime_vgem@basic-fence-flip.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@prime_vgem@basic-fence-flip.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-arls-5:         [SKIP][36] ([i915#12732]) -> [SKIP][37] ([i915#10202]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-arls-5:         [SKIP][38] ([i915#12732]) -> [SKIP][39] ([i915#9886])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8105/bat-arls-5/igt@kms_dsc@dsc-basic.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12085/bat-arls-5/igt@kms_dsc@dsc-basic.html

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

  [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
  [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
  [i915#11191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11191
  [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12668]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12668
  [i915#12727]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12727
  [i915#12732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12732
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8105 -> IGTPW_12085
  * Linux: CI_DRM_15686 -> CI_DRM_15687

  CI-20190529: 20190529
  CI_DRM_15686: 26f5fe99791def93b32e27e79e71dbd0666c117b @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_15687: cf3872e462498611b17e5f80f0b1d0900580da20 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_12085: 12085
  IGT_8105: 8105

== Logs ==

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

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

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

* Re: [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
                   ` (3 preceding siblings ...)
  2024-11-13 10:29 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-11-13 11:00 ` Manszewski, Christoph
  2024-11-13 12:52 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/3] " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Manszewski, Christoph @ 2024-11-13 11:00 UTC (permalink / raw)
  To: Dominik Grzegorzek, igt-dev

Hi Dominik,

On 13.11.2024 09:51, Dominik Grzegorzek wrote:
> Exec queue placement event has been added in logical order, due to that
> there is a shift in event numbering. Sync uapi to match kernel changes.
> 
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>

Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>

> ---
>   .../drm-uapi-experimental/xe_drm_eudebug.h    | 30 +++++++++++++++----
>   1 file changed, 24 insertions(+), 6 deletions(-)
> 
> diff --git a/include/drm-uapi-experimental/xe_drm_eudebug.h b/include/drm-uapi-experimental/xe_drm_eudebug.h
> index 13c069e00..f50051e9a 100644
> --- a/include/drm-uapi-experimental/xe_drm_eudebug.h
> +++ b/include/drm-uapi-experimental/xe_drm_eudebug.h
> @@ -147,12 +147,13 @@ struct drm_xe_eudebug_event {
>   #define DRM_XE_EUDEBUG_EVENT_OPEN		2
>   #define DRM_XE_EUDEBUG_EVENT_VM			3
>   #define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE		4
> -#define DRM_XE_EUDEBUG_EVENT_EU_ATTENTION	5
> -#define DRM_XE_EUDEBUG_EVENT_VM_BIND		6
> -#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP		7
> -#define DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE	8
> -#define DRM_XE_EUDEBUG_EVENT_METADATA		9
> -#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA 10
> +#define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS 5
> +#define DRM_XE_EUDEBUG_EVENT_EU_ATTENTION	6
> +#define DRM_XE_EUDEBUG_EVENT_VM_BIND		7
> +#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP		8
> +#define DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE	9
> +#define DRM_XE_EUDEBUG_EVENT_METADATA		10
> +#define DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA 11
>   
>   	__u16 flags;
>   #define DRM_XE_EUDEBUG_EVENT_CREATE		(1 << 0)
> @@ -188,6 +189,22 @@ struct drm_xe_eudebug_event_exec_queue {
>   	__u64 lrc_handle[];
>   };
>   
> +struct drm_xe_eudebug_event_exec_queue_placements {
> +	struct drm_xe_eudebug_event base;
> +
> +	__u64 client_handle;
> +	__u64 vm_handle;
> +	__u64 exec_queue_handle;
> +	__u64 lrc_handle;
> +	__u32 num_placements;
> +	__u32 pad;
> +	/**
> +	 * @instances: user pointer to num_placements sized array of struct
> +	 * drm_xe_engine_class_instance
> +	 */
> +	__u64 instances[];
> +};
> +
>   struct drm_xe_eudebug_event_eu_attention {
>   	struct drm_xe_eudebug_event base;
>   
> @@ -303,6 +320,7 @@ struct drm_xe_eudebug_vm_open {
>   	/** @flags: flags */
>   	__u64 flags;
>   
> +#define DRM_XE_EUDEBUG_VM_SYNC_MAX_TIMEOUT_NSECS (10ULL * NSEC_PER_SEC)
>   	/** @timeout_ns: Timeout value in nanoseconds operations (fsync) */
>   	__u64 timeout_ns;
>   };

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

* Re: [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events.
  2024-11-13  8:51 ` [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events Dominik Grzegorzek
@ 2024-11-13 11:02   ` Manszewski, Christoph
  0 siblings, 0 replies; 10+ messages in thread
From: Manszewski, Christoph @ 2024-11-13 11:02 UTC (permalink / raw)
  To: Dominik Grzegorzek, igt-dev

On 13.11.2024 09:51, Dominik Grzegorzek wrote:
> Adds definition and support for DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS,
> which is sent during exec_queue creation/discovery.
> 
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>

Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>

> ---
>   lib/xe/xe_eudebug.c | 101 ++++++++++++++++++++++++++++++++++++++++++--
>   1 file changed, 97 insertions(+), 4 deletions(-)
> 
> diff --git a/lib/xe/xe_eudebug.c b/lib/xe/xe_eudebug.c
> index 74aa26024..c5814421b 100644
> --- a/lib/xe/xe_eudebug.c
> +++ b/lib/xe/xe_eudebug.c
> @@ -77,6 +77,8 @@ static const char *type_to_str(unsigned int type)
>   		return "vm";
>   	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE:
>   		return "exec_queue";
> +	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS:
> +		return "exec_queue_placements";
>   	case DRM_XE_EUDEBUG_EVENT_EU_ATTENTION:
>   		return "attention";
>   	case DRM_XE_EUDEBUG_EVENT_VM_BIND:
> @@ -120,6 +122,18 @@ static const char *flags_to_str(unsigned int flags)
>   	return "flags unknown";
>   }
>   
> +static const char *eu_engine_class_to_str(uint16_t engine_class)
> +{
> +	switch (engine_class) {
> +	case DRM_XE_ENGINE_CLASS_COMPUTE:
> +		return "ccs";
> +	case DRM_XE_ENGINE_CLASS_RENDER:
> +		return "rcs";
> +	default:
> +		return "unsupported class";
> +	}
> +}
> +
>   static const char *event_members_to_str(struct drm_xe_eudebug_event *e, char *buf)
>   {
>   	switch (e->type) {
> @@ -145,6 +159,26 @@ static const char *event_members_to_str(struct drm_xe_eudebug_event *e, char *bu
>   			ee->exec_queue_handle, ee->engine_class, ee->width);
>   		break;
>   	}
> +	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
> +		struct drm_xe_eudebug_event_exec_queue_placements *ee = (void *)e;
> +		struct drm_xe_engine_class_instance *instances = (void *)(ee->instances);
> +		int i, l;
> +
> +		l = sprintf(buf, "client_handle=%llu, vm_handle=%llu, "
> +			    "exec_queue_handle=%llu, lrc_handle=%llu, "
> +			    "num_placements=%d, gt_id=%d, mask=[",
> +			    ee->client_handle, ee->vm_handle,
> +			    ee->exec_queue_handle, ee->lrc_handle,
> +			    ee->num_placements, instances[0].gt_id);
> +
> +		for (i = 0; i < ee->num_placements; i++)
> +			l += sprintf(buf + l, "%s%d pad%d, ",
> +				     eu_engine_class_to_str(instances[i].engine_class),
> +				     instances[i].engine_instance, instances[i].pad);
> +		buf[l - 2] = ']';
> +
> +		break;
> +	}
>   	case DRM_XE_EUDEBUG_EVENT_EU_ATTENTION: {
>   		struct drm_xe_eudebug_event_eu_attention *ea = (void *)e;
>   
> @@ -423,6 +457,17 @@ static int match_fields(struct drm_xe_eudebug_event *a, void *data)
>   			ret = 1;
>   		break;
>   	}
> +	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
> +		struct drm_xe_eudebug_event_exec_queue_placements *ae = (void *)a;
> +		struct drm_xe_eudebug_event_exec_queue_placements *be = (void *)b;
> +
> +		if (ae->num_placements == be->num_placements &&
> +		    memcmp(ae->instances, be->instances,
> +			   sizeof(uint64_t) * ae->num_placements) == 0)
> +			ret = 1;
> +
> +		break;
> +	}
>   	case DRM_XE_EUDEBUG_EVENT_VM_BIND: {
>   		struct drm_xe_eudebug_event_vm_bind *ea = (void *)a;
>   		struct drm_xe_eudebug_event_vm_bind *eb = (void *)b;
> @@ -490,6 +535,13 @@ static int match_client_handle(struct drm_xe_eudebug_event *e, void *data)
>   			return 1;
>   		break;
>   	}
> +	case DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS: {
> +		struct drm_xe_eudebug_event_exec_queue_placements *ee = (void *)e;
> +
> +		if (ee->client_handle == h)
> +			return 1;
> +		break;
> +	}
>   	case DRM_XE_EUDEBUG_EVENT_VM_BIND: {
>   		struct drm_xe_eudebug_event_vm_bind *evmb = (void *)e;
>   
> @@ -986,10 +1038,11 @@ xe_eudebug_event_log_match_opposite(struct xe_eudebug_event_log *l, uint32_t fil
>   			if (XE_EUDEBUG_EVENT_IS_FILTERED(ev1->type, filter))
>   				continue;
>   
> -			/* No opposite matching for binds */
> +			/* No opposite matching for some events */
>   			if ((ev1->type >= DRM_XE_EUDEBUG_EVENT_VM_BIND &&
>   			     ev1->type <= DRM_XE_EUDEBUG_EVENT_VM_BIND_UFENCE) ||
> -			    ev1->type == DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA)
> +			    ev1->type == DRM_XE_EUDEBUG_EVENT_VM_BIND_OP_METADATA ||
> +			    ev1->type == DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS)
>   				continue;
>   
>   			ev2 = opposite_event_match(l, ev1, ev1);
> @@ -1679,6 +1732,36 @@ static void exec_queue_event(struct xe_eudebug_client *c, uint32_t flags,
>   	xe_eudebug_event_log_write(c->log, (void *)&ee);
>   }
>   
> +static void exec_queue_placements_event(struct xe_eudebug_client *c,
> +					int client_fd, uint32_t vm_id,
> +					uint32_t exec_queue_handle,
> +					uint16_t width, uint16_t lrc_no,
> +					uint16_t num_placements,
> +					struct drm_xe_engine_class_instance *eci)
> +{
> +	struct drm_xe_eudebug_event_exec_queue_placements *ee;
> +	struct drm_xe_engine_class_instance *instances;
> +	size_t sz = sizeof(*ee) + num_placements * sizeof(uint64_t);
> +
> +	ee = calloc(1, sz);
> +	igt_assert(ee);
> +
> +	base_event(c, to_base(*ee), DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS,
> +		   DRM_XE_EUDEBUG_EVENT_CREATE, sz);
> +
> +	ee->client_handle = client_fd;
> +	ee->vm_handle = vm_id;
> +	ee->exec_queue_handle = exec_queue_handle;
> +	ee->num_placements = num_placements;
> +
> +	instances = (struct drm_xe_engine_class_instance *)(ee->instances);
> +	for (int j = 0; j < num_placements; j++)
> +		instances[j] = eci[j * width + lrc_no];
> +
> +	xe_eudebug_event_log_write(c->log, (void *)ee);
> +	free(ee);
> +}
> +
>   static void metadata_event(struct xe_eudebug_client *c, uint32_t flags,
>   			   int client_fd, uint32_t id, uint64_t type, uint64_t len)
>   {
> @@ -1853,6 +1936,7 @@ void xe_eudebug_client_vm_destroy(struct xe_eudebug_client *c, int fd, uint32_t
>   uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd,
>   					     struct drm_xe_exec_queue_create *create)
>   {
> +	struct drm_xe_engine_class_instance *instances;
>   	struct drm_xe_ext_set_property *ext;
>   	bool send = false;
>   	uint16_t class;
> @@ -1860,7 +1944,8 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
>   	igt_assert(c);
>   	igt_assert(create);
>   
> -	class = ((struct drm_xe_engine_class_instance *)(create->instances))[0].engine_class;
> +	instances = (struct drm_xe_engine_class_instance *)(create->instances);
> +	class = instances[0].engine_class;
>   
>   	igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, create), 0);
>   
> @@ -1871,10 +1956,18 @@ uint32_t xe_eudebug_client_exec_queue_create(struct xe_eudebug_client *c, int fd
>   		    ext->value & DRM_XE_EXEC_QUEUE_EUDEBUG_FLAG_ENABLE)
>   			send = true;
>   
> -	if (send)
> +	if (send) {
>   		exec_queue_event(c, DRM_XE_EUDEBUG_EVENT_CREATE, fd, create->vm_id,
>   				 create->exec_queue_id, class, create->width);
>   
> +		for (int i = 0; i < create->width; i++) {
> +			exec_queue_placements_event(c, fd, create->vm_id, create->exec_queue_id,
> +						    create->width, i,
> +						    create->num_placements,
> +						    instances);
> +		}
> +	}
> +
>   	return create->exec_queue_id;
>   }
>   

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

* Re: [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements
  2024-11-13  8:51 ` [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements Dominik Grzegorzek
@ 2024-11-13 11:02   ` Manszewski, Christoph
  2024-11-13 14:34   ` Zbigniew Kempczyński
  1 sibling, 0 replies; 10+ messages in thread
From: Manszewski, Christoph @ 2024-11-13 11:02 UTC (permalink / raw)
  To: Dominik Grzegorzek, igt-dev

On 13.11.2024 09:51, Dominik Grzegorzek wrote:
> Add test which validates exec_queue_placement uAPI. It requires
> ccs_mode, which is present only on platforms with multiple ccs engines.
> 
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>

Acked-by: Christoph Manszewski <christoph.manszewski@intel.com>

> ---
>   tests/intel/xe_eudebug.c | 123 ++++++++++++++++++++++++++++++++++++++-
>   1 file changed, 122 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
> index 8d45d59f3..39db16457 100644
> --- a/tests/intel/xe_eudebug.c
> +++ b/tests/intel/xe_eudebug.c
> @@ -20,6 +20,7 @@
>   #include <sys/prctl.h>
>   
>   #include "igt.h"
> +#include "igt_sysfs.h"
>   #include "intel_pat.h"
>   #include "lib/igt_syncobj.h"
>   #include "xe/xe_eudebug.h"
> @@ -61,6 +62,7 @@ static void test_sysfs_toggle(int fd)
>   #define VM_METADATA		(1 << 5)
>   #define VM_BIND_METADATA	(1 << 6)
>   #define VM_BIND_OP_MAP_USERPTR	(1 << 7)
> +#define EXEC_QUEUES_PLACEMENTS	(1 << 8)
>   #define TEST_DISCOVERY		(1 << 31)
>   
>   #define PAGE_SIZE SZ_4K
> @@ -420,6 +422,80 @@ static void vm_bind_client(int fd, struct xe_eudebug_client *c)
>   	xe_eudebug_client_vm_destroy(c, fd, vm);
>   }
>   
> +static void placements_client(int fd, struct xe_eudebug_client *c)
> +{
> +	struct drm_xe_ext_set_property eq_ext = {
> +		.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> +		.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_EUDEBUG,
> +		.value = DRM_XE_EXEC_QUEUE_EUDEBUG_FLAG_ENABLE,
> +	};
> +	struct drm_xe_exec_queue_create create = {
> +		.extensions = to_user_pointer(&eq_ext),
> +	};
> +	struct drm_xe_engine_class_instance *eci;
> +	bool at_least_4_ccs = false;
> +	uint32_t vm;
> +	int i, gt;
> +
> +	xe_for_each_gt(fd, gt) {
> +		int count = 0;
> +
> +		xe_for_each_engine(fd, eci)
> +			if (eci->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE &&
> +			    eci->gt_id == gt)
> +				count++;
> +
> +		if (count < 4)
> +			continue;
> +
> +		at_least_4_ccs = true;
> +
> +		vm = xe_eudebug_client_vm_create(c, fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> +
> +		eci = calloc(count * count - 2, sizeof(*eci));
> +
> +		for (i = 0; i < count * count - 2; i++) {
> +			eci[i].engine_class = DRM_XE_ENGINE_CLASS_COMPUTE;
> +			eci[i].gt_id = gt;
> +		}
> +
> +		for (i = 0; i < count; i++)
> +			eci[i].engine_instance = i;
> +
> +		create.instances = to_user_pointer(eci);
> +		create.vm_id = vm;
> +		create.width = 1;
> +		create.num_placements = count;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		create.width = count;
> +		create.num_placements = 1;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		// every other instance (logical_mask ~ 1010, 0101)
> +		create.width = 2;
> +		create.num_placements = count/2;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		// logically contigous placement (logical_mask ~ 1100, 0110, 0011)
> +		for (i = 0; i < count * count - 2; i++)
> +			eci[i].engine_instance = i / 2 + i % 2;
> +
> +		create.width = 2;
> +		create.num_placements = count - 1;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		xe_eudebug_client_vm_destroy(c, fd, vm);
> +		free(eci);
> +	}
> +
> +	igt_require(at_least_4_ccs);
> +}
> +
>   static void run_basic_client(struct xe_eudebug_client *c)
>   {
>   	int fd, i;
> @@ -470,6 +546,9 @@ static void run_basic_client(struct xe_eudebug_client *c)
>   		xe_eudebug_client_vm_destroy(c, fd, vm);
>   	}
>   
> +	if (c->flags & EXEC_QUEUES_PLACEMENTS)
> +		placements_client(fd, c);
> +
>   	if (c->flags & VM_BIND || c->flags & VM_BIND_METADATA)
>   		basic_vm_bind_client(fd, c);
>   
> @@ -908,6 +987,11 @@ static void test_read_event(int fd)
>    *	Attach the debugger to a process that performs bind, bind array, rebind,
>    *	partial unbind, unbind and unbind all operations.
>    *
> + * SUBTEST: exec-queue-placements
> + * Description:
> + *	Create compute exec_queues with various placements and compare them against
> + *	event sent to the debugger.
> + *
>    * SUBTEST: multigpu-basic-client
>    * Description:
>    *	Attach the debugger to process which opens and closes xe drm client on all Xe devices.
> @@ -2644,14 +2728,40 @@ static void test_basic_exec_queues_enable(int fd)
>   	xe_vm_destroy(fd, vm_non_lr);
>   }
>   
> +static void ccs_mode_all_engines(int num_gt)
> +{
> +	int fd, gt, gt_fd, num_slices, ccs_mode;
> +	int num_gts_with_ccs_mode = 0;
> +
> +	for (gt = 0; gt < num_gt; gt++) {
> +		fd = drm_open_driver(DRIVER_XE);
> +		gt_fd = xe_sysfs_gt_open(fd, gt);
> +		close(fd);
> +
> +		if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0)
> +			continue;
> +
> +		num_gts_with_ccs_mode++;
> +
> +		igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0);
> +		igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0);
> +		igt_assert(num_slices == ccs_mode);
> +		close(gt_fd);
> +	}
> +
> +	errno = 0;
> +	igt_require(num_gts_with_ccs_mode > 0);
> +}
> +
>   igt_main
>   {
>   	bool was_enabled;
>   	bool *multigpu_was_enabled;
> -	int fd, gpu_count;
> +	int fd, gpu_count, gt_count;
>   
>   	igt_fixture {
>   		fd = drm_open_driver(DRIVER_XE);
> +		gt_count = xe_number_gt(fd);
>   		was_enabled = xe_eudebug_enable(fd, true);
>   	}
>   
> @@ -2745,6 +2855,17 @@ igt_main
>   	igt_subtest("discovery-empty-clients")
>   		test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16);
>   
> +	igt_subtest_group {
> +		igt_fixture {
> +			drm_close_driver(fd);
> +			ccs_mode_all_engines(gt_count);
> +			fd = drm_open_driver(DRIVER_XE);
> +		}
> +
> +		igt_subtest("exec-queue-placements")
> +			test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true);
> +	}
> +
>   	igt_fixture {
>   		xe_eudebug_enable(fd, was_enabled);
>   		drm_close_driver(fd);

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

* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
  2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
                   ` (4 preceding siblings ...)
  2024-11-13 11:00 ` [PATCH i-g-t 1/3] " Manszewski, Christoph
@ 2024-11-13 12:52 ` Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-13 12:52 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition.
URL   : https://patchwork.freedesktop.org/series/141273/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8105_full -> XEIGTPW_12085_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_12085_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_12085_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_12085_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp2:
    - shard-bmg:          [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-2/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp2.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-7/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html

  * {igt@xe_eudebug@exec-queue-placements} (NEW):
    - shard-bmg:          NOTRUN -> [SKIP][7]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-2/igt@xe_eudebug@exec-queue-placements.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][8]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@xe_eudebug@exec-queue-placements.html
    - shard-lnl:          NOTRUN -> [SKIP][9]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@xe_eudebug@exec-queue-placements.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-dg2-set2:     [PASS][10] -> [FAIL][11] +1 other test fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
    - shard-bmg:          [PASS][12] -> [DMESG-FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html

  * igt@xe_oa@stress-open-close:
    - shard-lnl:          [PASS][14] -> [FAIL][15] +1 other test fail
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-5/igt@xe_oa@stress-open-close.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@xe_oa@stress-open-close.html

  
#### Warnings ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][16] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][17] +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][18] ([Intel XE#301]) -> [FAIL][19] +1 other test fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][20] ([Intel XE#301]) -> [FAIL][21] +2 other tests fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html

  
New tests
---------

  New tests have been introduced between XEIGT_8105_full and XEIGTPW_12085_full:

### New IGT tests (1) ###

  * igt@xe_eudebug@exec-queue-placements:
    - Statuses : 3 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_getstats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#2423]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@core_getstats.html

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-dg2-set2:     [PASS][23] -> [SKIP][24] ([Intel XE#1885]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html

  * igt@core_hotunplug@unbind-rebind:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#1885])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2-set2:     [PASS][26] -> [FAIL][27] ([Intel XE#3130] / [Intel XE#3249])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html

  * igt@fbdev@pan:
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#2134])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@fbdev@pan.html

  * igt@kms_atomic@plane-invalid-params-fence:
    - shard-dg2-set2:     [PASS][29] -> [SKIP][30] ([Intel XE#2423] / [i915#2575]) +110 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_atomic@plane-invalid-params-fence.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [PASS][31] -> [SKIP][32] ([Intel XE#2136]) +30 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2327])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1124]) +4 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

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

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#2191])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#367])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2887]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [FAIL][40] ([Intel XE#616]) +7 other tests fail
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1195] / [Intel XE#2692])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/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-b-dp-4:
    - shard-dg2-set2:     [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1195])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-5:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-5.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#373]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_color@ctm-signed:
    - shard-lnl:          [PASS][47] -> [DMESG-WARN][48] ([Intel XE#2929]) +1 other test dmesg-warn
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-7/igt@kms_color@ctm-signed.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-7/igt@kms_color@ctm-signed.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-5:
    - shard-dg2-set2:     NOTRUN -> [FAIL][49] ([Intel XE#1178])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_content_protection@atomic-dpms@pipe-a-dp-5.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2390])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@srm@pipe-a-dp-5:
    - shard-dg2-set2:     NOTRUN -> [FAIL][51] ([Intel XE#3407])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-5.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2321])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][53] ([Intel XE#3226])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
    - shard-lnl:          [PASS][54] -> [FAIL][55] ([Intel XE#1475])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-2/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [FAIL][56] ([Intel XE#1695])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [PASS][57] -> [FAIL][58] ([Intel XE#2882]) +1 other test fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [PASS][59] -> [FAIL][60] ([Intel XE#301]) +5 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-dp5:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][61] ([Intel XE#1195])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@d-dp5.html

  * igt@kms_flip@plain-flip-fb-recreate@b-edp1:
    - shard-lnl:          [PASS][62] -> [FAIL][63] ([Intel XE#886]) +2 other tests fail
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#651]) +4 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#2136]) +13 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2311]) +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - shard-dg2-set2:     [PASS][68] -> [SKIP][69] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
    - shard-lnl:          [PASS][70] -> [INCOMPLETE][71] ([Intel XE#2050])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#653]) +6 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2313]) +2 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2934])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#455]) +6 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#2763]) +8 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.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]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#870])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][80] -> [FAIL][81] ([Intel XE#718])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@legacy-planes:
    - shard-lnl:          [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3184]) +1 other test dmesg-warn
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@kms_pm_rpm@legacy-planes.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-2/igt@kms_pm_rpm@legacy-planes.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2-set2:     [PASS][84] -> [SKIP][85] ([Intel XE#2446]) +3 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#2446])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#1489]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][88] ([Intel XE#1489]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_psr@fbc-pr-dpms.html

  * igt@kms_psr@psr-basic:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-7/igt@kms_psr@psr-basic.html

  * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
    - shard-lnl:          [PASS][91] -> [FAIL][92] ([Intel XE#899])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][93] -> [FAIL][94] ([Intel XE#2159]) +1 other test fail
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][95] ([Intel XE#1280] / [Intel XE#455])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html

  * igt@xe_eudebug@basic-client-th:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#2905]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-2/igt@xe_eudebug@basic-client-th.html

  * igt@xe_eudebug@sysfs-toggle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#2905]) +3 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_eudebug@sysfs-toggle.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [PASS][98] -> [TIMEOUT][99] ([Intel XE#1473] / [Intel XE#402])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][100] -> [TIMEOUT][101] ([Intel XE#1473] / [Intel XE#2472])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
    - shard-dg2-set2:     [PASS][102] -> [TIMEOUT][103] ([Intel XE#1473])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_balancer@once-parallel-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#1130]) +33 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_exec_balancer@once-parallel-userptr.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [PASS][105] -> [SKIP][106] ([Intel XE#1130]) +199 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@xe_exec_basic@many-null-rebind.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#2322])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][108] ([Intel XE#288]) +7 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr.html

  * igt@xe_exec_reset@virtual-close-execqueues-close-fd:
    - shard-bmg:          [PASS][109] -> [FAIL][110] ([Intel XE#3327])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-5/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-6/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html

  * igt@xe_module_load@reload-no-display:
    - shard-dg2-set2:     [PASS][111] -> [FAIL][112] ([Intel XE#2136])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@xe_module_load@reload-no-display.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@mi-rpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][113] ([Intel XE#2541])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_oa@mi-rpc.html

  * igt@xe_oa@stress-open-close@rcs-0:
    - shard-lnl:          [PASS][114] -> [FAIL][115] ([Intel XE#2976])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-5/igt@xe_oa@stress-open-close@rcs-0.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@xe_oa@stress-open-close@rcs-0.html
    - shard-bmg:          NOTRUN -> [FAIL][116] ([Intel XE#2976])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-6/igt@xe_oa@stress-open-close@rcs-0.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#2237] / [Intel XE#2245])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-8/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm_residency@toggle-gt-c6:
    - shard-lnl:          [PASS][118] -> [FAIL][119] ([Intel XE#958])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-dg2-set2:     NOTRUN -> [SKIP][120] ([Intel XE#944])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][121] ([Intel XE#3342])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-dg2-set2:     [FAIL][122] -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@core_getversion@basic.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotreplug-lateclose:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#1885]) -> [PASS][125] +1 other test pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@core_hotunplug@hotreplug-lateclose.html

  * igt@fbdev@eof:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#2134]) -> [PASS][127] +1 other test pass
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@fbdev@eof.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@fbdev@eof.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#2423] / [i915#2575]) -> [PASS][129] +89 other tests pass
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-lnl:          [FAIL][130] ([Intel XE#1454]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][132] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][133] +1 other test pass
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][134] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][136] ([Intel XE#1195]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_color@ctm-red-to-blue:
    - shard-lnl:          [DMESG-WARN][138] ([Intel XE#2929]) -> [PASS][139] +1 other test pass
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@kms_color@ctm-red-to-blue.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-2/igt@kms_color@ctm-red-to-blue.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          [INCOMPLETE][140] -> [PASS][141] +1 other test pass
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][142] ([Intel XE#301]) -> [PASS][143] +2 other tests pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][144] ([Intel XE#301]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-bmg:          [DMESG-WARN][146] ([Intel XE#2955]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
    - shard-bmg:          [DMESG-WARN][148] -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
    - shard-lnl:          [FAIL][150] ([Intel XE#886]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#2136]) -> [PASS][153] +23 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][155] +15 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][156] ([Intel XE#2029]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#2446]) -> [PASS][159] +3 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_vblank@accuracy-idle:
    - shard-lnl:          [FAIL][160] ([Intel XE#1523]) -> [PASS][161] +1 other test pass
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-5/igt@kms_vblank@accuracy-idle.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1:
    - shard-lnl:          [DMESG-WARN][162] -> [PASS][163] +1 other test pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-7/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html

  * igt@xe_evict@evict-beng-threads-large:
    - shard-bmg:          [TIMEOUT][164] ([Intel XE#1473]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html

  * igt@xe_exec_basic@once-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#1130]) -> [PASS][167] +168 other tests pass
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@xe_exec_basic@once-userptr-invalidate-race.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-bmg:          [FAIL][168] ([Intel XE#2249]) -> [PASS][169] +1 other test pass
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-4/igt@xe_oa@mmio-triggered-reports.html
    - shard-lnl:          [FAIL][170] ([Intel XE#2249]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-4/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_pm@d3hot-multiple-execs:
    - shard-lnl:          [DMESG-WARN][172] ([Intel XE#3184]) -> [PASS][173] +2 other tests pass
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-lnl-8/igt@xe_pm@d3hot-multiple-execs.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-lnl-4/igt@xe_pm@d3hot-multiple-execs.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#316]) -> [SKIP][175] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][177] ([Intel XE#877])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-0.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html

  * igt@kms_big_fb@linear-64bpp-rotate-180:
    - shard-dg2-set2:     [DMESG-WARN][178] ([Intel XE#877]) -> [SKIP][179] ([Intel XE#2136] / [Intel XE#2351])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-180.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#316]) -> [SKIP][181] ([Intel XE#2136]) +4 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#2136]) -> [SKIP][183] ([Intel XE#316]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1124]) -> [SKIP][185] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#1124]) -> [SKIP][187] ([Intel XE#2136]) +8 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][189] ([Intel XE#1124]) +5 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][191] ([Intel XE#619])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#607]) -> [SKIP][193] ([Intel XE#2136])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#2136]) -> [SKIP][195] ([Intel XE#610])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#2136]) -> [SKIP][197] ([Intel XE#1124]) +7 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#2423] / [i915#2575]) -> [SKIP][199] ([Intel XE#367]) +3 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#2191]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#367]) -> [SKIP][203] ([Intel XE#2423] / [i915#2575]) +5 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][205] ([Intel XE#2136]) +9 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][207] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][209] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][210] -> [SKIP][211] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#2907]) -> [SKIP][213] ([Intel XE#2136]) +3 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][214] ([Intel XE#2136]) -> [FAIL][215] ([Intel XE#616])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#2136]) -> [SKIP][217] ([Intel XE#2907]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#2136]) -> [SKIP][219] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][220] ([Intel XE#314]) -> [SKIP][221] ([Intel XE#2136] / [Intel XE#2351])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     [SKIP][222] ([Intel XE#306]) -> [SKIP][223] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     [SKIP][224] ([Intel XE#2423] / [i915#2575]) -> [SKIP][225] ([Intel XE#306]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][226] ([Intel XE#2423] / [i915#2575]) -> [SKIP][227] ([Intel XE#373]) +9 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#373]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575]) +13 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#2423] / [i915#2575]) -> [FAIL][231] ([Intel XE#1178])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     [FAIL][232] ([Intel XE#1178]) -> [SKIP][233] ([Intel XE#2423] / [i915#2575])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_content_protection@lic-type-0.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [FAIL][234] ([Intel XE#1188]) -> [SKIP][235] ([Intel XE#2423] / [i915#2575])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_content_protection@uevent.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#308]) -> [SKIP][237] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#308]) +2 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#2423] / [i915#2575]) -> [SKIP][241] ([Intel XE#323])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-dg2-set2:     [SKIP][242] ([Intel XE#323]) -> [SKIP][243] ([Intel XE#2423] / [i915#2575])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_display_modes@mst-extended-mode-negative:
    - shard-dg2-set2:     [SKIP][244] ([Intel XE#307]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2-set2:     [SKIP][246] ([Intel XE#2136]) -> [SKIP][247] ([Intel XE#455]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#776]) -> [SKIP][249] ([Intel XE#2136])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][250] ([Intel XE#701]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#2423] / [i915#2575]) -> [SKIP][253] ([Intel XE#1135])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_feature_discovery@psr2.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][254] ([Intel XE#301]) -> [FAIL][255] ([Intel XE#2882])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][257] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][258] ([Intel XE#455]) -> [SKIP][259] ([Intel XE#2136]) +6 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     [SKIP][260] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][261] ([Intel XE#455]) +2 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][262] ([Intel XE#455]) -> [SKIP][263] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     [SKIP][264] ([i915#5274]) -> [SKIP][265] ([Intel XE#2423] / [i915#2575])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#2136]) -> [SKIP][267] ([Intel XE#651]) +26 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][269] ([Intel XE#651]) +6 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][270] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][271] ([Intel XE#658])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][272] ([Intel XE#651]) -> [SKIP][273] ([Intel XE#2136]) +29 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][274] ([Intel XE#651]) -> [SKIP][275] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][276] ([Intel XE#2136]) -> [SKIP][277] ([Intel XE#653]) +23 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][278] ([Intel XE#653]) -> [SKIP][279] ([Intel XE#2136]) +35 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][280] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][281] ([Intel XE#653]) +10 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][282] ([Intel XE#653]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_getfb@getfb-reject-ccs:
    - shard-dg2-set2:     [SKIP][284] ([Intel XE#605]) -> [SKIP][285] ([Intel XE#2423] / [i915#2575])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2-set2:     [FAIL][286] ([Intel XE#3312] / [Intel XE#3404]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_hdr@brightness-with-hdr.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     [SKIP][288] ([Intel XE#346]) -> [SKIP][289] ([Intel XE#2136])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][290] ([Intel XE#2925]) -> [SKIP][291] ([Intel XE#2136]) +1 other test skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     [SKIP][292] ([Intel XE#2136]) -> [SKIP][293] ([Intel XE#346])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][294] ([Intel XE#2136]) -> [SKIP][295] ([Intel XE#2927]) +1 other test skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2-set2:     [SKIP][296] ([Intel XE#356]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
    - shard-dg2-set2:     [SKIP][300] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     [SKIP][302] ([Intel XE#870]) -> [SKIP][303] ([Intel XE#2136])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#2938])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][306] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][307] ([Intel XE#1122])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-dg2-set2:     [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][309] ([Intel XE#908])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][310] ([Intel XE#1129]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2351])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][312] ([Intel XE#1489]) -> [SKIP][313] ([Intel XE#2136]) +11 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][314] ([Intel XE#2136]) -> [SKIP][315] ([Intel XE#1489]) +6 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][316] ([Intel XE#1122]) -> [SKIP][317] ([Intel XE#2136])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2-set2:     [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#1122]) +1 other test skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][320] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][321] ([Intel XE#2136]) +12 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][323] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr@pr-dpms.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-dg2-set2:     [SKIP][324] ([Intel XE#2351]) -> [SKIP][325] ([Intel XE#2850] / [Intel XE#929])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     [SKIP][326] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][327] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_psr@psr-dpms.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_psr@psr-dpms.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2-set2:     [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr@psr2-basic.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_psr@psr2-basic.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#2939])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     [SKIP][332] ([Intel XE#3414]) -> [SKIP][333] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2-set2:     [SKIP][334] ([Intel XE#2423] / [i915#2575]) -> [SKIP][335] ([Intel XE#3414])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][336] ([Intel XE#2426]) -> [SKIP][337] ([Intel XE#2509])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@cmrr:
    - shard-dg2-set2:     [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#2168])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_vrr@cmrr.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [SKIP][341] ([Intel XE#455]) +4 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_vrr@flip-dpms.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][342] ([Intel XE#455]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@kms_vrr@flipline.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2-set2:     [SKIP][344] ([Intel XE#2423] / [i915#2575]) -> [SKIP][345] ([Intel XE#756])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][346] ([Intel XE#756]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575]) +1 other test skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@kms_writeback@writeback-invalid-parameters.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [SKIP][348] ([Intel XE#1130]) -> [SKIP][349] ([Intel XE#1280] / [Intel XE#455])
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     [SKIP][350] ([Intel XE#1130]) -> [SKIP][351] ([Intel XE#1123])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][352] ([Intel XE#1126]) -> [SKIP][353] ([Intel XE#1130])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][354] ([Intel XE#1130]) -> [SKIP][355] ([Intel XE#1126])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][356] ([Intel XE#1130]) -> [SKIP][357] ([Intel XE#2905]) +9 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_eudebug@basic-close.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug_online@debugger-reopen:
    - shard-dg2-set2:     [SKIP][358] ([Intel XE#2905]) -> [SKIP][359] ([Intel XE#1130]) +13 other tests skip
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_eudebug_online@debugger-reopen.html

  * igt@xe_evict@evict-beng-large-multi-vm-cm:
    - shard-dg2-set2:     [SKIP][360] ([Intel XE#1130]) -> [FAIL][361] ([Intel XE#1600])
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html

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

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     [SKIP][364] ([Intel XE#288]) -> [SKIP][365] ([Intel XE#1130]) +38 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][366] ([Intel XE#1130]) -> [SKIP][367] ([Intel XE#288]) +32 other tests skip
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     [SKIP][368] ([Intel XE#2360]) -> [SKIP][369] ([Intel XE#1130])
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_reset@virtual-close-execqueues-close-fd:
    - shard-dg2-set2:     [SKIP][370] ([Intel XE#1130]) -> [FAIL][371] ([Intel XE#3327])
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_exec_reset@virtual-close-execqueues-close-fd.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][372] ([Intel XE#255]) -> [SKIP][373] ([Intel XE#1130])
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_huc_copy@huc_copy.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-dg2-set2:     [SKIP][374] ([Intel XE#2541]) -> [SKIP][375] ([Intel XE#1130]) +9 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_oa@oa-tlb-invalidate.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][376] ([Intel XE#1130]) -> [SKIP][377] ([Intel XE#2541]) +7 other tests skip
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_oa@polling-small-buf.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_oa@polling-small-buf.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][378] ([Intel XE#1130]) -> [SKIP][379] ([Intel XE#2839] / [Intel XE#977])
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-466/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][380] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][381] ([Intel XE#1130])
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     [SKIP][382] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][383] ([Intel XE#1130]) +1 other test skip
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][384] ([Intel XE#1130]) -> [SKIP][385] ([Intel XE#2284] / [Intel XE#366])
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     [SKIP][386] ([Intel XE#579]) -> [SKIP][387] ([Intel XE#1130])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-dg2-set2:     [SKIP][388] ([Intel XE#944]) -> [SKIP][389] ([Intel XE#1130]) +1 other test skip
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     [SKIP][390] ([Intel XE#1130]) -> [SKIP][391] ([Intel XE#944]) +2 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_tlb@basic-tlb:
    - shard-dg2-set2:     [SKIP][392] ([Intel XE#1130]) -> [FAIL][393] ([Intel XE#2922])
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-434/igt@xe_tlb@basic-tlb.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-463/igt@xe_tlb@basic-tlb.html

  * igt@xe_wedged@basic-wedged:
    - shard-dg2-set2:     [DMESG-WARN][394] ([Intel XE#2919]) -> [SKIP][395] ([Intel XE#1130])
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8105/shard-dg2-435/igt@xe_wedged@basic-wedged.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12085/shard-dg2-434/igt@xe_wedged@basic-wedged.html

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

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454
  [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#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
  [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
  [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
  [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [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#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
  [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
  [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
  [Intel XE#2976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2976
  [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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130
  [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
  [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
  [Intel XE#3327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3327
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3404
  [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * IGT: IGT_8105 -> IGTPW_12085
  * Linux: xe-2218-26f5fe99791def93b32e27e79e71dbd0666c117b -> xe-2219-cf3872e462498611b17e5f80f0b1d0900580da20

  IGTPW_12085: 12085
  IGT_8105: 8105
  xe-2218-26f5fe99791def93b32e27e79e71dbd0666c117b: 26f5fe99791def93b32e27e79e71dbd0666c117b
  xe-2219-cf3872e462498611b17e5f80f0b1d0900580da20: cf3872e462498611b17e5f80f0b1d0900580da20

== Logs ==

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

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

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

* Re: [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements
  2024-11-13  8:51 ` [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements Dominik Grzegorzek
  2024-11-13 11:02   ` Manszewski, Christoph
@ 2024-11-13 14:34   ` Zbigniew Kempczyński
  1 sibling, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2024-11-13 14:34 UTC (permalink / raw)
  To: Dominik Grzegorzek; +Cc: igt-dev, christoph.manszewski

On Wed, Nov 13, 2024 at 09:51:55AM +0100, Dominik Grzegorzek wrote:
> Add test which validates exec_queue_placement uAPI. It requires
> ccs_mode, which is present only on platforms with multiple ccs engines.
> 
> Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
>  tests/intel/xe_eudebug.c | 123 ++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 122 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/intel/xe_eudebug.c b/tests/intel/xe_eudebug.c
> index 8d45d59f3..39db16457 100644
> --- a/tests/intel/xe_eudebug.c
> +++ b/tests/intel/xe_eudebug.c
> @@ -20,6 +20,7 @@
>  #include <sys/prctl.h>
>  
>  #include "igt.h"
> +#include "igt_sysfs.h"
>  #include "intel_pat.h"
>  #include "lib/igt_syncobj.h"
>  #include "xe/xe_eudebug.h"
> @@ -61,6 +62,7 @@ static void test_sysfs_toggle(int fd)
>  #define VM_METADATA		(1 << 5)
>  #define VM_BIND_METADATA	(1 << 6)
>  #define VM_BIND_OP_MAP_USERPTR	(1 << 7)
> +#define EXEC_QUEUES_PLACEMENTS	(1 << 8)
>  #define TEST_DISCOVERY		(1 << 31)
>  
>  #define PAGE_SIZE SZ_4K
> @@ -420,6 +422,80 @@ static void vm_bind_client(int fd, struct xe_eudebug_client *c)
>  	xe_eudebug_client_vm_destroy(c, fd, vm);
>  }
>  
> +static void placements_client(int fd, struct xe_eudebug_client *c)
> +{
> +	struct drm_xe_ext_set_property eq_ext = {
> +		.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
> +		.property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_EUDEBUG,
> +		.value = DRM_XE_EXEC_QUEUE_EUDEBUG_FLAG_ENABLE,
> +	};
> +	struct drm_xe_exec_queue_create create = {
> +		.extensions = to_user_pointer(&eq_ext),
> +	};
> +	struct drm_xe_engine_class_instance *eci;
> +	bool at_least_4_ccs = false;
> +	uint32_t vm;
> +	int i, gt;
> +
> +	xe_for_each_gt(fd, gt) {
> +		int count = 0;
> +
> +		xe_for_each_engine(fd, eci)
> +			if (eci->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE &&
> +			    eci->gt_id == gt)
> +				count++;
> +
> +		if (count < 4)
> +			continue;
> +
> +		at_least_4_ccs = true;
> +
> +		vm = xe_eudebug_client_vm_create(c, fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> +
> +		eci = calloc(count * count - 2, sizeof(*eci));
> +
> +		for (i = 0; i < count * count - 2; i++) {
> +			eci[i].engine_class = DRM_XE_ENGINE_CLASS_COMPUTE;
> +			eci[i].gt_id = gt;
> +		}
> +
> +		for (i = 0; i < count; i++)
> +			eci[i].engine_instance = i;
> +
> +		create.instances = to_user_pointer(eci);
> +		create.vm_id = vm;
> +		create.width = 1;
> +		create.num_placements = count;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		create.width = count;
> +		create.num_placements = 1;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		// every other instance (logical_mask ~ 1010, 0101)

Minor nit - please use C-style comments.

--
Zbigniew

> +		create.width = 2;
> +		create.num_placements = count/2;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		// logically contigous placement (logical_mask ~ 1100, 0110, 0011)
> +		for (i = 0; i < count * count - 2; i++)
> +			eci[i].engine_instance = i / 2 + i % 2;
> +
> +		create.width = 2;
> +		create.num_placements = count - 1;
> +		xe_eudebug_client_exec_queue_create(c, fd, &create);
> +		xe_eudebug_client_exec_queue_destroy(c, fd, &create);
> +
> +		xe_eudebug_client_vm_destroy(c, fd, vm);
> +		free(eci);
> +	}
> +
> +	igt_require(at_least_4_ccs);
> +}
> +
>  static void run_basic_client(struct xe_eudebug_client *c)
>  {
>  	int fd, i;
> @@ -470,6 +546,9 @@ static void run_basic_client(struct xe_eudebug_client *c)
>  		xe_eudebug_client_vm_destroy(c, fd, vm);
>  	}
>  
> +	if (c->flags & EXEC_QUEUES_PLACEMENTS)
> +		placements_client(fd, c);
> +
>  	if (c->flags & VM_BIND || c->flags & VM_BIND_METADATA)
>  		basic_vm_bind_client(fd, c);
>  
> @@ -908,6 +987,11 @@ static void test_read_event(int fd)
>   *	Attach the debugger to a process that performs bind, bind array, rebind,
>   *	partial unbind, unbind and unbind all operations.
>   *
> + * SUBTEST: exec-queue-placements
> + * Description:
> + *	Create compute exec_queues with various placements and compare them against
> + *	event sent to the debugger.
> + *
>   * SUBTEST: multigpu-basic-client
>   * Description:
>   *	Attach the debugger to process which opens and closes xe drm client on all Xe devices.
> @@ -2644,14 +2728,40 @@ static void test_basic_exec_queues_enable(int fd)
>  	xe_vm_destroy(fd, vm_non_lr);
>  }
>  
> +static void ccs_mode_all_engines(int num_gt)
> +{
> +	int fd, gt, gt_fd, num_slices, ccs_mode;
> +	int num_gts_with_ccs_mode = 0;
> +
> +	for (gt = 0; gt < num_gt; gt++) {
> +		fd = drm_open_driver(DRIVER_XE);
> +		gt_fd = xe_sysfs_gt_open(fd, gt);
> +		close(fd);
> +
> +		if (igt_sysfs_scanf(gt_fd, "num_cslices", "%u", &num_slices) <= 0)
> +			continue;
> +
> +		num_gts_with_ccs_mode++;
> +
> +		igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", num_slices) > 0);
> +		igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0);
> +		igt_assert(num_slices == ccs_mode);
> +		close(gt_fd);
> +	}
> +
> +	errno = 0;
> +	igt_require(num_gts_with_ccs_mode > 0);
> +}
> +
>  igt_main
>  {
>  	bool was_enabled;
>  	bool *multigpu_was_enabled;
> -	int fd, gpu_count;
> +	int fd, gpu_count, gt_count;
>  
>  	igt_fixture {
>  		fd = drm_open_driver(DRIVER_XE);
> +		gt_count = xe_number_gt(fd);
>  		was_enabled = xe_eudebug_enable(fd, true);
>  	}
>  
> @@ -2745,6 +2855,17 @@ igt_main
>  	igt_subtest("discovery-empty-clients")
>  		test_empty_discovery(fd, DISCOVERY_DESTROY_RESOURCES, 16);
>  
> +	igt_subtest_group {
> +		igt_fixture {
> +			drm_close_driver(fd);
> +			ccs_mode_all_engines(gt_count);
> +			fd = drm_open_driver(DRIVER_XE);
> +		}
> +
> +		igt_subtest("exec-queue-placements")
> +			test_basic_sessions(fd, EXEC_QUEUES_PLACEMENTS, 1, true);
> +	}
> +
>  	igt_fixture {
>  		xe_eudebug_enable(fd, was_enabled);
>  		drm_close_driver(fd);
> -- 
> 2.34.1
> 

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

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

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-13  8:51 [PATCH i-g-t 1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Dominik Grzegorzek
2024-11-13  8:51 ` [PATCH i-g-t 2/3] lib/xe_eudebug: Add support for exec queue placements events Dominik Grzegorzek
2024-11-13 11:02   ` Manszewski, Christoph
2024-11-13  8:51 ` [PATCH i-g-t 3/3] tests/xe_eudebug: Validate exec queue placements Dominik Grzegorzek
2024-11-13 11:02   ` Manszewski, Christoph
2024-11-13 14:34   ` Zbigniew Kempczyński
2024-11-13 10:26 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/3] drm-uapi-experimental/xe_drm_eudebug: Sync after exec_queue placement event addition Patchwork
2024-11-13 10:29 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-13 11:00 ` [PATCH i-g-t 1/3] " Manszewski, Christoph
2024-11-13 12:52 ` ✗ CI.xeFULL: failure for series starting with [i-g-t,1/3] " Patchwork

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