Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/3] VF double migration
@ 2025-11-24 16:07 Satyanarayana K V P
  2025-11-24 16:07 ` [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions Satyanarayana K V P
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Satyanarayana K V P @ 2025-11-24 16:07 UTC (permalink / raw)
  To: intel-xe; +Cc: Satyanarayana K V P

 In scenarios involving double migration, the VF KMD may encounter
 situations where it is instructed to re-migrate before having the
 opportunity to send RESFIX_DONE for the initial migration. This can occur
 when the fix-up for the prior migration is still underway, but the VF KMD
 is migrated again.

 Consequently, this may lead to the possibility of sending two migration
 notifications (i.e., pending fix-up for the first migration and a second
 notification for the new migration). Upon receiving the first RES_FIX
 notification, the GuC will resume VF submission on the GPU, potentially
 resulting in undefined behavior, such as system hangs or crashes.

 To avoid these hangs, a new VF2GUC action `VF2GUC_RESFIX_START` is
 sent along with marker and when GUC receives the same marker with
 `VF2GUC_RESFIX_DONE`action, it starts scheduling work loads from VF.

 ---
 V5 -> V6:
 - Fixed review comments (Michal W).
- Updated resfix_done and res_fix_start function names.
- Handled XE_GUC_RESPONSE_VF_MIGRATED error case received from GuC.
- Remove skip_resfix error when another migration is in queue.
- Fixed review comments (Michal W).
- Removed timeout and VF KMD waits infinately when resfix_stoppers bits
are set.
- Created helper macro for WAIT positions.

 V4 -> V5:
 - Fixed review comments (Michal W).
 - Created new function vf_migration_init_late().
 - Fixed minor debug log levels and documentation part.
 - Moved complete marker logic to vf_post_migration_resfix_start_marker()
 - Updated debugfs entries.

 V3 -> V4:
 - Gated Save/restore on Guc version 70.54.0
 - Enabled RESFIX_START by default.
 - Updated RESFIX_DONE documention.

 V2 -> V3:
 - Fixed review comments (Michal W).
 - Updated commit message.
 - Fixed CI.BAT issues.
 - Added helper function to assert on unsupported GUC versions.
 - Added debugfs entries to test VF double migration.

 V1 -> V2:
 - Squashed "Enable RESFIX start marker only on supported GUC
 versions" commit into a single commit. (Matt B)
 - Use fault injection for testing VF double  migration feature (Matt B).

Satyanarayana K V P (3):
  drm/xe/vf: Enable VF migration only on supported GuC versions
  drm/xe/vf: Introduce RESFIX start marker support
  drm/xe/vf: Add debugfs entries to test VF double migration

 .../gpu/drm/xe/abi/guc_actions_sriov_abi.h    |  67 +++++++--
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c           | 137 ++++++++++++++----
 drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c   |   5 +
 drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h     |  13 ++
 drivers/gpu/drm/xe/xe_guc.c                   |  13 +-
 drivers/gpu/drm/xe/xe_sriov_vf.c              |  59 +++++++-
 6 files changed, 252 insertions(+), 42 deletions(-)

-- 
2.51.0


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

* [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
@ 2025-11-24 16:07 ` Satyanarayana K V P
  2025-11-27 14:45   ` Michal Wajdeczko
  2025-11-24 16:07 ` [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support Satyanarayana K V P
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Satyanarayana K V P @ 2025-11-24 16:07 UTC (permalink / raw)
  To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko, Matthew Brost, Tomasz Lis

Enable VF migration starting with GuC 70.54.0 (compatibility version
1.27.0) which supports additional VF2GUC_RESFIX_START message required
to handle migration recovery in a more robust way.

Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>

---
V5 -> V6:
- Fixed review comments (Michal W).
- Updated commit message.
- return xe_sriov_vf_migration_supported() from vf_migration_init_late().

V4 -> V5:
- Created new function vf_migration_init_late() (Michal W).

V3 -> V4:
- New commit

V2 -> V3:
- None.

V1 -> V2:
- None.
---
 drivers/gpu/drm/xe/xe_sriov_vf.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 284ce37ca92d..f53d68f2f1d2 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -170,6 +170,22 @@ void xe_sriov_vf_init_early(struct xe_device *xe)
 	vf_migration_init_early(xe);
 }
 
+static bool vf_migration_init_late(struct xe_device *xe)
+{
+	struct xe_gt *gt = xe_root_mmio_gt(xe);
+	struct xe_uc_fw_version guc_version;
+
+	xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
+	if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 27, 0)) {
+		xe_sriov_vf_migration_disable(xe,
+					      "requires GuC ABI >= 1.27.0, but only %u.%u.%u found",
+					      guc_version.major, guc_version.minor,
+					      guc_version.patch);
+	}
+
+	return xe_sriov_vf_migration_supported(xe);
+}
+
 /**
  * xe_sriov_vf_init_late() - SR-IOV VF late initialization functions.
  * @xe: the &xe_device to initialize
@@ -180,6 +196,9 @@ void xe_sriov_vf_init_early(struct xe_device *xe)
  */
 int xe_sriov_vf_init_late(struct xe_device *xe)
 {
+	if (!vf_migration_init_late(xe))
+		return 0;
+
 	return xe_sriov_vf_ccs_init(xe);
 }
 
-- 
2.51.0


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

* [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
  2025-11-24 16:07 ` [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions Satyanarayana K V P
@ 2025-11-24 16:07 ` Satyanarayana K V P
  2025-11-27 16:17   ` Michal Wajdeczko
  2025-11-24 16:07 ` [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration Satyanarayana K V P
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Satyanarayana K V P @ 2025-11-24 16:07 UTC (permalink / raw)
  To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko, Matthew Brost, Tomasz Lis

In scenarios involving double migration, the VF KMD may encounter
situations where it is instructed to re-migrate before having the
opportunity to send RESFIX_DONE for the initial migration. This can occur
when the fix-up for the prior migration is still underway, but the VF KMD
is migrated again.

Consequently, this may lead to the possibility of sending two migration
notifications (i.e., pending fix-up for the first migration and a second
notification for the new migration). Upon receiving the first RES_FIX
notification, the GuC will resume VF submission on the GPU, potentially
resulting in undefined behavior, such as system hangs or crashes.

To avoid this, post migration, a marker is sent to the GUC prior to the
start of resource fixups to indicate start of resource fixups. The same
marker is sent along with RESFIX_DONE notification so that GUC can avoid
submitting jobs to HW in case of double migration.

Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>

---
V5 -> V6:
- Fixed review comments (Michal W).
- Updated resfix_done and res_fix_start function names.
- Handled XE_GUC_RESPONSE_VF_MIGRATED error case received from GuC.
- Remove skip_resfix error when another migration is in queue.

V4 -> V5:
- Fixed review comments (Michal W).
- Fixed minor debug log levels and documentation part.
- Moved complete marker logic to vf_post_migration_resfix_start_marker()

V3 -> V4:
- Updated RESFIX_DONE action name and documenation part. (Michal W)
- Enable resfxi_start marked by default as sav/restore is gated on
Guc version 70.54.0

V2 -> V3:
- Fixed review comments (Michal W).
- Updated commit message.
- Fixed CI.BAT issues.
- Added helper function to assert on unsupported GUC versions.
- Updated RESFIX_DONE action name and documenation part.

V1 -> V2:
- Squashed "Enable RESFIX start marker only on supported GUC
versions" commit into a single commit. (Matt B)
---
 .../gpu/drm/xe/abi/guc_actions_sriov_abi.h    | 67 +++++++++++--
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c           | 99 ++++++++++++++-----
 drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h     |  5 +
 drivers/gpu/drm/xe/xe_guc.c                   | 13 ++-
 drivers/gpu/drm/xe/xe_sriov_vf.c              | 40 +++++++-
 5 files changed, 182 insertions(+), 42 deletions(-)

diff --git a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
index 0b28659d94e9..d9f21202e1a9 100644
--- a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
+++ b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
@@ -502,13 +502,17 @@
 #define VF2GUC_VF_RESET_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
 
 /**
- * DOC: VF2GUC_NOTIFY_RESFIX_DONE
+ * DOC: VF2GUC_RESFIX_DONE
  *
- * This action is used by VF to notify the GuC that the VF KMD has completed
- * post-migration recovery steps.
+ * This action is used by VF to inform the GuC that the VF KMD has completed
+ * post-migration recovery steps. From GuC VF compatibility 1.27.0 onwards, it
+ * shall only be sent after posting RESFIX_START and that both @MARKER fields
+ * must match.
  *
  * This message must be sent as `MMIO HXG Message`_.
  *
+ * Updated since GuC VF compatibility 1.27.0.
+ *
  *  +---+-------+--------------------------------------------------------------+
  *  |   | Bits  | Description                                                  |
  *  +===+=======+==============================================================+
@@ -516,9 +520,11 @@
  *  |   +-------+--------------------------------------------------------------+
  *  |   | 30:28 | TYPE = GUC_HXG_TYPE_REQUEST_                                 |
  *  |   +-------+--------------------------------------------------------------+
- *  |   | 27:16 | DATA0 = MBZ                                                  |
+ *  |   | 27:16 | DATA0 = MARKER = MBZ (only prior 1.27.0)                     |
  *  |   +-------+--------------------------------------------------------------+
- *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE` = 0x5508    |
+ *  |   | 27:16 | DATA0 = MARKER - can't be zero (1.27.0+)                     |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_RESFIX_DONE` = 0x5508           |
  *  +---+-------+--------------------------------------------------------------+
  *
  *  +---+-------+--------------------------------------------------------------+
@@ -531,13 +537,13 @@
  *  |   |  27:0 | DATA0 = MBZ                                                  |
  *  +---+-------+--------------------------------------------------------------+
  */
-#define GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE		0x5508u
+#define GUC_ACTION_VF2GUC_RESFIX_DONE			0x5508u
 
-#define VF2GUC_NOTIFY_RESFIX_DONE_REQUEST_MSG_LEN	GUC_HXG_REQUEST_MSG_MIN_LEN
-#define VF2GUC_NOTIFY_RESFIX_DONE_REQUEST_MSG_0_MBZ	GUC_HXG_REQUEST_MSG_0_DATA0
+#define VF2GUC_RESFIX_DONE_REQUEST_MSG_LEN		GUC_HXG_REQUEST_MSG_MIN_LEN
+#define VF2GUC_RESFIX_DONE_REQUEST_MSG_0_MARKER		GUC_HXG_REQUEST_MSG_0_DATA0
 
-#define VF2GUC_NOTIFY_RESFIX_DONE_RESPONSE_MSG_LEN	GUC_HXG_RESPONSE_MSG_MIN_LEN
-#define VF2GUC_NOTIFY_RESFIX_DONE_RESPONSE_MSG_0_MBZ	GUC_HXG_RESPONSE_MSG_0_DATA0
+#define VF2GUC_RESFIX_DONE_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
+#define VF2GUC_RESFIX_DONE_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
 
 /**
  * DOC: VF2GUC_QUERY_SINGLE_KLV
@@ -656,4 +662,45 @@
 #define PF2GUC_SAVE_RESTORE_VF_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
 #define PF2GUC_SAVE_RESTORE_VF_RESPONSE_MSG_0_USED	GUC_HXG_RESPONSE_MSG_0_DATA0
 
+/**
+ * DOC: VF2GUC_RESFIX_START
+ *
+ * This action is used by VF to inform the GuC that the VF KMD will be starting
+ * post-migration recovery fixups. The @MARKER sent with this action must match
+ * with the MARKER posted in the VF2GUC_RESFIX_DONE message.
+ *
+ * This message must be sent as `MMIO HXG Message`_.
+ *
+ * Available since GuC VF compatibility 1.27.0.
+ *
+ *  +---+-------+--------------------------------------------------------------+
+ *  |   | Bits  | Description                                                  |
+ *  +===+=======+==============================================================+
+ *  | 0 |    31 | ORIGIN = GUC_HXG_ORIGIN_HOST_                                |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   | 30:28 | TYPE = GUC_HXG_TYPE_REQUEST_                                 |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   | 27:16 | DATA0 = MARKER - can't be zero                               |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_RESFIX_START` = 0x550F          |
+ *  +---+-------+--------------------------------------------------------------+
+ *
+ *  +---+-------+--------------------------------------------------------------+
+ *  |   | Bits  | Description                                                  |
+ *  +===+=======+==============================================================+
+ *  | 0 |    31 | ORIGIN = GUC_HXG_ORIGIN_GUC_                                 |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   | 30:28 | TYPE = GUC_HXG_TYPE_RESPONSE_SUCCESS_                        |
+ *  |   +-------+--------------------------------------------------------------+
+ *  |   |  27:0 | DATA0 = MBZ                                                  |
+ *  +---+-------+--------------------------------------------------------------+
+ */
+#define GUC_ACTION_VF2GUC_RESFIX_START			0x550Fu
+
+#define VF2GUC_RESFIX_START_REQUEST_MSG_LEN		GUC_HXG_REQUEST_MSG_MIN_LEN
+#define VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER	GUC_HXG_REQUEST_MSG_0_DATA0
+
+#define VF2GUC_RESFIX_START_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
+#define VF2GUC_RESFIX_START_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
+
 #endif
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 4c73a077d314..8e3fba6521f0 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -299,12 +299,13 @@ void xe_gt_sriov_vf_guc_versions(struct xe_gt *gt,
 		*found = gt->sriov.vf.guc_version;
 }
 
-static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
+static int guc_action_vf_resfix_start(struct xe_guc *guc, u16 marker)
 {
 	u32 request[GUC_HXG_REQUEST_MSG_MIN_LEN] = {
 		FIELD_PREP(GUC_HXG_MSG_0_ORIGIN, GUC_HXG_ORIGIN_HOST) |
 		FIELD_PREP(GUC_HXG_MSG_0_TYPE, GUC_HXG_TYPE_REQUEST) |
-		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE),
+		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_RESFIX_START) |
+		FIELD_PREP(VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER, marker),
 	};
 	int ret;
 
@@ -313,30 +314,54 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
 	return ret > 0 ? -EPROTO : ret;
 }
 
-/**
- * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
- * @gt: the &xe_gt struct instance linked to target GuC
- *
- * Returns: 0 if the operation completed successfully, or a negative error
- * code otherwise.
- */
-static int vf_notify_resfix_done(struct xe_gt *gt)
+static int vf_resfix_start(struct xe_gt *gt, u16 marker)
 {
 	struct xe_guc *guc = &gt->uc.guc;
 	int err;
 
 	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
 
-	err = guc_action_vf_notify_resfix_done(guc);
+	xe_gt_sriov_dbg_verbose(gt, "Sending resfix start marker %u\n", marker);
+
+	err = guc_action_vf_resfix_start(guc, marker);
 	if (unlikely(err))
-		xe_gt_sriov_err(gt, "Failed to notify GuC about resource fixup done (%pe)\n",
+		xe_gt_sriov_err(gt, "Recovery failed at GuC RESFIX_START step (%pe)\n",
 				ERR_PTR(err));
-	else
-		xe_gt_sriov_dbg_verbose(gt, "sent GuC resource fixup done\n");
 
 	return err;
 }
 
+static int guc_action_vf_resfix_done(struct xe_guc *guc, u16 marker)
+{
+	u32 request[GUC_HXG_REQUEST_MSG_MIN_LEN] = {
+		FIELD_PREP(GUC_HXG_MSG_0_ORIGIN, GUC_HXG_ORIGIN_HOST) |
+		FIELD_PREP(GUC_HXG_MSG_0_TYPE, GUC_HXG_TYPE_REQUEST) |
+		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_RESFIX_DONE) |
+		FIELD_PREP(VF2GUC_RESFIX_DONE_REQUEST_MSG_0_MARKER, marker),
+	};
+	int ret;
+
+	ret = xe_guc_mmio_send(guc, request, ARRAY_SIZE(request));
+
+	return ret > 0 ? -EPROTO : ret;
+}
+
+static int vf_resfix_done(struct xe_gt *gt, u16 marker)
+{
+	struct xe_guc *guc = &gt->uc.guc;
+	int err;
+
+	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+	xe_gt_sriov_dbg_verbose(gt, "Sending resfix done marker %u\n", marker);
+
+	err = guc_action_vf_resfix_done(guc, marker);
+	if (unlikely(err && err != -EREMCHG))
+		xe_gt_sriov_err(gt, "Recovery failed at GuC RESFIX_DONE step (%pe)\n",
+				ERR_PTR(err));
+	return err;
+}
+
 static int guc_action_query_single_klv(struct xe_guc *guc, u32 key,
 				       u32 *value, u32 value_len)
 {
@@ -1183,22 +1208,16 @@ static void vf_post_migration_abort(struct xe_gt *gt)
 	xe_guc_submit_pause_abort(&gt->uc.guc);
 }
 
-static int vf_post_migration_notify_resfix_done(struct xe_gt *gt)
+static int vf_post_migration_resfix_done(struct xe_gt *gt, u16 marker)
 {
-	bool skip_resfix = false;
-
 	spin_lock_irq(&gt->sriov.vf.migration.lock);
 	if (gt->sriov.vf.migration.recovery_queued) {
-		skip_resfix = true;
-		xe_gt_sriov_dbg(gt, "another recovery imminent, resfix skipped\n");
+		xe_gt_sriov_dbg(gt, "another recovery imminent\n");
 	} else {
 		WRITE_ONCE(gt->sriov.vf.migration.recovery_inprogress, false);
 	}
 	spin_unlock_irq(&gt->sriov.vf.migration.lock);
 
-	if (skip_resfix)
-		return -EAGAIN;
-
 	/*
 	 * Make sure interrupts on the new HW are properly set. The GuC IRQ
 	 * must be working at this point, since the recovery did started,
@@ -1206,14 +1225,34 @@ static int vf_post_migration_notify_resfix_done(struct xe_gt *gt)
 	 */
 	xe_irq_resume(gt_to_xe(gt));
 
-	return vf_notify_resfix_done(gt);
+	return vf_resfix_done(gt, marker);
+}
+
+/*
+ * Reset the marker to 1 after it overflows since GuC requires a non-zero
+ * marker to be set.
+ */
+static u16 vf_post_migration_resfix_start_marker(struct xe_gt *gt)
+{
+	u16 marker;
+
+	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
+
+	marker = ++gt->sriov.vf.migration.resfix_marker;
+	if (unlikely(marker >= FIELD_MAX(VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER))) {
+		gt->sriov.vf.migration.resfix_marker = 1;
+		marker = gt->sriov.vf.migration.resfix_marker;
+	}
+
+	return marker;
 }
 
 static void vf_post_migration_recovery(struct xe_gt *gt)
 {
 	struct xe_device *xe = gt_to_xe(gt);
-	int err;
+	u16 marker;
 	bool retry;
+	int err;
 
 	xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
 
@@ -1227,14 +1266,22 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
 		goto fail;
 	}
 
+	marker = vf_post_migration_resfix_start_marker(gt);
+
+	err = vf_resfix_start(gt, marker);
+	if (err)
+		goto fail;
+
 	err = vf_post_migration_fixups(gt);
 	if (err)
 		goto fail;
 
 	vf_post_migration_rearm(gt);
 
-	err = vf_post_migration_notify_resfix_done(gt);
-	if (err && err != -EAGAIN)
+	err = vf_post_migration_resfix_done(gt, marker);
+	if (err == -EREMCHG)
+		goto queue;
+	else if (err)
 		goto fail;
 
 	vf_post_migration_kickstart(gt);
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
index 420b0e6089de..66c0062a42c6 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
@@ -52,6 +52,11 @@ struct xe_gt_sriov_vf_migration {
 	wait_queue_head_t wq;
 	/** @scratch: Scratch memory for VF recovery */
 	void *scratch;
+	/**
+	 * @resfix_marker: Marker sent on start and on end of post-migration
+	 * steps.
+	 */
+	u16 resfix_marker;
 	/** @recovery_teardown: VF post migration recovery is being torn down */
 	bool recovery_teardown;
 	/** @recovery_queued: VF post migration recovery in queued */
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index cf92de1c88a7..cf9820e036fa 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -1483,9 +1483,16 @@ int xe_guc_mmio_send_recv(struct xe_guc *guc, const u32 *request,
 		u32 hint = FIELD_GET(GUC_HXG_FAILURE_MSG_0_HINT, header);
 		u32 error = FIELD_GET(GUC_HXG_FAILURE_MSG_0_ERROR, header);
 
-		xe_gt_err(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
-			  request[0], error, hint);
-		return -ENXIO;
+		if (error == XE_GUC_RESPONSE_VF_MIGRATED) {
+			xe_gt_dbg(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
+				  request[0], error, hint);
+			ret = -EREMCHG;
+		} else {
+			xe_gt_err(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
+				  request[0], error, hint);
+			ret = -ENXIO;
+		}
+		return ret;
 	}
 
 	if (FIELD_GET(GUC_HXG_MSG_0_TYPE, header) !=
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index f53d68f2f1d2..0cc6ca3082e6 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -49,11 +49,13 @@
  *
  * As soon as Virtual GPU of the VM starts, the VF driver within receives
  * the MIGRATED interrupt and schedules post-migration recovery worker.
- * That worker queries GuC for new provisioning (using MMIO communication),
+ * That worker sends `VF2GUC_RESFIX_START` action along with non-zero
+ * marker, queries GuC for new provisioning (using MMIO communication),
  * and applies fixups to any non-virtualized resources used by the VF.
  *
  * When the VF driver is ready to continue operation on the newly connected
- * hardware, it sends `VF2GUC_NOTIFY_RESFIX_DONE` which causes it to
+ * hardware, it sends `VF2GUC_RESFIX_DONE` action along with the same
+ * marker which was sent with `VF2GUC_RESFIX_START` which causes it to
  * enter the long awaited `VF_RUNNING` state, and therefore start handling
  * CTB messages and scheduling workloads from the VF::
  *
@@ -102,12 +104,17 @@
  *      |                              [ ]        new VF provisioning  [ ]
  *      |                              [ ]---------------------------> [ ]
  *      |                               |                              [ ]
+ *      |                               |   VF2GUC_RESFIX_START        [ ]
+ *      |                              [ ] <---------------------------[ ]
+ *      |                              [ ]                             [ ]
+ *      |                              [ ]                     success [ ]
+ *      |                              [ ]---------------------------> [ ]
  *      |                               |       VF driver applies post [ ]
  *      |                               |      migration fixups -------[ ]
  *      |                               |                       |      [ ]
  *      |                               |                       -----> [ ]
  *      |                               |                              [ ]
- *      |                               |    VF2GUC_NOTIFY_RESFIX_DONE [ ]
+ *      |                               |    VF2GUC_RESFIX_DONE        [ ]
  *      |                              [ ] <---------------------------[ ]
  *      |                              [ ]                             [ ]
  *      |                              [ ]  GuC sets new VF state to   [ ]
@@ -118,6 +125,33 @@
  *      |                              [ ]---------------------------> [ ]
  *      |                               |                               |
  *      |                               |                               |
+ *
+ * Handling of VF double migration flow is shown below::
+ *
+ *     GuC                                              VF
+ *      |                                               |
+ *     [ ] VF2GUC_RESFIX_START                         [ ] <--------
+ *     [ ] <-------------------------------------------[ ]          |
+ *     [ ]                                             [ ]          |
+ *     [ ]                                     success [ ]          |
+ *     [ ] ------------------------------------------> [ ]          |
+ *      |  VF driver applies post  migration fixups    [ ]          |
+ *      |                                       -------[ ]  Restart |
+ *      |                                       |      [ ]   fixup  |
+ *      |                                       -----> [ ]  process |
+ *      |                                              [ ]   again  |
+ *      |  VF2GUC_RESFIX_DONE                          [ ]          |
+ *     [ ] <-------------------------------------------[ ]          |
+ *     [ ]                                             [ ]          |
+ *     [ ] Error - XE_GUC_RESPONSE_VF_MIGRATED         [ ]          |
+ *     [ ] (new migration was detected while the       [ ]          |
+ *     [ ]   resfix process was still in progress)     [ ]          |
+ *     [ ] ------------------------------------------> [ ] --------->
+ *     [ ]                                             [ ]
+ *     [ ]                                     success [ ]
+ *     [ ] ------------------------------------------> [ ]
+ *      |                                               |
+ *      |                                               |
  */
 
 /**
-- 
2.51.0


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

* [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
  2025-11-24 16:07 ` [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions Satyanarayana K V P
  2025-11-24 16:07 ` [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support Satyanarayana K V P
@ 2025-11-24 16:07 ` Satyanarayana K V P
  2025-11-27 16:51   ` Michal Wajdeczko
  2025-11-25  3:30 ` ✓ CI.KUnit: success for VF double migration (rev6) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Satyanarayana K V P @ 2025-11-24 16:07 UTC (permalink / raw)
  To: intel-xe; +Cc: Satyanarayana K V P, Michal Wajdeczko, Matthew Brost, Tomasz Lis

VF migration sends a marker to the GUC before resource fixups begin,
and repeats the marker with the RESFIX_DONE notification. This prevents
the GUC from submitting jobs during double migration events.

To reliably test double migration, a second migration must be triggered
while fixups from the first migration are still in progress. Since fixups
complete quickly, reproducing this scenario is difficult. Introduce
debugfs controls to add delays in the post-fixup phase, creating a
deterministic window for subsequent migrations.

New debugfs entries:
	/sys/kernel/debug/dri/<card>/
	├── gt0
	│   ├── vf
	│   │   ├── resfix_stoppers

- resfix_stoppers: Predefined checkpoints that allow the migration process
to pause at specific stages. The stages are given below.

VF_MIGRATION_WAIT_BEFORE_RESFIX_START	- BIT(0)
VF_MIGRATION_WAIT_BEFORE_FIXUPS		- BIT(1)
VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS	- BIT(2)
VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE	- BIT(3)

Each state will pause with a 1-second delay per iteration, continuing until
its corresponding bit is cleared.

Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>

---
V5 -> V6:
- Fixed review comments (Michal W).
- Removed timeout and VF KMD waits infinately when resfix_stoppers bits are
set.
- Created helper macro for WAIT positions.

V4 -> V5:
- Updated debugfs entries (Michal W).

V3 -> V4:
- New commit

V2 -> V3:
- None.

V1 -> V2:
- None.
---
 drivers/gpu/drm/xe/xe_gt_sriov_vf.c         | 38 +++++++++++++++++++++
 drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c |  5 +++
 drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h   |  8 +++++
 3 files changed, 51 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 8e3fba6521f0..aabc3064c3ef 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -5,6 +5,7 @@
 
 #include <linux/bitfield.h>
 #include <linux/bsearch.h>
+#include <linux/delay.h>
 
 #include <drm/drm_managed.h>
 #include <drm/drm_print.h>
@@ -1228,6 +1229,35 @@ static int vf_post_migration_resfix_done(struct xe_gt *gt, u16 marker)
 	return vf_resfix_done(gt, marker);
 }
 
+#define VF_MIGRATION_WAIT_NO_WAIT			0
+#define VF_MIGRATION_WAIT_BEFORE_RESFIX_START		BIT(0)
+#define VF_MIGRATION_WAIT_BEFORE_FIXUPS			BIT(1)
+#define VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS		BIT(2)
+#define VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE		BIT(3)
+
+#define VF_MIGRATION_WAIT_DELAY_IN_MS			1000
+
+#define VF_MIGRATION_INJECT_WAIT(gt, _POS) ({	\
+	struct xe_gt *__gt = (gt);		\
+	vf_post_migration_inject_wait(__gt, VF_MIGRATION_WAIT_##_POS); \
+	})
+
+#ifdef CONFIG_DRM_XE_DEBUG
+static void vf_post_migration_inject_wait(struct xe_gt *gt, int wait)
+{
+	uint delay_ms = VF_MIGRATION_WAIT_DELAY_IN_MS;
+
+	while (gt->sriov.vf.migration.debug.resfix_stoppers &  wait) {
+		xe_gt_dbg(gt, "*TESTING* injecting delay due to resfix_stoppers = 0x%x\n",
+			  gt->sriov.vf.migration.debug.resfix_stoppers);
+
+		msleep(delay_ms);
+	}
+}
+#else
+static void vf_post_migration_inject_wait(struct xe_gt *gt, int wait) { }
+#endif
+
 /*
  * Reset the marker to 1 after it overflows since GuC requires a non-zero
  * marker to be set.
@@ -1266,18 +1296,26 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
 		goto fail;
 	}
 
+	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESFIX_START);
+
 	marker = vf_post_migration_resfix_start_marker(gt);
 
 	err = vf_resfix_start(gt, marker);
 	if (err)
 		goto fail;
 
+	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_FIXUPS);
+
 	err = vf_post_migration_fixups(gt);
 	if (err)
 		goto fail;
 
+	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESTART_JOBS);
+
 	vf_post_migration_rearm(gt);
 
+	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESFIX_DONE);
+
 	err = vf_post_migration_resfix_done(gt, marker);
 	if (err == -EREMCHG)
 		goto queue;
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
index 2ed5b6780d30..66d5ffd0e371 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
@@ -69,4 +69,9 @@ void xe_gt_sriov_vf_debugfs_register(struct xe_gt *gt, struct dentry *root)
 	vfdentry->d_inode->i_private = gt;
 
 	drm_debugfs_create_files(vf_info, ARRAY_SIZE(vf_info), vfdentry, minor);
+
+	if (IS_ENABLED(CONFIG_DRM_XE_DEBUG)) {
+		debugfs_create_x8("resfix_stoppers", 0600, vfdentry,
+				  &gt->sriov.vf.migration.debug.resfix_stoppers);
+	}
 }
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
index 66c0062a42c6..3ece00f74e46 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
@@ -52,6 +52,14 @@ struct xe_gt_sriov_vf_migration {
 	wait_queue_head_t wq;
 	/** @scratch: Scratch memory for VF recovery */
 	void *scratch;
+	/** @debug: Debug hooks for delaying migration */
+	struct {
+		/**
+		 * @debug.resfix_stoppers: Stop and wait at different stages
+		 * during post migration recovery
+		 */
+		u8 resfix_stoppers;
+	} debug;
 	/**
 	 * @resfix_marker: Marker sent on start and on end of post-migration
 	 * steps.
-- 
2.51.0


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

* ✓ CI.KUnit: success for VF double migration (rev6)
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
                   ` (2 preceding siblings ...)
  2025-11-24 16:07 ` [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration Satyanarayana K V P
@ 2025-11-25  3:30 ` Patchwork
  2025-11-25  4:08 ` ✓ Xe.CI.BAT: " Patchwork
  2025-11-25  6:55 ` ✗ Xe.CI.Full: failure " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-11-25  3:30 UTC (permalink / raw)
  To: Satyanarayana K V P; +Cc: intel-xe

== Series Details ==

Series: VF double migration (rev6)
URL   : https://patchwork.freedesktop.org/series/156339/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[03:29:06] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[03:29:11] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[03:29:43] Starting KUnit Kernel (1/1)...
[03:29:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[03:29:43] ================== guc_buf (11 subtests) ===================
[03:29:43] [PASSED] test_smallest
[03:29:43] [PASSED] test_largest
[03:29:43] [PASSED] test_granular
[03:29:43] [PASSED] test_unique
[03:29:43] [PASSED] test_overlap
[03:29:43] [PASSED] test_reusable
[03:29:43] [PASSED] test_too_big
[03:29:43] [PASSED] test_flush
[03:29:43] [PASSED] test_lookup
[03:29:43] [PASSED] test_data
[03:29:43] [PASSED] test_class
[03:29:43] ===================== [PASSED] guc_buf =====================
[03:29:43] =================== guc_dbm (7 subtests) ===================
[03:29:43] [PASSED] test_empty
[03:29:43] [PASSED] test_default
[03:29:43] ======================== test_size  ========================
[03:29:43] [PASSED] 4
[03:29:43] [PASSED] 8
[03:29:43] [PASSED] 32
[03:29:43] [PASSED] 256
[03:29:43] ==================== [PASSED] test_size ====================
[03:29:43] ======================= test_reuse  ========================
[03:29:43] [PASSED] 4
[03:29:43] [PASSED] 8
[03:29:43] [PASSED] 32
[03:29:43] [PASSED] 256
[03:29:43] =================== [PASSED] test_reuse ====================
[03:29:43] =================== test_range_overlap  ====================
[03:29:43] [PASSED] 4
[03:29:43] [PASSED] 8
[03:29:43] [PASSED] 32
[03:29:43] [PASSED] 256
[03:29:43] =============== [PASSED] test_range_overlap ================
[03:29:43] =================== test_range_compact  ====================
[03:29:43] [PASSED] 4
[03:29:43] [PASSED] 8
[03:29:43] [PASSED] 32
[03:29:43] [PASSED] 256
[03:29:43] =============== [PASSED] test_range_compact ================
[03:29:43] ==================== test_range_spare  =====================
[03:29:43] [PASSED] 4
[03:29:43] [PASSED] 8
[03:29:43] [PASSED] 32
[03:29:43] [PASSED] 256
[03:29:43] ================ [PASSED] test_range_spare =================
[03:29:43] ===================== [PASSED] guc_dbm =====================
[03:29:43] =================== guc_idm (6 subtests) ===================
[03:29:43] [PASSED] bad_init
[03:29:43] [PASSED] no_init
[03:29:43] [PASSED] init_fini
[03:29:43] [PASSED] check_used
[03:29:43] [PASSED] check_quota
[03:29:43] [PASSED] check_all
[03:29:43] ===================== [PASSED] guc_idm =====================
[03:29:43] ================== no_relay (3 subtests) ===================
[03:29:43] [PASSED] xe_drops_guc2pf_if_not_ready
[03:29:43] [PASSED] xe_drops_guc2vf_if_not_ready
[03:29:43] [PASSED] xe_rejects_send_if_not_ready
[03:29:43] ==================== [PASSED] no_relay =====================
[03:29:43] ================== pf_relay (14 subtests) ==================
[03:29:43] [PASSED] pf_rejects_guc2pf_too_short
[03:29:43] [PASSED] pf_rejects_guc2pf_too_long
[03:29:43] [PASSED] pf_rejects_guc2pf_no_payload
[03:29:43] [PASSED] pf_fails_no_payload
[03:29:43] [PASSED] pf_fails_bad_origin
[03:29:43] [PASSED] pf_fails_bad_type
[03:29:43] [PASSED] pf_txn_reports_error
[03:29:43] [PASSED] pf_txn_sends_pf2guc
[03:29:43] [PASSED] pf_sends_pf2guc
[03:29:43] [SKIPPED] pf_loopback_nop
[03:29:43] [SKIPPED] pf_loopback_echo
[03:29:43] [SKIPPED] pf_loopback_fail
[03:29:43] [SKIPPED] pf_loopback_busy
[03:29:43] [SKIPPED] pf_loopback_retry
[03:29:43] ==================== [PASSED] pf_relay =====================
[03:29:43] ================== vf_relay (3 subtests) ===================
[03:29:43] [PASSED] vf_rejects_guc2vf_too_short
[03:29:43] [PASSED] vf_rejects_guc2vf_too_long
[03:29:43] [PASSED] vf_rejects_guc2vf_no_payload
[03:29:43] ==================== [PASSED] vf_relay =====================
[03:29:43] ================ pf_gt_config (6 subtests) =================
[03:29:43] [PASSED] fair_contexts_1vf
[03:29:43] [PASSED] fair_doorbells_1vf
[03:29:43] [PASSED] fair_ggtt_1vf
[03:29:43] ====================== fair_contexts  ======================
[03:29:43] [PASSED] 1 VF
[03:29:43] [PASSED] 2 VFs
[03:29:43] [PASSED] 3 VFs
[03:29:43] [PASSED] 4 VFs
[03:29:43] [PASSED] 5 VFs
[03:29:43] [PASSED] 6 VFs
[03:29:43] [PASSED] 7 VFs
[03:29:43] [PASSED] 8 VFs
[03:29:43] [PASSED] 9 VFs
[03:29:43] [PASSED] 10 VFs
[03:29:43] [PASSED] 11 VFs
[03:29:43] [PASSED] 12 VFs
[03:29:43] [PASSED] 13 VFs
[03:29:43] [PASSED] 14 VFs
[03:29:43] [PASSED] 15 VFs
[03:29:43] [PASSED] 16 VFs
[03:29:43] [PASSED] 17 VFs
[03:29:43] [PASSED] 18 VFs
[03:29:43] [PASSED] 19 VFs
[03:29:43] [PASSED] 20 VFs
[03:29:43] [PASSED] 21 VFs
[03:29:43] [PASSED] 22 VFs
[03:29:43] [PASSED] 23 VFs
[03:29:43] [PASSED] 24 VFs
[03:29:43] [PASSED] 25 VFs
[03:29:43] [PASSED] 26 VFs
[03:29:43] [PASSED] 27 VFs
[03:29:43] [PASSED] 28 VFs
[03:29:43] [PASSED] 29 VFs
[03:29:43] [PASSED] 30 VFs
[03:29:43] [PASSED] 31 VFs
[03:29:43] [PASSED] 32 VFs
[03:29:43] [PASSED] 33 VFs
[03:29:43] [PASSED] 34 VFs
[03:29:43] [PASSED] 35 VFs
[03:29:43] [PASSED] 36 VFs
[03:29:43] [PASSED] 37 VFs
[03:29:43] [PASSED] 38 VFs
[03:29:43] [PASSED] 39 VFs
[03:29:43] [PASSED] 40 VFs
[03:29:43] [PASSED] 41 VFs
[03:29:43] [PASSED] 42 VFs
[03:29:43] [PASSED] 43 VFs
[03:29:43] [PASSED] 44 VFs
[03:29:43] [PASSED] 45 VFs
[03:29:43] [PASSED] 46 VFs
[03:29:43] [PASSED] 47 VFs
[03:29:43] [PASSED] 48 VFs
[03:29:43] [PASSED] 49 VFs
[03:29:43] [PASSED] 50 VFs
[03:29:43] [PASSED] 51 VFs
[03:29:43] [PASSED] 52 VFs
[03:29:43] [PASSED] 53 VFs
[03:29:43] [PASSED] 54 VFs
[03:29:43] [PASSED] 55 VFs
[03:29:43] [PASSED] 56 VFs
[03:29:43] [PASSED] 57 VFs
[03:29:43] [PASSED] 58 VFs
[03:29:43] [PASSED] 59 VFs
[03:29:43] [PASSED] 60 VFs
[03:29:43] [PASSED] 61 VFs
[03:29:43] [PASSED] 62 VFs
[03:29:43] [PASSED] 63 VFs
[03:29:43] ================== [PASSED] fair_contexts ==================
[03:29:43] ===================== fair_doorbells  ======================
[03:29:43] [PASSED] 1 VF
[03:29:43] [PASSED] 2 VFs
[03:29:43] [PASSED] 3 VFs
[03:29:43] [PASSED] 4 VFs
[03:29:43] [PASSED] 5 VFs
[03:29:43] [PASSED] 6 VFs
[03:29:43] [PASSED] 7 VFs
[03:29:43] [PASSED] 8 VFs
[03:29:43] [PASSED] 9 VFs
[03:29:43] [PASSED] 10 VFs
[03:29:43] [PASSED] 11 VFs
[03:29:43] [PASSED] 12 VFs
[03:29:43] [PASSED] 13 VFs
[03:29:43] [PASSED] 14 VFs
[03:29:43] [PASSED] 15 VFs
[03:29:43] [PASSED] 16 VFs
[03:29:43] [PASSED] 17 VFs
[03:29:43] [PASSED] 18 VFs
[03:29:43] [PASSED] 19 VFs
[03:29:43] [PASSED] 20 VFs
[03:29:43] [PASSED] 21 VFs
[03:29:43] [PASSED] 22 VFs
[03:29:43] [PASSED] 23 VFs
[03:29:43] [PASSED] 24 VFs
[03:29:43] [PASSED] 25 VFs
[03:29:43] [PASSED] 26 VFs
[03:29:43] [PASSED] 27 VFs
[03:29:43] [PASSED] 28 VFs
[03:29:43] [PASSED] 29 VFs
[03:29:43] [PASSED] 30 VFs
[03:29:43] [PASSED] 31 VFs
[03:29:43] [PASSED] 32 VFs
[03:29:43] [PASSED] 33 VFs
[03:29:43] [PASSED] 34 VFs
[03:29:43] [PASSED] 35 VFs
[03:29:43] [PASSED] 36 VFs
[03:29:43] [PASSED] 37 VFs
[03:29:43] [PASSED] 38 VFs
[03:29:43] [PASSED] 39 VFs
[03:29:43] [PASSED] 40 VFs
[03:29:43] [PASSED] 41 VFs
[03:29:43] [PASSED] 42 VFs
[03:29:43] [PASSED] 43 VFs
[03:29:43] [PASSED] 44 VFs
[03:29:43] [PASSED] 45 VFs
[03:29:43] [PASSED] 46 VFs
[03:29:43] [PASSED] 47 VFs
[03:29:43] [PASSED] 48 VFs
[03:29:43] [PASSED] 49 VFs
[03:29:43] [PASSED] 50 VFs
[03:29:43] [PASSED] 51 VFs
[03:29:43] [PASSED] 52 VFs
[03:29:43] [PASSED] 53 VFs
[03:29:43] [PASSED] 54 VFs
[03:29:43] [PASSED] 55 VFs
[03:29:43] [PASSED] 56 VFs
[03:29:43] [PASSED] 57 VFs
[03:29:43] [PASSED] 58 VFs
[03:29:43] [PASSED] 59 VFs
[03:29:43] [PASSED] 60 VFs
[03:29:43] [PASSED] 61 VFs
[03:29:43] [PASSED] 62 VFs
[03:29:43] [PASSED] 63 VFs
[03:29:43] ================= [PASSED] fair_doorbells ==================
[03:29:43] ======================== fair_ggtt  ========================
[03:29:43] [PASSED] 1 VF
[03:29:43] [PASSED] 2 VFs
[03:29:43] [PASSED] 3 VFs
[03:29:43] [PASSED] 4 VFs
[03:29:43] [PASSED] 5 VFs
[03:29:43] [PASSED] 6 VFs
[03:29:43] [PASSED] 7 VFs
[03:29:43] [PASSED] 8 VFs
[03:29:43] [PASSED] 9 VFs
[03:29:43] [PASSED] 10 VFs
[03:29:43] [PASSED] 11 VFs
[03:29:43] [PASSED] 12 VFs
[03:29:43] [PASSED] 13 VFs
[03:29:43] [PASSED] 14 VFs
[03:29:43] [PASSED] 15 VFs
[03:29:43] [PASSED] 16 VFs
[03:29:43] [PASSED] 17 VFs
[03:29:43] [PASSED] 18 VFs
[03:29:43] [PASSED] 19 VFs
[03:29:43] [PASSED] 20 VFs
[03:29:43] [PASSED] 21 VFs
[03:29:43] [PASSED] 22 VFs
[03:29:43] [PASSED] 23 VFs
[03:29:43] [PASSED] 24 VFs
[03:29:43] [PASSED] 25 VFs
[03:29:43] [PASSED] 26 VFs
[03:29:43] [PASSED] 27 VFs
[03:29:43] [PASSED] 28 VFs
[03:29:43] [PASSED] 29 VFs
[03:29:43] [PASSED] 30 VFs
[03:29:43] [PASSED] 31 VFs
[03:29:43] [PASSED] 32 VFs
[03:29:43] [PASSED] 33 VFs
[03:29:43] [PASSED] 34 VFs
[03:29:43] [PASSED] 35 VFs
[03:29:43] [PASSED] 36 VFs
[03:29:43] [PASSED] 37 VFs
[03:29:43] [PASSED] 38 VFs
[03:29:43] [PASSED] 39 VFs
[03:29:43] [PASSED] 40 VFs
[03:29:43] [PASSED] 41 VFs
[03:29:43] [PASSED] 42 VFs
[03:29:43] [PASSED] 43 VFs
[03:29:43] [PASSED] 44 VFs
[03:29:43] [PASSED] 45 VFs
[03:29:43] [PASSED] 46 VFs
[03:29:43] [PASSED] 47 VFs
[03:29:43] [PASSED] 48 VFs
[03:29:43] [PASSED] 49 VFs
[03:29:43] [PASSED] 50 VFs
[03:29:43] [PASSED] 51 VFs
[03:29:43] [PASSED] 52 VFs
[03:29:43] [PASSED] 53 VFs
[03:29:43] [PASSED] 54 VFs
[03:29:43] [PASSED] 55 VFs
[03:29:43] [PASSED] 56 VFs
[03:29:43] [PASSED] 57 VFs
[03:29:43] [PASSED] 58 VFs
[03:29:43] [PASSED] 59 VFs
[03:29:43] [PASSED] 60 VFs
[03:29:43] [PASSED] 61 VFs
[03:29:43] [PASSED] 62 VFs
[03:29:43] [PASSED] 63 VFs
[03:29:43] ==================== [PASSED] fair_ggtt ====================
[03:29:43] ================== [PASSED] pf_gt_config ===================
[03:29:43] ===================== lmtt (1 subtest) =====================
[03:29:43] ======================== test_ops  =========================
[03:29:43] [PASSED] 2-level
[03:29:43] [PASSED] multi-level
[03:29:43] ==================== [PASSED] test_ops =====================
[03:29:43] ====================== [PASSED] lmtt =======================
[03:29:43] ================= pf_service (11 subtests) =================
[03:29:43] [PASSED] pf_negotiate_any
[03:29:43] [PASSED] pf_negotiate_base_match
[03:29:43] [PASSED] pf_negotiate_base_newer
[03:29:43] [PASSED] pf_negotiate_base_next
[03:29:43] [SKIPPED] pf_negotiate_base_older
[03:29:43] [PASSED] pf_negotiate_base_prev
[03:29:43] [PASSED] pf_negotiate_latest_match
[03:29:43] [PASSED] pf_negotiate_latest_newer
[03:29:43] [PASSED] pf_negotiate_latest_next
[03:29:43] [SKIPPED] pf_negotiate_latest_older
[03:29:43] [SKIPPED] pf_negotiate_latest_prev
[03:29:43] =================== [PASSED] pf_service ====================
[03:29:43] ================= xe_guc_g2g (2 subtests) ==================
[03:29:43] ============== xe_live_guc_g2g_kunit_default  ==============
[03:29:43] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[03:29:43] ============== xe_live_guc_g2g_kunit_allmem  ===============
[03:29:43] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[03:29:43] =================== [SKIPPED] xe_guc_g2g ===================
[03:29:43] =================== xe_mocs (2 subtests) ===================
[03:29:43] ================ xe_live_mocs_kernel_kunit  ================
[03:29:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[03:29:43] ================ xe_live_mocs_reset_kunit  =================
[03:29:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[03:29:43] ==================== [SKIPPED] xe_mocs =====================
[03:29:43] ================= xe_migrate (2 subtests) ==================
[03:29:43] ================= xe_migrate_sanity_kunit  =================
[03:29:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[03:29:43] ================== xe_validate_ccs_kunit  ==================
[03:29:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[03:29:43] =================== [SKIPPED] xe_migrate ===================
[03:29:43] ================== xe_dma_buf (1 subtest) ==================
[03:29:43] ==================== xe_dma_buf_kunit  =====================
[03:29:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[03:29:43] =================== [SKIPPED] xe_dma_buf ===================
[03:29:43] ================= xe_bo_shrink (1 subtest) =================
[03:29:43] =================== xe_bo_shrink_kunit  ====================
[03:29:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[03:29:43] ================== [SKIPPED] xe_bo_shrink ==================
[03:29:43] ==================== xe_bo (2 subtests) ====================
[03:29:43] ================== xe_ccs_migrate_kunit  ===================
[03:29:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[03:29:43] ==================== xe_bo_evict_kunit  ====================
[03:29:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[03:29:43] ===================== [SKIPPED] xe_bo ======================
[03:29:43] ==================== args (11 subtests) ====================
[03:29:43] [PASSED] count_args_test
[03:29:43] [PASSED] call_args_example
[03:29:43] [PASSED] call_args_test
[03:29:43] [PASSED] drop_first_arg_example
[03:29:43] [PASSED] drop_first_arg_test
[03:29:43] [PASSED] first_arg_example
[03:29:43] [PASSED] first_arg_test
[03:29:43] [PASSED] last_arg_example
[03:29:43] [PASSED] last_arg_test
[03:29:43] [PASSED] pick_arg_example
[03:29:43] [PASSED] sep_comma_example
[03:29:43] ====================== [PASSED] args =======================
[03:29:43] =================== xe_pci (3 subtests) ====================
[03:29:43] ==================== check_graphics_ip  ====================
[03:29:43] [PASSED] 12.00 Xe_LP
[03:29:43] [PASSED] 12.10 Xe_LP+
[03:29:43] [PASSED] 12.55 Xe_HPG
[03:29:43] [PASSED] 12.60 Xe_HPC
[03:29:43] [PASSED] 12.70 Xe_LPG
[03:29:43] [PASSED] 12.71 Xe_LPG
[03:29:43] [PASSED] 12.74 Xe_LPG+
[03:29:43] [PASSED] 20.01 Xe2_HPG
[03:29:43] [PASSED] 20.02 Xe2_HPG
[03:29:43] [PASSED] 20.04 Xe2_LPG
[03:29:43] [PASSED] 30.00 Xe3_LPG
[03:29:43] [PASSED] 30.01 Xe3_LPG
[03:29:43] [PASSED] 30.03 Xe3_LPG
[03:29:43] [PASSED] 30.04 Xe3_LPG
[03:29:43] [PASSED] 30.05 Xe3_LPG
[03:29:43] [PASSED] 35.11 Xe3p_XPC
[03:29:43] ================ [PASSED] check_graphics_ip ================
[03:29:43] ===================== check_media_ip  ======================
[03:29:43] [PASSED] 12.00 Xe_M
[03:29:43] [PASSED] 12.55 Xe_HPM
[03:29:43] [PASSED] 13.00 Xe_LPM+
[03:29:43] [PASSED] 13.01 Xe2_HPM
[03:29:43] [PASSED] 20.00 Xe2_LPM
[03:29:43] [PASSED] 30.00 Xe3_LPM
[03:29:43] [PASSED] 30.02 Xe3_LPM
[03:29:43] [PASSED] 35.00 Xe3p_LPM
[03:29:43] [PASSED] 35.03 Xe3p_HPM
[03:29:43] ================= [PASSED] check_media_ip ==================
[03:29:43] =================== check_platform_desc  ===================
[03:29:43] [PASSED] 0x9A60 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A68 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A70 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A40 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A49 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A59 (TIGERLAKE)
[03:29:43] [PASSED] 0x9A78 (TIGERLAKE)
[03:29:43] [PASSED] 0x9AC0 (TIGERLAKE)
[03:29:43] [PASSED] 0x9AC9 (TIGERLAKE)
[03:29:43] [PASSED] 0x9AD9 (TIGERLAKE)
[03:29:43] [PASSED] 0x9AF8 (TIGERLAKE)
[03:29:43] [PASSED] 0x4C80 (ROCKETLAKE)
[03:29:43] [PASSED] 0x4C8A (ROCKETLAKE)
[03:29:43] [PASSED] 0x4C8B (ROCKETLAKE)
[03:29:43] [PASSED] 0x4C8C (ROCKETLAKE)
[03:29:43] [PASSED] 0x4C90 (ROCKETLAKE)
[03:29:43] [PASSED] 0x4C9A (ROCKETLAKE)
[03:29:43] [PASSED] 0x4680 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4682 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4688 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x468A (ALDERLAKE_S)
[03:29:43] [PASSED] 0x468B (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4690 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4692 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4693 (ALDERLAKE_S)
[03:29:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46AA (ALDERLAKE_P)
[03:29:43] [PASSED] 0x462A (ALDERLAKE_P)
[03:29:43] [PASSED] 0x4626 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x4628 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[03:29:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[03:29:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[03:29:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[03:29:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[03:29:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[03:29:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[03:29:43] [PASSED] 0xA721 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA720 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[03:29:43] [PASSED] 0xA780 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA781 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA782 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA783 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA788 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA789 (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA78A (ALDERLAKE_S)
[03:29:43] [PASSED] 0xA78B (ALDERLAKE_S)
[03:29:43] [PASSED] 0x4905 (DG1)
[03:29:43] [PASSED] 0x4906 (DG1)
[03:29:43] [PASSED] 0x4907 (DG1)
[03:29:43] [PASSED] 0x4908 (DG1)
[03:29:43] [PASSED] 0x4909 (DG1)
[03:29:43] [PASSED] 0x56C0 (DG2)
[03:29:43] [PASSED] 0x56C2 (DG2)
[03:29:43] [PASSED] 0x56C1 (DG2)
[03:29:43] [PASSED] 0x7D51 (METEORLAKE)
[03:29:43] [PASSED] 0x7DD1 (METEORLAKE)
[03:29:43] [PASSED] 0x7D41 (METEORLAKE)
[03:29:43] [PASSED] 0x7D67 (METEORLAKE)
[03:29:43] [PASSED] 0xB640 (METEORLAKE)
[03:29:43] [PASSED] 0x56A0 (DG2)
[03:29:43] [PASSED] 0x56A1 (DG2)
[03:29:43] [PASSED] 0x56A2 (DG2)
[03:29:43] [PASSED] 0x56BE (DG2)
[03:29:43] [PASSED] 0x56BF (DG2)
[03:29:43] [PASSED] 0x5690 (DG2)
[03:29:43] [PASSED] 0x5691 (DG2)
[03:29:43] [PASSED] 0x5692 (DG2)
[03:29:43] [PASSED] 0x56A5 (DG2)
[03:29:43] [PASSED] 0x56A6 (DG2)
[03:29:43] [PASSED] 0x56B0 (DG2)
[03:29:43] [PASSED] 0x56B1 (DG2)
[03:29:43] [PASSED] 0x56BA (DG2)
[03:29:43] [PASSED] 0x56BB (DG2)
[03:29:43] [PASSED] 0x56BC (DG2)
[03:29:43] [PASSED] 0x56BD (DG2)
[03:29:43] [PASSED] 0x5693 (DG2)
[03:29:43] [PASSED] 0x5694 (DG2)
[03:29:43] [PASSED] 0x5695 (DG2)
[03:29:43] [PASSED] 0x56A3 (DG2)
[03:29:43] [PASSED] 0x56A4 (DG2)
[03:29:43] [PASSED] 0x56B2 (DG2)
[03:29:43] [PASSED] 0x56B3 (DG2)
[03:29:43] [PASSED] 0x5696 (DG2)
[03:29:43] [PASSED] 0x5697 (DG2)
[03:29:43] [PASSED] 0xB69 (PVC)
[03:29:43] [PASSED] 0xB6E (PVC)
[03:29:43] [PASSED] 0xBD4 (PVC)
[03:29:43] [PASSED] 0xBD5 (PVC)
[03:29:43] [PASSED] 0xBD6 (PVC)
[03:29:43] [PASSED] 0xBD7 (PVC)
[03:29:43] [PASSED] 0xBD8 (PVC)
[03:29:43] [PASSED] 0xBD9 (PVC)
[03:29:43] [PASSED] 0xBDA (PVC)
[03:29:43] [PASSED] 0xBDB (PVC)
[03:29:43] [PASSED] 0xBE0 (PVC)
[03:29:43] [PASSED] 0xBE1 (PVC)
[03:29:43] [PASSED] 0xBE5 (PVC)
[03:29:43] [PASSED] 0x7D40 (METEORLAKE)
[03:29:43] [PASSED] 0x7D45 (METEORLAKE)
[03:29:43] [PASSED] 0x7D55 (METEORLAKE)
[03:29:43] [PASSED] 0x7D60 (METEORLAKE)
[03:29:43] [PASSED] 0x7DD5 (METEORLAKE)
[03:29:43] [PASSED] 0x6420 (LUNARLAKE)
[03:29:43] [PASSED] 0x64A0 (LUNARLAKE)
[03:29:43] [PASSED] 0x64B0 (LUNARLAKE)
[03:29:43] [PASSED] 0xE202 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE209 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE20B (BATTLEMAGE)
[03:29:43] [PASSED] 0xE20C (BATTLEMAGE)
[03:29:43] [PASSED] 0xE20D (BATTLEMAGE)
[03:29:43] [PASSED] 0xE210 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE211 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE212 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE216 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE220 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE221 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE222 (BATTLEMAGE)
[03:29:43] [PASSED] 0xE223 (BATTLEMAGE)
[03:29:43] [PASSED] 0xB080 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB081 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB082 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB083 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB084 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB085 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB086 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB087 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB08F (PANTHERLAKE)
[03:29:43] [PASSED] 0xB090 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[03:29:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[03:29:43] [PASSED] 0xD740 (NOVALAKE_S)
[03:29:43] [PASSED] 0xD741 (NOVALAKE_S)
[03:29:43] [PASSED] 0xD742 (NOVALAKE_S)
[03:29:43] [PASSED] 0xD743 (NOVALAKE_S)
[03:29:43] [PASSED] 0xD744 (NOVALAKE_S)
[03:29:43] [PASSED] 0xD745 (NOVALAKE_S)
[03:29:43] [PASSED] 0x674C (CRESCENTISLAND)
[03:29:43] [PASSED] 0xFD80 (PANTHERLAKE)
[03:29:43] [PASSED] 0xFD81 (PANTHERLAKE)
[03:29:43] =============== [PASSED] check_platform_desc ===============
[03:29:43] ===================== [PASSED] xe_pci ======================
[03:29:43] =================== xe_rtp (2 subtests) ====================
[03:29:43] =============== xe_rtp_process_to_sr_tests  ================
[03:29:43] [PASSED] coalesce-same-reg
[03:29:43] [PASSED] no-match-no-add
[03:29:43] [PASSED] match-or
[03:29:43] [PASSED] match-or-xfail
[03:29:43] [PASSED] no-match-no-add-multiple-rules
[03:29:43] [PASSED] two-regs-two-entries
[03:29:43] [PASSED] clr-one-set-other
[03:29:43] [PASSED] set-field
[03:29:43] [PASSED] conflict-duplicate
[03:29:43] [PASSED] conflict-not-disjoint
[03:29:43] [PASSED] conflict-reg-type
[03:29:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[03:29:43] ================== xe_rtp_process_tests  ===================
[03:29:43] [PASSED] active1
[03:29:43] [PASSED] active2
[03:29:43] [PASSED] active-inactive
[03:29:43] [PASSED] inactive-active
[03:29:43] [PASSED] inactive-1st_or_active-inactive
[03:29:43] [PASSED] inactive-2nd_or_active-inactive
[03:29:43] [PASSED] inactive-last_or_active-inactive
[03:29:43] [PASSED] inactive-no_or_active-inactive
[03:29:43] ============== [PASSED] xe_rtp_process_tests ===============
[03:29:43] ===================== [PASSED] xe_rtp ======================
[03:29:43] ==================== xe_wa (1 subtest) =====================
[03:29:43] ======================== xe_wa_gt  =========================
[03:29:43] [PASSED] TIGERLAKE B0
[03:29:43] [PASSED] DG1 A0
[03:29:43] [PASSED] DG1 B0
[03:29:43] [PASSED] ALDERLAKE_S A0
[03:29:43] [PASSED] ALDERLAKE_S B0
[03:29:43] [PASSED] ALDERLAKE_S C0
[03:29:43] [PASSED] ALDERLAKE_S D0
[03:29:44] [PASSED] ALDERLAKE_P A0
[03:29:44] [PASSED] ALDERLAKE_P B0
[03:29:44] [PASSED] ALDERLAKE_P C0
[03:29:44] [PASSED] ALDERLAKE_S RPLS D0
[03:29:44] [PASSED] ALDERLAKE_P RPLU E0
[03:29:44] [PASSED] DG2 G10 C0
[03:29:44] [PASSED] DG2 G11 B1
[03:29:44] [PASSED] DG2 G12 A1
[03:29:44] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[03:29:44] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[03:29:44] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[03:29:44] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[03:29:44] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[03:29:44] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[03:29:44] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[03:29:44] ==================== [PASSED] xe_wa_gt =====================
[03:29:44] ====================== [PASSED] xe_wa ======================
[03:29:44] ============================================================
[03:29:44] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[03:29:44] Elapsed time: 37.090s total, 4.297s configuring, 32.325s building, 0.457s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[03:29:44] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[03:29:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[03:30:11] Starting KUnit Kernel (1/1)...
[03:30:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[03:30:11] ============ drm_test_pick_cmdline (2 subtests) ============
[03:30:11] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[03:30:11] =============== drm_test_pick_cmdline_named  ===============
[03:30:11] [PASSED] NTSC
[03:30:11] [PASSED] NTSC-J
[03:30:11] [PASSED] PAL
[03:30:11] [PASSED] PAL-M
[03:30:11] =========== [PASSED] drm_test_pick_cmdline_named ===========
[03:30:11] ============== [PASSED] drm_test_pick_cmdline ==============
[03:30:11] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[03:30:11] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[03:30:11] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[03:30:11] =========== drm_validate_clone_mode (2 subtests) ===========
[03:30:11] ============== drm_test_check_in_clone_mode  ===============
[03:30:11] [PASSED] in_clone_mode
[03:30:11] [PASSED] not_in_clone_mode
[03:30:11] ========== [PASSED] drm_test_check_in_clone_mode ===========
[03:30:11] =============== drm_test_check_valid_clones  ===============
[03:30:11] [PASSED] not_in_clone_mode
[03:30:11] [PASSED] valid_clone
[03:30:11] [PASSED] invalid_clone
[03:30:11] =========== [PASSED] drm_test_check_valid_clones ===========
[03:30:11] ============= [PASSED] drm_validate_clone_mode =============
[03:30:11] ============= drm_validate_modeset (1 subtest) =============
[03:30:11] [PASSED] drm_test_check_connector_changed_modeset
[03:30:11] ============== [PASSED] drm_validate_modeset ===============
[03:30:11] ====== drm_test_bridge_get_current_state (2 subtests) ======
[03:30:11] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[03:30:11] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[03:30:11] ======== [PASSED] drm_test_bridge_get_current_state ========
[03:30:11] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[03:30:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[03:30:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[03:30:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[03:30:11] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[03:30:11] ============== drm_bridge_alloc (2 subtests) ===============
[03:30:11] [PASSED] drm_test_drm_bridge_alloc_basic
[03:30:11] [PASSED] drm_test_drm_bridge_alloc_get_put
[03:30:11] ================ [PASSED] drm_bridge_alloc =================
[03:30:11] ================== drm_buddy (8 subtests) ==================
[03:30:11] [PASSED] drm_test_buddy_alloc_limit
[03:30:11] [PASSED] drm_test_buddy_alloc_optimistic
[03:30:11] [PASSED] drm_test_buddy_alloc_pessimistic
[03:30:11] [PASSED] drm_test_buddy_alloc_pathological
[03:30:11] [PASSED] drm_test_buddy_alloc_contiguous
[03:30:11] [PASSED] drm_test_buddy_alloc_clear
[03:30:11] [PASSED] drm_test_buddy_alloc_range_bias
[03:30:11] [PASSED] drm_test_buddy_fragmentation_performance
[03:30:11] ==================== [PASSED] drm_buddy ====================
[03:30:11] ============= drm_cmdline_parser (40 subtests) =============
[03:30:11] [PASSED] drm_test_cmdline_force_d_only
[03:30:11] [PASSED] drm_test_cmdline_force_D_only_dvi
[03:30:11] [PASSED] drm_test_cmdline_force_D_only_hdmi
[03:30:11] [PASSED] drm_test_cmdline_force_D_only_not_digital
[03:30:11] [PASSED] drm_test_cmdline_force_e_only
[03:30:11] [PASSED] drm_test_cmdline_res
[03:30:11] [PASSED] drm_test_cmdline_res_vesa
[03:30:11] [PASSED] drm_test_cmdline_res_vesa_rblank
[03:30:11] [PASSED] drm_test_cmdline_res_rblank
[03:30:11] [PASSED] drm_test_cmdline_res_bpp
[03:30:11] [PASSED] drm_test_cmdline_res_refresh
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[03:30:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[03:30:11] [PASSED] drm_test_cmdline_res_margins_force_on
[03:30:11] [PASSED] drm_test_cmdline_res_vesa_margins
[03:30:11] [PASSED] drm_test_cmdline_name
[03:30:11] [PASSED] drm_test_cmdline_name_bpp
[03:30:11] [PASSED] drm_test_cmdline_name_option
[03:30:11] [PASSED] drm_test_cmdline_name_bpp_option
[03:30:11] [PASSED] drm_test_cmdline_rotate_0
[03:30:11] [PASSED] drm_test_cmdline_rotate_90
[03:30:11] [PASSED] drm_test_cmdline_rotate_180
[03:30:11] [PASSED] drm_test_cmdline_rotate_270
[03:30:11] [PASSED] drm_test_cmdline_hmirror
[03:30:11] [PASSED] drm_test_cmdline_vmirror
[03:30:11] [PASSED] drm_test_cmdline_margin_options
[03:30:11] [PASSED] drm_test_cmdline_multiple_options
[03:30:11] [PASSED] drm_test_cmdline_bpp_extra_and_option
[03:30:11] [PASSED] drm_test_cmdline_extra_and_option
[03:30:11] [PASSED] drm_test_cmdline_freestanding_options
[03:30:11] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[03:30:11] [PASSED] drm_test_cmdline_panel_orientation
[03:30:11] ================ drm_test_cmdline_invalid  =================
[03:30:11] [PASSED] margin_only
[03:30:11] [PASSED] interlace_only
[03:30:11] [PASSED] res_missing_x
[03:30:11] [PASSED] res_missing_y
[03:30:11] [PASSED] res_bad_y
[03:30:11] [PASSED] res_missing_y_bpp
[03:30:11] [PASSED] res_bad_bpp
[03:30:11] [PASSED] res_bad_refresh
[03:30:11] [PASSED] res_bpp_refresh_force_on_off
[03:30:11] [PASSED] res_invalid_mode
[03:30:11] [PASSED] res_bpp_wrong_place_mode
[03:30:11] [PASSED] name_bpp_refresh
[03:30:11] [PASSED] name_refresh
[03:30:11] [PASSED] name_refresh_wrong_mode
[03:30:11] [PASSED] name_refresh_invalid_mode
[03:30:11] [PASSED] rotate_multiple
[03:30:11] [PASSED] rotate_invalid_val
[03:30:11] [PASSED] rotate_truncated
[03:30:11] [PASSED] invalid_option
[03:30:11] [PASSED] invalid_tv_option
[03:30:11] [PASSED] truncated_tv_option
[03:30:11] ============ [PASSED] drm_test_cmdline_invalid =============
[03:30:11] =============== drm_test_cmdline_tv_options  ===============
[03:30:11] [PASSED] NTSC
[03:30:11] [PASSED] NTSC_443
[03:30:11] [PASSED] NTSC_J
[03:30:11] [PASSED] PAL
[03:30:11] [PASSED] PAL_M
[03:30:11] [PASSED] PAL_N
[03:30:11] [PASSED] SECAM
[03:30:11] [PASSED] MONO_525
[03:30:11] [PASSED] MONO_625
[03:30:11] =========== [PASSED] drm_test_cmdline_tv_options ===========
[03:30:11] =============== [PASSED] drm_cmdline_parser ================
[03:30:11] ========== drmm_connector_hdmi_init (20 subtests) ==========
[03:30:11] [PASSED] drm_test_connector_hdmi_init_valid
[03:30:11] [PASSED] drm_test_connector_hdmi_init_bpc_8
[03:30:11] [PASSED] drm_test_connector_hdmi_init_bpc_10
[03:30:11] [PASSED] drm_test_connector_hdmi_init_bpc_12
[03:30:11] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[03:30:11] [PASSED] drm_test_connector_hdmi_init_bpc_null
[03:30:11] [PASSED] drm_test_connector_hdmi_init_formats_empty
[03:30:11] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[03:30:11] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[03:30:11] [PASSED] supported_formats=0x9 yuv420_allowed=1
[03:30:11] [PASSED] supported_formats=0x9 yuv420_allowed=0
[03:30:11] [PASSED] supported_formats=0x3 yuv420_allowed=1
[03:30:11] [PASSED] supported_formats=0x3 yuv420_allowed=0
[03:30:11] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[03:30:11] [PASSED] drm_test_connector_hdmi_init_null_ddc
[03:30:11] [PASSED] drm_test_connector_hdmi_init_null_product
[03:30:11] [PASSED] drm_test_connector_hdmi_init_null_vendor
[03:30:11] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[03:30:11] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[03:30:11] [PASSED] drm_test_connector_hdmi_init_product_valid
[03:30:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[03:30:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[03:30:11] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[03:30:11] ========= drm_test_connector_hdmi_init_type_valid  =========
[03:30:11] [PASSED] HDMI-A
[03:30:11] [PASSED] HDMI-B
[03:30:11] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[03:30:11] ======== drm_test_connector_hdmi_init_type_invalid  ========
[03:30:11] [PASSED] Unknown
[03:30:11] [PASSED] VGA
[03:30:11] [PASSED] DVI-I
[03:30:11] [PASSED] DVI-D
[03:30:11] [PASSED] DVI-A
[03:30:11] [PASSED] Composite
[03:30:11] [PASSED] SVIDEO
[03:30:11] [PASSED] LVDS
[03:30:11] [PASSED] Component
[03:30:11] [PASSED] DIN
[03:30:11] [PASSED] DP
[03:30:11] [PASSED] TV
[03:30:11] [PASSED] eDP
[03:30:11] [PASSED] Virtual
[03:30:11] [PASSED] DSI
[03:30:11] [PASSED] DPI
[03:30:11] [PASSED] Writeback
[03:30:11] [PASSED] SPI
[03:30:11] [PASSED] USB
[03:30:11] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[03:30:11] ============ [PASSED] drmm_connector_hdmi_init =============
[03:30:11] ============= drmm_connector_init (3 subtests) =============
[03:30:11] [PASSED] drm_test_drmm_connector_init
[03:30:11] [PASSED] drm_test_drmm_connector_init_null_ddc
[03:30:11] ========= drm_test_drmm_connector_init_type_valid  =========
[03:30:11] [PASSED] Unknown
[03:30:11] [PASSED] VGA
[03:30:11] [PASSED] DVI-I
[03:30:11] [PASSED] DVI-D
[03:30:11] [PASSED] DVI-A
[03:30:11] [PASSED] Composite
[03:30:11] [PASSED] SVIDEO
[03:30:11] [PASSED] LVDS
[03:30:11] [PASSED] Component
[03:30:11] [PASSED] DIN
[03:30:11] [PASSED] DP
[03:30:11] [PASSED] HDMI-A
[03:30:11] [PASSED] HDMI-B
[03:30:11] [PASSED] TV
[03:30:11] [PASSED] eDP
[03:30:11] [PASSED] Virtual
[03:30:11] [PASSED] DSI
[03:30:11] [PASSED] DPI
[03:30:11] [PASSED] Writeback
[03:30:11] [PASSED] SPI
[03:30:11] [PASSED] USB
[03:30:11] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[03:30:11] =============== [PASSED] drmm_connector_init ===============
[03:30:11] ========= drm_connector_dynamic_init (6 subtests) ==========
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_init
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_init_properties
[03:30:11] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[03:30:11] [PASSED] Unknown
[03:30:11] [PASSED] VGA
[03:30:11] [PASSED] DVI-I
[03:30:11] [PASSED] DVI-D
[03:30:11] [PASSED] DVI-A
[03:30:11] [PASSED] Composite
[03:30:11] [PASSED] SVIDEO
[03:30:11] [PASSED] LVDS
[03:30:11] [PASSED] Component
[03:30:11] [PASSED] DIN
[03:30:11] [PASSED] DP
[03:30:11] [PASSED] HDMI-A
[03:30:11] [PASSED] HDMI-B
[03:30:11] [PASSED] TV
[03:30:11] [PASSED] eDP
[03:30:11] [PASSED] Virtual
[03:30:11] [PASSED] DSI
[03:30:11] [PASSED] DPI
[03:30:11] [PASSED] Writeback
[03:30:11] [PASSED] SPI
[03:30:11] [PASSED] USB
[03:30:11] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[03:30:11] ======== drm_test_drm_connector_dynamic_init_name  =========
[03:30:11] [PASSED] Unknown
[03:30:11] [PASSED] VGA
[03:30:11] [PASSED] DVI-I
[03:30:11] [PASSED] DVI-D
[03:30:11] [PASSED] DVI-A
[03:30:11] [PASSED] Composite
[03:30:11] [PASSED] SVIDEO
[03:30:11] [PASSED] LVDS
[03:30:11] [PASSED] Component
[03:30:11] [PASSED] DIN
[03:30:11] [PASSED] DP
[03:30:11] [PASSED] HDMI-A
[03:30:11] [PASSED] HDMI-B
[03:30:11] [PASSED] TV
[03:30:11] [PASSED] eDP
[03:30:11] [PASSED] Virtual
[03:30:11] [PASSED] DSI
[03:30:11] [PASSED] DPI
[03:30:11] [PASSED] Writeback
[03:30:11] [PASSED] SPI
[03:30:11] [PASSED] USB
[03:30:11] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[03:30:11] =========== [PASSED] drm_connector_dynamic_init ============
[03:30:11] ==== drm_connector_dynamic_register_early (4 subtests) =====
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[03:30:11] ====== [PASSED] drm_connector_dynamic_register_early =======
[03:30:11] ======= drm_connector_dynamic_register (7 subtests) ========
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[03:30:11] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[03:30:11] ========= [PASSED] drm_connector_dynamic_register ==========
[03:30:11] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[03:30:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[03:30:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[03:30:11] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[03:30:11] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[03:30:11] ========== drm_test_get_tv_mode_from_name_valid  ===========
[03:30:11] [PASSED] NTSC
[03:30:11] [PASSED] NTSC-443
[03:30:11] [PASSED] NTSC-J
[03:30:11] [PASSED] PAL
[03:30:11] [PASSED] PAL-M
[03:30:11] [PASSED] PAL-N
[03:30:11] [PASSED] SECAM
[03:30:11] [PASSED] Mono
[03:30:11] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[03:30:11] [PASSED] drm_test_get_tv_mode_from_name_truncated
[03:30:11] ============ [PASSED] drm_get_tv_mode_from_name ============
[03:30:11] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[03:30:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[03:30:11] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[03:30:11] [PASSED] VIC 96
[03:30:11] [PASSED] VIC 97
[03:30:11] [PASSED] VIC 101
[03:30:11] [PASSED] VIC 102
[03:30:11] [PASSED] VIC 106
[03:30:11] [PASSED] VIC 107
[03:30:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[03:30:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[03:30:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[03:30:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[03:30:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[03:30:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[03:30:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[03:30:11] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[03:30:11] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[03:30:11] [PASSED] Automatic
[03:30:11] [PASSED] Full
[03:30:11] [PASSED] Limited 16:235
[03:30:11] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[03:30:11] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[03:30:11] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[03:30:11] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[03:30:11] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[03:30:11] [PASSED] RGB
[03:30:11] [PASSED] YUV 4:2:0
[03:30:11] [PASSED] YUV 4:2:2
[03:30:11] [PASSED] YUV 4:4:4
[03:30:11] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[03:30:11] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[03:30:11] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[03:30:11] ============= drm_damage_helper (21 subtests) ==============
[03:30:11] [PASSED] drm_test_damage_iter_no_damage
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_src_moved
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_not_visible
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[03:30:11] [PASSED] drm_test_damage_iter_no_damage_no_fb
[03:30:11] [PASSED] drm_test_damage_iter_simple_damage
[03:30:11] [PASSED] drm_test_damage_iter_single_damage
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_outside_src
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_src_moved
[03:30:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[03:30:11] [PASSED] drm_test_damage_iter_damage
[03:30:11] [PASSED] drm_test_damage_iter_damage_one_intersect
[03:30:11] [PASSED] drm_test_damage_iter_damage_one_outside
[03:30:11] [PASSED] drm_test_damage_iter_damage_src_moved
[03:30:11] [PASSED] drm_test_damage_iter_damage_not_visible
[03:30:11] ================ [PASSED] drm_damage_helper ================
[03:30:11] ============== drm_dp_mst_helper (3 subtests) ==============
[03:30:11] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[03:30:11] [PASSED] Clock 154000 BPP 30 DSC disabled
[03:30:11] [PASSED] Clock 234000 BPP 30 DSC disabled
[03:30:11] [PASSED] Clock 297000 BPP 24 DSC disabled
[03:30:11] [PASSED] Clock 332880 BPP 24 DSC enabled
[03:30:11] [PASSED] Clock 324540 BPP 24 DSC enabled
[03:30:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[03:30:11] ============== drm_test_dp_mst_calc_pbn_div  ===============
[03:30:11] [PASSED] Link rate 2000000 lane count 4
[03:30:11] [PASSED] Link rate 2000000 lane count 2
[03:30:11] [PASSED] Link rate 2000000 lane count 1
[03:30:11] [PASSED] Link rate 1350000 lane count 4
[03:30:11] [PASSED] Link rate 1350000 lane count 2
[03:30:11] [PASSED] Link rate 1350000 lane count 1
[03:30:11] [PASSED] Link rate 1000000 lane count 4
[03:30:11] [PASSED] Link rate 1000000 lane count 2
[03:30:11] [PASSED] Link rate 1000000 lane count 1
[03:30:11] [PASSED] Link rate 810000 lane count 4
[03:30:11] [PASSED] Link rate 810000 lane count 2
[03:30:11] [PASSED] Link rate 810000 lane count 1
[03:30:11] [PASSED] Link rate 540000 lane count 4
[03:30:11] [PASSED] Link rate 540000 lane count 2
[03:30:11] [PASSED] Link rate 540000 lane count 1
[03:30:11] [PASSED] Link rate 270000 lane count 4
[03:30:11] [PASSED] Link rate 270000 lane count 2
[03:30:11] [PASSED] Link rate 270000 lane count 1
[03:30:11] [PASSED] Link rate 162000 lane count 4
[03:30:11] [PASSED] Link rate 162000 lane count 2
[03:30:11] [PASSED] Link rate 162000 lane count 1
[03:30:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[03:30:11] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[03:30:11] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[03:30:11] [PASSED] DP_POWER_UP_PHY with port number
[03:30:11] [PASSED] DP_POWER_DOWN_PHY with port number
[03:30:11] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[03:30:11] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[03:30:11] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[03:30:11] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[03:30:11] [PASSED] DP_QUERY_PAYLOAD with port number
[03:30:11] [PASSED] DP_QUERY_PAYLOAD with VCPI
[03:30:11] [PASSED] DP_REMOTE_DPCD_READ with port number
[03:30:11] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[03:30:11] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[03:30:11] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[03:30:11] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[03:30:11] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[03:30:11] [PASSED] DP_REMOTE_I2C_READ with port number
[03:30:11] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[03:30:11] [PASSED] DP_REMOTE_I2C_READ with transactions array
[03:30:11] [PASSED] DP_REMOTE_I2C_WRITE with port number
[03:30:11] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[03:30:11] [PASSED] DP_REMOTE_I2C_WRITE with data array
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[03:30:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[03:30:11] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[03:30:11] ================ [PASSED] drm_dp_mst_helper ================
[03:30:11] ================== drm_exec (7 subtests) ===================
[03:30:11] [PASSED] sanitycheck
[03:30:11] [PASSED] test_lock
[03:30:11] [PASSED] test_lock_unlock
[03:30:11] [PASSED] test_duplicates
[03:30:11] [PASSED] test_prepare
[03:30:11] [PASSED] test_prepare_array
[03:30:11] [PASSED] test_multiple_loops
[03:30:11] ==================== [PASSED] drm_exec =====================
[03:30:11] =========== drm_format_helper_test (17 subtests) ===========
[03:30:11] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[03:30:11] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[03:30:11] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[03:30:11] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[03:30:11] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[03:30:11] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[03:30:11] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[03:30:11] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[03:30:11] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[03:30:11] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[03:30:11] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[03:30:11] ============== drm_test_fb_xrgb8888_to_mono  ===============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[03:30:11] ==================== drm_test_fb_swab  =====================
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ================ [PASSED] drm_test_fb_swab =================
[03:30:11] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[03:30:11] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[03:30:11] [PASSED] single_pixel_source_buffer
[03:30:11] [PASSED] single_pixel_clip_rectangle
[03:30:11] [PASSED] well_known_colors
[03:30:11] [PASSED] destination_pitch
[03:30:11] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[03:30:11] ================= drm_test_fb_clip_offset  =================
[03:30:11] [PASSED] pass through
[03:30:11] [PASSED] horizontal offset
[03:30:11] [PASSED] vertical offset
[03:30:11] [PASSED] horizontal and vertical offset
[03:30:11] [PASSED] horizontal offset (custom pitch)
[03:30:11] [PASSED] vertical offset (custom pitch)
[03:30:11] [PASSED] horizontal and vertical offset (custom pitch)
[03:30:11] ============= [PASSED] drm_test_fb_clip_offset =============
[03:30:11] =================== drm_test_fb_memcpy  ====================
[03:30:11] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[03:30:11] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[03:30:11] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[03:30:11] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[03:30:11] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[03:30:11] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[03:30:11] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[03:30:11] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[03:30:11] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[03:30:11] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[03:30:11] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[03:30:11] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[03:30:11] =============== [PASSED] drm_test_fb_memcpy ================
[03:30:11] ============= [PASSED] drm_format_helper_test ==============
[03:30:11] ================= drm_format (18 subtests) =================
[03:30:11] [PASSED] drm_test_format_block_width_invalid
[03:30:11] [PASSED] drm_test_format_block_width_one_plane
[03:30:11] [PASSED] drm_test_format_block_width_two_plane
[03:30:11] [PASSED] drm_test_format_block_width_three_plane
[03:30:11] [PASSED] drm_test_format_block_width_tiled
[03:30:11] [PASSED] drm_test_format_block_height_invalid
[03:30:11] [PASSED] drm_test_format_block_height_one_plane
[03:30:11] [PASSED] drm_test_format_block_height_two_plane
[03:30:11] [PASSED] drm_test_format_block_height_three_plane
[03:30:11] [PASSED] drm_test_format_block_height_tiled
[03:30:11] [PASSED] drm_test_format_min_pitch_invalid
[03:30:11] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[03:30:11] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[03:30:11] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[03:30:11] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[03:30:11] [PASSED] drm_test_format_min_pitch_two_plane
[03:30:11] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[03:30:11] [PASSED] drm_test_format_min_pitch_tiled
[03:30:11] =================== [PASSED] drm_format ====================
[03:30:11] ============== drm_framebuffer (10 subtests) ===============
[03:30:11] ========== drm_test_framebuffer_check_src_coords  ==========
[03:30:11] [PASSED] Success: source fits into fb
[03:30:11] [PASSED] Fail: overflowing fb with x-axis coordinate
[03:30:11] [PASSED] Fail: overflowing fb with y-axis coordinate
[03:30:11] [PASSED] Fail: overflowing fb with source width
[03:30:11] [PASSED] Fail: overflowing fb with source height
[03:30:11] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[03:30:11] [PASSED] drm_test_framebuffer_cleanup
[03:30:11] =============== drm_test_framebuffer_create  ===============
[03:30:11] [PASSED] ABGR8888 normal sizes
[03:30:11] [PASSED] ABGR8888 max sizes
[03:30:11] [PASSED] ABGR8888 pitch greater than min required
[03:30:11] [PASSED] ABGR8888 pitch less than min required
[03:30:11] [PASSED] ABGR8888 Invalid width
[03:30:11] [PASSED] ABGR8888 Invalid buffer handle
[03:30:11] [PASSED] No pixel format
[03:30:11] [PASSED] ABGR8888 Width 0
[03:30:11] [PASSED] ABGR8888 Height 0
[03:30:11] [PASSED] ABGR8888 Out of bound height * pitch combination
[03:30:11] [PASSED] ABGR8888 Large buffer offset
[03:30:11] [PASSED] ABGR8888 Buffer offset for inexistent plane
[03:30:11] [PASSED] ABGR8888 Invalid flag
[03:30:11] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[03:30:11] [PASSED] ABGR8888 Valid buffer modifier
[03:30:11] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[03:30:11] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] NV12 Normal sizes
[03:30:11] [PASSED] NV12 Max sizes
[03:30:11] [PASSED] NV12 Invalid pitch
[03:30:11] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[03:30:11] [PASSED] NV12 different  modifier per-plane
[03:30:11] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[03:30:11] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] NV12 Modifier for inexistent plane
[03:30:11] [PASSED] NV12 Handle for inexistent plane
[03:30:11] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[03:30:11] [PASSED] YVU420 Normal sizes
[03:30:11] [PASSED] YVU420 Max sizes
[03:30:11] [PASSED] YVU420 Invalid pitch
[03:30:11] [PASSED] YVU420 Different pitches
[03:30:11] [PASSED] YVU420 Different buffer offsets/pitches
[03:30:11] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[03:30:11] [PASSED] YVU420 Valid modifier
[03:30:11] [PASSED] YVU420 Different modifiers per plane
[03:30:11] [PASSED] YVU420 Modifier for inexistent plane
[03:30:11] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[03:30:11] [PASSED] X0L2 Normal sizes
[03:30:11] [PASSED] X0L2 Max sizes
[03:30:11] [PASSED] X0L2 Invalid pitch
[03:30:11] [PASSED] X0L2 Pitch greater than minimum required
[03:30:11] [PASSED] X0L2 Handle for inexistent plane
[03:30:11] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[03:30:11] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[03:30:11] [PASSED] X0L2 Valid modifier
[03:30:11] [PASSED] X0L2 Modifier for inexistent plane
[03:30:11] =========== [PASSED] drm_test_framebuffer_create ===========
[03:30:11] [PASSED] drm_test_framebuffer_free
[03:30:11] [PASSED] drm_test_framebuffer_init
[03:30:11] [PASSED] drm_test_framebuffer_init_bad_format
[03:30:11] [PASSED] drm_test_framebuffer_init_dev_mismatch
[03:30:11] [PASSED] drm_test_framebuffer_lookup
[03:30:11] [PASSED] drm_test_framebuffer_lookup_inexistent
[03:30:11] [PASSED] drm_test_framebuffer_modifiers_not_supported
[03:30:11] ================= [PASSED] drm_framebuffer =================
[03:30:11] ================ drm_gem_shmem (8 subtests) ================
[03:30:11] [PASSED] drm_gem_shmem_test_obj_create
[03:30:11] [PASSED] drm_gem_shmem_test_obj_create_private
[03:30:11] [PASSED] drm_gem_shmem_test_pin_pages
[03:30:11] [PASSED] drm_gem_shmem_test_vmap
[03:30:11] [PASSED] drm_gem_shmem_test_get_pages_sgt
[03:30:11] [PASSED] drm_gem_shmem_test_get_sg_table
[03:30:11] [PASSED] drm_gem_shmem_test_madvise
[03:30:11] [PASSED] drm_gem_shmem_test_purge
[03:30:11] ================== [PASSED] drm_gem_shmem ==================
[03:30:11] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[03:30:11] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[03:30:11] [PASSED] Automatic
[03:30:11] [PASSED] Full
[03:30:11] [PASSED] Limited 16:235
[03:30:11] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[03:30:11] [PASSED] drm_test_check_disable_connector
[03:30:11] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[03:30:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[03:30:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[03:30:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[03:30:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[03:30:11] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[03:30:11] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[03:30:11] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[03:30:11] [PASSED] drm_test_check_output_bpc_dvi
[03:30:11] [PASSED] drm_test_check_output_bpc_format_vic_1
[03:30:11] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[03:30:11] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[03:30:11] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[03:30:11] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[03:30:11] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[03:30:11] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[03:30:11] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[03:30:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[03:30:11] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[03:30:11] [PASSED] drm_test_check_broadcast_rgb_value
[03:30:11] [PASSED] drm_test_check_bpc_8_value
[03:30:11] [PASSED] drm_test_check_bpc_10_value
[03:30:11] [PASSED] drm_test_check_bpc_12_value
[03:30:11] [PASSED] drm_test_check_format_value
[03:30:11] [PASSED] drm_test_check_tmds_char_value
[03:30:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[03:30:11] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[03:30:11] [PASSED] drm_test_check_mode_valid
[03:30:11] [PASSED] drm_test_check_mode_valid_reject
[03:30:11] [PASSED] drm_test_check_mode_valid_reject_rate
[03:30:11] [PASSED] drm_test_check_mode_valid_reject_max_clock
[03:30:11] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[03:30:11] ================= drm_managed (2 subtests) =================
[03:30:11] [PASSED] drm_test_managed_release_action
[03:30:11] [PASSED] drm_test_managed_run_action
[03:30:11] =================== [PASSED] drm_managed ===================
[03:30:11] =================== drm_mm (6 subtests) ====================
[03:30:11] [PASSED] drm_test_mm_init
[03:30:11] [PASSED] drm_test_mm_debug
[03:30:11] [PASSED] drm_test_mm_align32
[03:30:11] [PASSED] drm_test_mm_align64
[03:30:11] [PASSED] drm_test_mm_lowest
[03:30:11] [PASSED] drm_test_mm_highest
[03:30:11] ===================== [PASSED] drm_mm ======================
[03:30:11] ============= drm_modes_analog_tv (5 subtests) =============
[03:30:11] [PASSED] drm_test_modes_analog_tv_mono_576i
[03:30:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[03:30:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[03:30:11] [PASSED] drm_test_modes_analog_tv_pal_576i
[03:30:11] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[03:30:11] =============== [PASSED] drm_modes_analog_tv ===============
[03:30:11] ============== drm_plane_helper (2 subtests) ===============
[03:30:11] =============== drm_test_check_plane_state  ================
[03:30:11] [PASSED] clipping_simple
[03:30:11] [PASSED] clipping_rotate_reflect
[03:30:11] [PASSED] positioning_simple
[03:30:11] [PASSED] upscaling
[03:30:11] [PASSED] downscaling
[03:30:11] [PASSED] rounding1
[03:30:11] [PASSED] rounding2
[03:30:11] [PASSED] rounding3
[03:30:11] [PASSED] rounding4
[03:30:11] =========== [PASSED] drm_test_check_plane_state ============
[03:30:11] =========== drm_test_check_invalid_plane_state  ============
[03:30:11] [PASSED] positioning_invalid
[03:30:11] [PASSED] upscaling_invalid
[03:30:11] [PASSED] downscaling_invalid
[03:30:11] ======= [PASSED] drm_test_check_invalid_plane_state ========
[03:30:11] ================ [PASSED] drm_plane_helper =================
[03:30:11] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[03:30:11] ====== drm_test_connector_helper_tv_get_modes_check  =======
[03:30:11] [PASSED] None
[03:30:11] [PASSED] PAL
[03:30:11] [PASSED] NTSC
[03:30:11] [PASSED] Both, NTSC Default
[03:30:11] [PASSED] Both, PAL Default
[03:30:11] [PASSED] Both, NTSC Default, with PAL on command-line
[03:30:11] [PASSED] Both, PAL Default, with NTSC on command-line
[03:30:11] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[03:30:11] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[03:30:11] ================== drm_rect (9 subtests) ===================
[03:30:11] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[03:30:11] [PASSED] drm_test_rect_clip_scaled_not_clipped
[03:30:11] [PASSED] drm_test_rect_clip_scaled_clipped
[03:30:11] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[03:30:11] ================= drm_test_rect_intersect  =================
[03:30:11] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[03:30:11] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[03:30:11] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[03:30:11] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[03:30:11] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[03:30:11] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[03:30:11] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[03:30:11] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[03:30:11] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[03:30:11] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[03:30:11] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[03:30:11] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[03:30:11] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[03:30:11] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[03:30:11] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[03:30:11] ============= [PASSED] drm_test_rect_intersect =============
[03:30:11] ================ drm_test_rect_calc_hscale  ================
[03:30:11] [PASSED] normal use
[03:30:11] [PASSED] out of max range
[03:30:11] [PASSED] out of min range
[03:30:11] [PASSED] zero dst
[03:30:11] [PASSED] negative src
[03:30:11] [PASSED] negative dst
[03:30:11] ============ [PASSED] drm_test_rect_calc_hscale ============
[03:30:11] ================ drm_test_rect_calc_vscale  ================
[03:30:11] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[03:30:11] [PASSED] out of max range
[03:30:11] [PASSED] out of min range
[03:30:11] [PASSED] zero dst
[03:30:11] [PASSED] negative src
[03:30:11] [PASSED] negative dst
[03:30:11] ============ [PASSED] drm_test_rect_calc_vscale ============
[03:30:11] ================== drm_test_rect_rotate  ===================
[03:30:11] [PASSED] reflect-x
[03:30:11] [PASSED] reflect-y
[03:30:11] [PASSED] rotate-0
[03:30:11] [PASSED] rotate-90
[03:30:11] [PASSED] rotate-180
[03:30:11] [PASSED] rotate-270
[03:30:11] ============== [PASSED] drm_test_rect_rotate ===============
[03:30:11] ================ drm_test_rect_rotate_inv  =================
[03:30:11] [PASSED] reflect-x
[03:30:11] [PASSED] reflect-y
[03:30:11] [PASSED] rotate-0
[03:30:11] [PASSED] rotate-90
[03:30:11] [PASSED] rotate-180
[03:30:11] [PASSED] rotate-270
[03:30:11] ============ [PASSED] drm_test_rect_rotate_inv =============
[03:30:11] ==================== [PASSED] drm_rect =====================
[03:30:11] ============ drm_sysfb_modeset_test (1 subtest) ============
[03:30:11] ============ drm_test_sysfb_build_fourcc_list  =============
[03:30:11] [PASSED] no native formats
[03:30:11] [PASSED] XRGB8888 as native format
[03:30:11] [PASSED] remove duplicates
[03:30:11] [PASSED] convert alpha formats
[03:30:11] [PASSED] random formats
[03:30:11] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[03:30:11] ============= [PASSED] drm_sysfb_modeset_test ==============
[03:30:11] ============================================================
[03:30:11] Testing complete. Ran 622 tests: passed: 622
[03:30:11] Elapsed time: 27.466s total, 1.690s configuring, 25.357s building, 0.390s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[03:30:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[03:30:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[03:30:22] Starting KUnit Kernel (1/1)...
[03:30:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[03:30:22] ================= ttm_device (5 subtests) ==================
[03:30:22] [PASSED] ttm_device_init_basic
[03:30:22] [PASSED] ttm_device_init_multiple
[03:30:22] [PASSED] ttm_device_fini_basic
[03:30:22] [PASSED] ttm_device_init_no_vma_man
[03:30:22] ================== ttm_device_init_pools  ==================
[03:30:22] [PASSED] No DMA allocations, no DMA32 required
[03:30:22] [PASSED] DMA allocations, DMA32 required
[03:30:22] [PASSED] No DMA allocations, DMA32 required
[03:30:22] [PASSED] DMA allocations, no DMA32 required
[03:30:22] ============== [PASSED] ttm_device_init_pools ==============
[03:30:22] =================== [PASSED] ttm_device ====================
[03:30:22] ================== ttm_pool (8 subtests) ===================
[03:30:22] ================== ttm_pool_alloc_basic  ===================
[03:30:22] [PASSED] One page
[03:30:22] [PASSED] More than one page
[03:30:22] [PASSED] Above the allocation limit
[03:30:22] [PASSED] One page, with coherent DMA mappings enabled
[03:30:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[03:30:22] ============== [PASSED] ttm_pool_alloc_basic ===============
[03:30:22] ============== ttm_pool_alloc_basic_dma_addr  ==============
[03:30:22] [PASSED] One page
[03:30:22] [PASSED] More than one page
[03:30:22] [PASSED] Above the allocation limit
[03:30:22] [PASSED] One page, with coherent DMA mappings enabled
[03:30:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[03:30:22] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[03:30:22] [PASSED] ttm_pool_alloc_order_caching_match
[03:30:22] [PASSED] ttm_pool_alloc_caching_mismatch
[03:30:22] [PASSED] ttm_pool_alloc_order_mismatch
[03:30:22] [PASSED] ttm_pool_free_dma_alloc
[03:30:22] [PASSED] ttm_pool_free_no_dma_alloc
[03:30:22] [PASSED] ttm_pool_fini_basic
[03:30:22] ==================== [PASSED] ttm_pool =====================
[03:30:22] ================ ttm_resource (8 subtests) =================
[03:30:22] ================= ttm_resource_init_basic  =================
[03:30:22] [PASSED] Init resource in TTM_PL_SYSTEM
[03:30:22] [PASSED] Init resource in TTM_PL_VRAM
[03:30:22] [PASSED] Init resource in a private placement
[03:30:22] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[03:30:22] ============= [PASSED] ttm_resource_init_basic =============
[03:30:22] [PASSED] ttm_resource_init_pinned
[03:30:22] [PASSED] ttm_resource_fini_basic
[03:30:22] [PASSED] ttm_resource_manager_init_basic
[03:30:22] [PASSED] ttm_resource_manager_usage_basic
[03:30:22] [PASSED] ttm_resource_manager_set_used_basic
[03:30:22] [PASSED] ttm_sys_man_alloc_basic
[03:30:22] [PASSED] ttm_sys_man_free_basic
[03:30:22] ================== [PASSED] ttm_resource ===================
[03:30:22] =================== ttm_tt (15 subtests) ===================
[03:30:22] ==================== ttm_tt_init_basic  ====================
[03:30:22] [PASSED] Page-aligned size
[03:30:22] [PASSED] Extra pages requested
[03:30:22] ================ [PASSED] ttm_tt_init_basic ================
[03:30:22] [PASSED] ttm_tt_init_misaligned
[03:30:22] [PASSED] ttm_tt_fini_basic
[03:30:22] [PASSED] ttm_tt_fini_sg
[03:30:22] [PASSED] ttm_tt_fini_shmem
[03:30:22] [PASSED] ttm_tt_create_basic
[03:30:22] [PASSED] ttm_tt_create_invalid_bo_type
[03:30:22] [PASSED] ttm_tt_create_ttm_exists
[03:30:22] [PASSED] ttm_tt_create_failed
[03:30:22] [PASSED] ttm_tt_destroy_basic
[03:30:22] [PASSED] ttm_tt_populate_null_ttm
[03:30:22] [PASSED] ttm_tt_populate_populated_ttm
[03:30:22] [PASSED] ttm_tt_unpopulate_basic
[03:30:22] [PASSED] ttm_tt_unpopulate_empty_ttm
[03:30:22] [PASSED] ttm_tt_swapin_basic
[03:30:22] ===================== [PASSED] ttm_tt ======================
[03:30:22] =================== ttm_bo (14 subtests) ===================
[03:30:22] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[03:30:22] [PASSED] Cannot be interrupted and sleeps
[03:30:22] [PASSED] Cannot be interrupted, locks straight away
[03:30:22] [PASSED] Can be interrupted, sleeps
[03:30:22] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[03:30:22] [PASSED] ttm_bo_reserve_locked_no_sleep
[03:30:22] [PASSED] ttm_bo_reserve_no_wait_ticket
[03:30:22] [PASSED] ttm_bo_reserve_double_resv
[03:30:22] [PASSED] ttm_bo_reserve_interrupted
[03:30:22] [PASSED] ttm_bo_reserve_deadlock
[03:30:22] [PASSED] ttm_bo_unreserve_basic
[03:30:22] [PASSED] ttm_bo_unreserve_pinned
[03:30:22] [PASSED] ttm_bo_unreserve_bulk
[03:30:22] [PASSED] ttm_bo_fini_basic
[03:30:22] [PASSED] ttm_bo_fini_shared_resv
[03:30:22] [PASSED] ttm_bo_pin_basic
[03:30:22] [PASSED] ttm_bo_pin_unpin_resource
[03:30:22] [PASSED] ttm_bo_multiple_pin_one_unpin
[03:30:22] ===================== [PASSED] ttm_bo ======================
[03:30:22] ============== ttm_bo_validate (21 subtests) ===============
[03:30:22] ============== ttm_bo_init_reserved_sys_man  ===============
[03:30:22] [PASSED] Buffer object for userspace
[03:30:22] [PASSED] Kernel buffer object
[03:30:22] [PASSED] Shared buffer object
[03:30:22] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[03:30:22] ============== ttm_bo_init_reserved_mock_man  ==============
[03:30:22] [PASSED] Buffer object for userspace
[03:30:22] [PASSED] Kernel buffer object
[03:30:22] [PASSED] Shared buffer object
[03:30:22] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[03:30:22] [PASSED] ttm_bo_init_reserved_resv
[03:30:22] ================== ttm_bo_validate_basic  ==================
[03:30:22] [PASSED] Buffer object for userspace
[03:30:22] [PASSED] Kernel buffer object
[03:30:22] [PASSED] Shared buffer object
[03:30:22] ============== [PASSED] ttm_bo_validate_basic ==============
[03:30:22] [PASSED] ttm_bo_validate_invalid_placement
[03:30:22] ============= ttm_bo_validate_same_placement  ==============
[03:30:22] [PASSED] System manager
[03:30:22] [PASSED] VRAM manager
[03:30:22] ========= [PASSED] ttm_bo_validate_same_placement ==========
[03:30:22] [PASSED] ttm_bo_validate_failed_alloc
[03:30:22] [PASSED] ttm_bo_validate_pinned
[03:30:22] [PASSED] ttm_bo_validate_busy_placement
[03:30:22] ================ ttm_bo_validate_multihop  =================
[03:30:22] [PASSED] Buffer object for userspace
[03:30:22] [PASSED] Kernel buffer object
[03:30:22] [PASSED] Shared buffer object
[03:30:22] ============ [PASSED] ttm_bo_validate_multihop =============
[03:30:22] ========== ttm_bo_validate_no_placement_signaled  ==========
[03:30:22] [PASSED] Buffer object in system domain, no page vector
[03:30:22] [PASSED] Buffer object in system domain with an existing page vector
[03:30:22] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[03:30:22] ======== ttm_bo_validate_no_placement_not_signaled  ========
[03:30:22] [PASSED] Buffer object for userspace
[03:30:22] [PASSED] Kernel buffer object
[03:30:22] [PASSED] Shared buffer object
[03:30:22] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[03:30:22] [PASSED] ttm_bo_validate_move_fence_signaled
[03:30:23] ========= ttm_bo_validate_move_fence_not_signaled  =========
[03:30:23] [PASSED] Waits for GPU
[03:30:23] [PASSED] Tries to lock straight away
[03:30:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[03:30:23] [PASSED] ttm_bo_validate_happy_evict
[03:30:23] [PASSED] ttm_bo_validate_all_pinned_evict
[03:30:23] [PASSED] ttm_bo_validate_allowed_only_evict
[03:30:23] [PASSED] ttm_bo_validate_deleted_evict
[03:30:23] [PASSED] ttm_bo_validate_busy_domain_evict
[03:30:23] [PASSED] ttm_bo_validate_evict_gutting
[03:30:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[03:30:23] ================= [PASSED] ttm_bo_validate =================
[03:30:23] ============================================================
[03:30:23] Testing complete. Ran 101 tests: passed: 101
[03:30:23] Elapsed time: 11.380s total, 1.674s configuring, 9.489s building, 0.186s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✓ Xe.CI.BAT: success for VF double migration (rev6)
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
                   ` (3 preceding siblings ...)
  2025-11-25  3:30 ` ✓ CI.KUnit: success for VF double migration (rev6) Patchwork
@ 2025-11-25  4:08 ` Patchwork
  2025-11-25  6:55 ` ✗ Xe.CI.Full: failure " Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-11-25  4:08 UTC (permalink / raw)
  To: Satyanarayana K V P; +Cc: intel-xe

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

== Series Details ==

Series: VF double migration (rev6)
URL   : https://patchwork.freedesktop.org/series/156339/
State : success

== Summary ==

CI Bug Log - changes from xe-4141-c701e79730169fab373fba7e759497d755fac592_BAT -> xe-pw-156339v6_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-pvc-2 


Changes
-------

  No changes found


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

  * IGT: IGT_8636 -> IGT_8637
  * Linux: xe-4141-c701e79730169fab373fba7e759497d755fac592 -> xe-pw-156339v6

  IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
  xe-pw-156339v6: 156339v6

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for VF double migration (rev6)
  2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
                   ` (4 preceding siblings ...)
  2025-11-25  4:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-11-25  6:55 ` Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2025-11-25  6:55 UTC (permalink / raw)
  To: Satyanarayana K V P; +Cc: intel-xe

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

== Series Details ==

Series: VF double migration (rev6)
URL   : https://patchwork.freedesktop.org/series/156339/
State : failure

== Summary ==

CI Bug Log - changes from xe-4141-c701e79730169fab373fba7e759497d755fac592_FULL -> xe-pw-156339v6_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-156339v6_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-156339v6_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 xe-pw-156339v6_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_content_protection@suspend-resume:
    - shard-lnl:          NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@suspend-resume@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][2] +1 other test fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_content_protection@suspend-resume@pipe-a-dp-4.html

  * {igt@kms_content_protection@suspend-resume@pipe-c-dp-2} (NEW):
    - shard-bmg:          NOTRUN -> [FAIL][3] +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_content_protection@suspend-resume@pipe-c-dp-2.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          NOTRUN -> [ABORT][4] +1 other test abort
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-bmg:          NOTRUN -> [SKIP][5] +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html

  
New tests
---------

  New tests have been introduced between xe-4141-c701e79730169fab373fba7e759497d755fac592_FULL and xe-pw-156339v6_FULL:

### New IGT tests (2) ###

  * igt@kms_content_protection@suspend-resume@pipe-c-dp-2:
    - Statuses : 1 fail(s)
    - Exec time: [109.78] s

  * igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [1.20] s

  

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

  Here are the changes found in xe-pw-156339v6_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2233])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][7] ([Intel XE#623])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#3157])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x:
    - shard-lnl:          NOTRUN -> [FAIL][9] ([Intel XE#6676]) +6 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-lnl:          NOTRUN -> [FAIL][10] ([Intel XE#6678]) +2 other tests fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_async_flips@test-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#664])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_async_flips@test-cursor-atomic.html

  * igt@kms_async_flips@test-time-stamp:
    - shard-lnl:          NOTRUN -> [FAIL][12] ([Intel XE#6677]) +2 other tests fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_async_flips@test-time-stamp.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#3279])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2327]) +4 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][15] ([Intel XE#607]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#3658])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#1407]) +7 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#1124]) +18 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#316]) +4 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2328])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#619])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#607])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#1428]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [PASS][25] -> [DMESG-FAIL][26] ([Intel XE#4543]) +1 other test dmesg-fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][27] ([Intel XE#4543]) +4 other tests dmesg-fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#1124]) +14 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#1124]) +17 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#1467]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#607]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#1477]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1124]) +12 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#2191]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][36] ([Intel XE#2191]) +3 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#2191]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1512]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#367]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#367]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#367])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#367]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +45 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#2887]) +26 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +47 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#787]) +68 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#2669]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> [ABORT][48] ([Intel XE#6675]) +9 other tests abort
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#3442])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#3432]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3432]) +4 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#2907])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#787]) +167 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2887]) +20 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#4417]) +3 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_cdclk@plane-scaling:
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#4416] / [Intel XE#455])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_cdclk@plane-scaling.html
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2724])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#4416]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-1.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#4416]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#373]) +12 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#306]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2325])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#306]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2252]) +10 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#373]) +12 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#373]) +18 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2390])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
    - shard-adlp:         NOTRUN -> [SKIP][69] ([Intel XE#307])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@kms_content_protection@dp-mst-type-1.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#307])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][71] ([Intel XE#1178]) +1 other test fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_content_protection@legacy.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][72] ([Intel XE#1178]) +1 other test fail
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_content_protection@legacy.html
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#3278]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2341])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2320]) +7 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#308]) +4 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#2321]) +3 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#2321]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html

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

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][80] ([Intel XE#308]) +4 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#309]) +10 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2291]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [PASS][83] -> [SKIP][84] ([Intel XE#2291])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#309]) +8 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][86] -> [FAIL][87] ([Intel XE#5299])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#323])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#1508])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#4210])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][91] -> [SKIP][92] ([Intel XE#4302])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-adlp:         NOTRUN -> [SKIP][93] ([Intel XE#4354])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#4356])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_dp_link_training@uhbr-sst.html
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#4354])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_dp_link_training@uhbr-sst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][96] ([Intel XE#4356])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#4354])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#2244]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2244]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#4422])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#4422])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#4422])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#4422])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-adlp:         NOTRUN -> [ABORT][104] ([Intel XE#6675]) +9 other tests abort
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#4156])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#2372])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][107] ([Intel XE#701])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#701])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
    - shard-adlp:         NOTRUN -> [SKIP][109] ([Intel XE#701])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#1137])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_feature_discovery@dp-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2375])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][112] ([Intel XE#1137])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#1137])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [PASS][114] -> [SKIP][115] ([Intel XE#2316])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#1421]) +9 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][117] ([Intel XE#310]) +5 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#2316]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#1397]) +1 other test skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2380]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         [PASS][123] -> [DMESG-FAIL][124] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#2293]) +5 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#455]) +24 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#1401] / [Intel XE#1745]) +10 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#1401]) +10 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#352]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][130] ([Intel XE#6312]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][131] ([Intel XE#656]) +52 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#2311]) +30 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][133] ([Intel XE#2312]) +19 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][134] ([Intel XE#651]) +13 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#651]) +36 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#4141]) +20 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][137] ([Intel XE#1151]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][138] ([Intel XE#6312]) +6 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#6312]) +4 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][140] ([Intel XE#651]) +23 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#2313]) +42 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#2352])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#658])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#1469])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#1158])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-adlp:         NOTRUN -> [SKIP][146] ([Intel XE#1158])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#2350])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#653]) +20 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][149] ([Intel XE#653]) +50 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][150] ([Intel XE#656]) +76 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][151] ([Intel XE#1470])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#1503])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][153] ([Intel XE#2925] / [Intel XE#3012])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_joiner@basic-force-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#3012])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][155] ([Intel XE#2925] / [Intel XE#346])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][156] ([Intel XE#2925] / [Intel XE#346])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][157] ([Intel XE#2925] / [Intel XE#346])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][158] ([Intel XE#2925] / [Intel XE#2927])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][159] ([Intel XE#2925] / [Intel XE#2927])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][160] ([Intel XE#6675]) +12 other tests abort
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#5624])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-adlp:         NOTRUN -> [SKIP][162] ([Intel XE#5624])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#5624])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#5624])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [FAIL][165] ([Intel XE#5195]) +2 other tests fail
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
    - shard-adlp:         NOTRUN -> [FAIL][166] ([Intel XE#5195]) +4 other tests fail
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#599]) +7 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][168] ([Intel XE#2393])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#5020])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_plane_multiple@tiling-y.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#5020])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
    - shard-lnl:          NOTRUN -> [SKIP][171] ([Intel XE#5020])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#2763]) +13 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#2763]) +4 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-adlp:         NOTRUN -> [SKIP][174] ([Intel XE#870])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_pm_backlight@basic-brightness.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#870])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][176] ([Intel XE#2938])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-adlp:         NOTRUN -> [SKIP][177] ([Intel XE#2938])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][178] ([Intel XE#2938])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#870])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          NOTRUN -> [FAIL][180] ([Intel XE#718])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         NOTRUN -> [FAIL][181] ([Intel XE#718])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          NOTRUN -> [SKIP][182] ([Intel XE#2392])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#1129])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#734])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][185] ([Intel XE#2499])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][187] ([Intel XE#1439] / [Intel XE#836])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][188] ([Intel XE#836])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][189] ([Intel XE#3428])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#1439] / [Intel XE#3141])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][191] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +2 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#1406] / [Intel XE#4608]) +5 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][194] ([Intel XE#1406] / [Intel XE#2893]) +4 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][195] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][196] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/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:     NOTRUN -> [SKIP][197] ([Intel XE#1122] / [Intel XE#1406])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
    - shard-lnl:          NOTRUN -> [SKIP][198] ([Intel XE#1128] / [Intel XE#1406])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html
    - shard-bmg:          NOTRUN -> [SKIP][199] ([Intel XE#1406] / [Intel XE#2387])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html
    - shard-adlp:         NOTRUN -> [SKIP][200] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr-suspend@edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][201] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_psr@fbc-psr-suspend@edp-1.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-primary-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][203] ([Intel XE#1406] / [Intel XE#4609]) +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-lnl:          NOTRUN -> [SKIP][204] ([Intel XE#1406]) +9 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][205] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-adlp:         NOTRUN -> [SKIP][206] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +16 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][207] ([Intel XE#1406] / [Intel XE#2234])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_psr@psr2-primary-render.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][208] ([Intel XE#3414] / [Intel XE#3904])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][209] ([Intel XE#3414]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-adlp:         NOTRUN -> [SKIP][210] ([Intel XE#3414])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][211] ([Intel XE#1127])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][212] ([Intel XE#1127])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][213] ([Intel XE#2330])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-lnl:          NOTRUN -> [SKIP][214] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][215] ([Intel XE#1435])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][216] ([Intel XE#1435]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][217] ([Intel XE#6503])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [SKIP][218] ([Intel XE#2426]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][219] ([Intel XE#1729])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
    - shard-lnl:          NOTRUN -> [SKIP][220] ([Intel XE#362]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-adlp:         NOTRUN -> [SKIP][221] ([Intel XE#362])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][222] ([Intel XE#1500])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][223] ([Intel XE#330])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][224] ([Intel XE#330])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
    - shard-adlp:         NOTRUN -> [SKIP][225] ([Intel XE#330])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][226] ([Intel XE#4488])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][227] ([Intel XE#4488])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-4.html

  * igt@kms_vrr@flip-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][228] ([Intel XE#455]) +33 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@negative-basic:
    - shard-lnl:          NOTRUN -> [SKIP][229] ([Intel XE#1499]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@kms_vrr@negative-basic.html

  * igt@xe_ccs@large-ctrl-surf-copy:
    - shard-adlp:         NOTRUN -> [SKIP][230] ([Intel XE#3576] / [Intel XE#5610])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_ccs@large-ctrl-surf-copy.html

  * igt@xe_compute@eu-busy-10s:
    - shard-lnl:          NOTRUN -> [SKIP][231] ([Intel XE#6592] / [Intel XE#6645])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_compute@eu-busy-10s.html

  * igt@xe_compute@loop-duration-2s:
    - shard-adlp:         NOTRUN -> [SKIP][232] ([Intel XE#6598])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_compute@loop-duration-2s.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][233] ([Intel XE#6598])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_compute@loop-duration-2s.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict:
    - shard-dg2-set2:     NOTRUN -> [SKIP][234] ([Intel XE#6360])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
    - shard-lnl:          NOTRUN -> [SKIP][235] ([Intel XE#5191])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
    - shard-adlp:         NOTRUN -> [SKIP][236] ([Intel XE#5191])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt:
    - shard-adlp:         NOTRUN -> [SKIP][237] ([Intel XE#6360])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_compute_preempt@compute-threadgroup-preempt.html

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-dg2-set2:     NOTRUN -> [SKIP][238] ([Intel XE#5300])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_copy_basic@mem-set-linear-0x8fffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][239] ([Intel XE#5503])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x8fffe.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][240] ([Intel XE#1126])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html
    - shard-adlp:         NOTRUN -> [SKIP][241] ([Intel XE#1126])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@blocking-read:
    - shard-adlp:         NOTRUN -> [SKIP][242] ([Intel XE#5626]) +2 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_eu_stall@blocking-read.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][243] ([Intel XE#5626]) +3 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_eu_stall@blocking-read.html

  * igt@xe_eudebug@basic-client:
    - shard-lnl:          NOTRUN -> [SKIP][244] ([Intel XE#4837]) +24 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_eudebug@basic-client.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][245] ([Intel XE#4837]) +8 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
    - shard-adlp:         NOTRUN -> [SKIP][246] ([Intel XE#4837] / [Intel XE#5565]) +17 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-lnl:          NOTRUN -> [SKIP][247] ([Intel XE#6665]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_eudebug_online@pagefault-read-stress.html
    - shard-adlp:         NOTRUN -> [SKIP][248] ([Intel XE#6665])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-dg2-set2:     NOTRUN -> [SKIP][249] ([Intel XE#6665]) +1 other test skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][250] ([Intel XE#4837]) +17 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][251] ([Intel XE#4518])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_eudebug_sriov@deny-eudebug.html
    - shard-lnl:          NOTRUN -> [SKIP][252] ([Intel XE#4518])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_eudebug_sriov@deny-eudebug.html
    - shard-adlp:         NOTRUN -> [SKIP][253] ([Intel XE#4519])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_eudebug_sriov@deny-eudebug.html
    - shard-bmg:          NOTRUN -> [SKIP][254] ([Intel XE#5793])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_evict@evict-beng-large:
    - shard-adlp:         NOTRUN -> [SKIP][255] ([Intel XE#261] / [Intel XE#5564])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_evict@evict-beng-large.html

  * igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][256] ([Intel XE#688]) +18 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html

  * igt@xe_evict@evict-beng-small:
    - shard-adlp:         NOTRUN -> [SKIP][257] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_evict@evict-beng-small.html

  * igt@xe_evict@evict-cm-threads-small:
    - shard-adlp:         NOTRUN -> [SKIP][258] ([Intel XE#261] / [Intel XE#688]) +2 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_evict@evict-cm-threads-small.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-adlp:         NOTRUN -> [SKIP][259] ([Intel XE#261]) +5 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
    - shard-adlp:         NOTRUN -> [SKIP][260] ([Intel XE#688])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][261] ([Intel XE#5213])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-no-exec-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][262] ([Intel XE#1392] / [Intel XE#5575]) +10 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_exec_basic@multigpu-no-exec-rebind.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][263] ([Intel XE#2322]) +11 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][264] ([Intel XE#1392]) +17 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr:
    - shard-adlp:         NOTRUN -> [SKIP][265] ([Intel XE#288] / [Intel XE#5561]) +31 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_exec_fault_mode@once-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> [SKIP][266] ([Intel XE#288]) +38 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][267] ([Intel XE#5007])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][268] ([Intel XE#4943]) +28 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-malloc-prefetch-madvise:
    - shard-lnl:          NOTRUN -> [WARN][269] ([Intel XE#5786]) +1 other test warn
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_exec_system_allocator@many-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][270] ([Intel XE#4943]) +39 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          NOTRUN -> [FAIL][271] ([Intel XE#5625])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
    - shard-lnl:          NOTRUN -> [SKIP][272] ([Intel XE#6196])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck:
    - shard-adlp:         NOTRUN -> [SKIP][273] ([Intel XE#4915]) +420 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][274] ([Intel XE#4915]) +498 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][275] ([Intel XE#5466])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-lnl:          NOTRUN -> [ABORT][276] ([Intel XE#5466])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         NOTRUN -> [ABORT][277] ([Intel XE#5466] / [Intel XE#5530])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][278] ([Intel XE#5466] / [Intel XE#5530])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_media_fill@media-fill:
    - shard-lnl:          NOTRUN -> [SKIP][279] ([Intel XE#560])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@pci-membarrier-bad-pagesize:
    - shard-lnl:          NOTRUN -> [SKIP][280] ([Intel XE#5100]) +1 other test skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_mmap@pci-membarrier-bad-pagesize.html
    - shard-adlp:         NOTRUN -> [SKIP][281] ([Intel XE#5100])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html

  * igt@xe_mmap@vram:
    - shard-lnl:          NOTRUN -> [SKIP][282] ([Intel XE#1416])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_mmap@vram.html

  * igt@xe_module_load@force-load:
    - shard-bmg:          NOTRUN -> [SKIP][283] ([Intel XE#2457])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_module_load@force-load.html
    - shard-adlp:         NOTRUN -> [SKIP][284] ([Intel XE#378] / [Intel XE#5612])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_module_load@force-load.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][285] ([Intel XE#378])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_module_load@force-load.html
    - shard-lnl:          NOTRUN -> [SKIP][286] ([Intel XE#378])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_module_load@force-load.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311]) -> ([PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [SKIP][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337]) ([Intel XE#378])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-2/igt@xe_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-5/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-7/igt@xe_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-7/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-7/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-2/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-2/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-2/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-8/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-8/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-5/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-1/igt@xe_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-5/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-8/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-8/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-4/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-4/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-1/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-4/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-1/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-4/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361]) -> ([PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [SKIP][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385]) ([Intel XE#2457])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-3/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-3/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-3/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-3/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-8/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-8/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-8/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-1/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@xe_module_load@load.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-6/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-8/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-1/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-1/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-3/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-6/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-1/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-7/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@xe_module_load@load.html
    - shard-adlp:         ([PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410]) -> ([PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [SKIP][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436]) ([Intel XE#378] / [Intel XE#5612])
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-4/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-4/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-4/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-1/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-1/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-3/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-3/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-3/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-1/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-8/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-8/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-8/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_module_load@load.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_module_load@load.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_module_load@load.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_module_load@load.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_module_load@load.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@xe_module_load@load.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_module_load@load.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_module_load@load.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_module_load@load.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_module_load@load.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_module_load@load.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@xe_module_load@load.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_module_load@load.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_module_load@load.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_module_load@load.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-4/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461]) -> ([PASS][462], [PASS][463], [PASS][464], [PASS][465], [SKIP][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486]) ([Intel XE#378])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-432/igt@xe_module_load@load.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-432/igt@xe_module_load@load.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-436/igt@xe_module_load@load.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-432/igt@xe_module_load@load.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-466/igt@xe_module_load@load.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-466/igt@xe_module_load@load.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-436/igt@xe_module_load@load.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-436/igt@xe_module_load@load.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-436/igt@xe_module_load@load.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-434/igt@xe_module_load@load.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-434/igt@xe_module_load@load.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-434/igt@xe_module_load@load.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-433/igt@xe_module_load@load.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-433/igt@xe_module_load@load.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-433/igt@xe_module_load@load.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-464/igt@xe_module_load@load.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-464/igt@xe_module_load@load.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-464/igt@xe_module_load@load.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-435/igt@xe_module_load@load.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-435/igt@xe_module_load@load.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-435/igt@xe_module_load@load.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-463/igt@xe_module_load@load.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-463/igt@xe_module_load@load.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-463/igt@xe_module_load@load.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-464/igt@xe_module_load@load.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_module_load@load.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-435/igt@xe_module_load@load.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_module_load@load.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_module_load@load.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_module_load@load.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_module_load@load.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_module_load@load.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_module_load@load.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_module_load@load.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_module_load@load.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@xe_module_load@load.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_module_load@load.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_module_load@load.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_module_load@load.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@xe_module_load@load.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_module_load@load.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_module_load@load.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_module_load@load.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_module_load@load.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_module_load@load.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_module_load@load.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_module_load@load.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_module_load@load.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_module_load@load.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_module_load@load.html

  * igt@xe_oa@buffer-fill:
    - shard-adlp:         NOTRUN -> [SKIP][487] ([Intel XE#3573]) +5 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_oa@buffer-fill.html

  * igt@xe_oa@mi-rpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][488] ([Intel XE#3573]) +7 other tests skip
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-435/igt@xe_oa@mi-rpc.html

  * igt@xe_oa@tail-address-wrap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][489] ([Intel XE#6032])
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_oa@tail-address-wrap.html
    - shard-adlp:         NOTRUN -> [SKIP][490] ([Intel XE#6032])
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_oa@tail-address-wrap.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          NOTRUN -> [SKIP][491] ([Intel XE#977])
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@xe_pat@pat-index-xelp.html
    - shard-bmg:          NOTRUN -> [SKIP][492] ([Intel XE#2245])
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@read:
    - shard-adlp:         NOTRUN -> [SKIP][493] ([Intel XE#1061]) +1 other test skip
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_peer2peer@read.html
    - shard-bmg:          NOTRUN -> [SKIP][494] ([Intel XE#2427]) +1 other test skip
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-8/igt@xe_peer2peer@read.html
    - shard-lnl:          NOTRUN -> [SKIP][495] ([Intel XE#1061]) +1 other test skip
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_peer2peer@read.html

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][496] ([Intel XE#6566]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][497] ([Intel XE#2284] / [Intel XE#366])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html
    - shard-adlp:         NOTRUN -> [SKIP][498] ([Intel XE#2284] / [Intel XE#366])
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          NOTRUN -> [SKIP][499] ([Intel XE#2284])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_pm@d3cold-mocs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][500] ([Intel XE#2284])
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
    - shard-lnl:          NOTRUN -> [SKIP][501] ([Intel XE#2284])
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][502] ([Intel XE#5742])
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][503] ([Intel XE#5742])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          NOTRUN -> [SKIP][504] ([Intel XE#5742])
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [ABORT][505] ([Intel XE#6675]) +10 other tests abort
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
    - shard-lnl:          NOTRUN -> [SKIP][506] ([Intel XE#584]) +2 other tests skip
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-vm-bind-userptr:
    - shard-dg2-set2:     [PASS][507] -> [ABORT][508] ([Intel XE#6675])
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-435/igt@xe_pm@s3-vm-bind-userptr.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html

  * igt@xe_pm@s4-basic:
    - shard-adlp:         [PASS][509] -> [ABORT][510] ([Intel XE#6675]) +5 other tests abort
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_pm@s4-basic.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@xe_pm@s4-basic.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][511] ([Intel XE#4650])
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
    - shard-lnl:          NOTRUN -> [SKIP][512] ([Intel XE#4650])
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][513] ([Intel XE#4733]) +2 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
    - shard-adlp:         NOTRUN -> [SKIP][514] ([Intel XE#4733]) +1 other test skip
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-1/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][515] ([Intel XE#4733]) +3 other tests skip
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-463/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][516] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][517] ([Intel XE#944]) +5 other tests skip
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          NOTRUN -> [SKIP][518] ([Intel XE#944]) +3 other tests skip
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@xe_query@multigpu-query-invalid-extension.html
    - shard-adlp:         NOTRUN -> [SKIP][519] ([Intel XE#944]) +5 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-2/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          NOTRUN -> [SKIP][520] ([Intel XE#944]) +4 other tests skip
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-adlp:         NOTRUN -> [SKIP][521] ([Intel XE#4814] / [Intel XE#5614])
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_render_copy@render-stress-0-copies.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][522] ([Intel XE#4814])
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-466/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-dg2-set2:     NOTRUN -> [SKIP][523] ([Intel XE#4130])
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
    - shard-lnl:          NOTRUN -> [SKIP][524] ([Intel XE#4130]) +1 other test skip
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][525] ([Intel XE#3342])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-dg2-set2:     NOTRUN -> [SKIP][526] ([Intel XE#4351])
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-436/igt@xe_sriov_scheduling@equal-throughput.html
    - shard-lnl:          NOTRUN -> [SKIP][527] ([Intel XE#4351])
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-3/igt@xe_sriov_scheduling@equal-throughput.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-adlp:         NOTRUN -> [SKIP][528] ([Intel XE#6376]) +1 other test skip
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@xe_sriov_vram@vf-access-beyond.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][529] ([Intel XE#6318]) +1 other test skip
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-433/igt@xe_sriov_vram@vf-access-beyond.html
    - shard-lnl:          NOTRUN -> [SKIP][530] ([Intel XE#6376]) +1 other test skip
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_sriov_vram@vf-access-beyond.html

  * igt@xe_survivability@i2c-functionality:
    - shard-adlp:         NOTRUN -> [SKIP][531] ([Intel XE#6529])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_survivability@i2c-functionality.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][532] ([Intel XE#6529])
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-434/igt@xe_survivability@i2c-functionality.html
    - shard-lnl:          NOTRUN -> [SKIP][533] ([Intel XE#6529]) +1 other test skip
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-4/igt@xe_survivability@i2c-functionality.html

  * igt@xe_vm@out-of-memory:
    - shard-lnl:          NOTRUN -> [SKIP][534] ([Intel XE#5745])
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-5/igt@xe_vm@out-of-memory.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][535] ([Intel XE#4543]) -> [PASS][536] +2 other tests pass
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-adlp:         [DMESG-FAIL][537] ([Intel XE#4543]) -> [PASS][538] +4 other tests pass
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-bmg:          [SKIP][539] ([Intel XE#2291]) -> [PASS][540] +2 other tests pass
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-adlp:         [FAIL][541] ([Intel XE#6640]) -> [PASS][542]
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [SKIP][543] ([Intel XE#2316]) -> [PASS][544] +1 other test pass
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         [DMESG-FAIL][545] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][546] +1 other test pass
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][547] ([Intel XE#718]) -> [PASS][548]
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][549] ([Intel XE#6321] / [Intel XE#6606]) -> [PASS][550]
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         [ABORT][551] ([Intel XE#6675]) -> [PASS][552] +1 other test pass
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s4-basic-exec:
    - shard-lnl:          [ABORT][553] ([Intel XE#6675]) -> [PASS][554]
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-2/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0:
    - shard-lnl:          [FAIL][555] ([Intel XE#6251]) -> [PASS][556]
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_enhance0.html

  * igt@xe_pmu@gt-c6-idle:
    - shard-dg2-set2:     [FAIL][557] ([Intel XE#6366]) -> [PASS][558]
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-dg2-435/igt@xe_pmu@gt-c6-idle.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-dg2-432/igt@xe_pmu@gt-c6-idle.html

  
#### Warnings ####

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][559] ([Intel XE#2311]) -> [SKIP][560] ([Intel XE#2312]) +3 other tests skip
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][561] ([Intel XE#2312]) -> [SKIP][562] ([Intel XE#4141])
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][563] ([Intel XE#4141]) -> [SKIP][564] ([Intel XE#2312])
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][565] ([Intel XE#2312]) -> [SKIP][566] ([Intel XE#2313]) +4 other tests skip
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][567] ([Intel XE#2313]) -> [SKIP][568] ([Intel XE#2312]) +2 other tests skip
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-adlp:         [SKIP][569] ([Intel XE#6070]) -> [SKIP][570] ([Intel XE#836])
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr@psr2-suspend@edp-1:
    - shard-lnl:          [ABORT][571] ([Intel XE#2625]) -> [ABORT][572] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-lnl-7/igt@kms_psr@psr2-suspend@edp-1.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-lnl-8/igt@kms_psr@psr2-suspend@edp-1.html

  * igt@xe_query@multigpu-query-engines:
    - shard-adlp:         [SKIP][573] ([Intel XE#944]) -> [FAIL][574] ([Intel XE#6249])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4141-c701e79730169fab373fba7e759497d755fac592/shard-adlp-2/igt@xe_query@multigpu-query-engines.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/shard-adlp-3/igt@xe_query@multigpu-query-engines.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#5610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5610
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6070
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#6249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6249
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
  [Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
  [Intel XE#6606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6606
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#6640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6640
  [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
  [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
  [Intel XE#6677]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6677
  [Intel XE#6678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6678
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [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#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977


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

  * IGT: IGT_8636 -> IGT_8637
  * Linux: xe-4141-c701e79730169fab373fba7e759497d755fac592 -> xe-pw-156339v6

  IGT_8636: 254cd102396ff95d61f2ebe49fc09128878bf483 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
  xe-pw-156339v6: 156339v6

== Logs ==

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

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

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

* Re: [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions
  2025-11-24 16:07 ` [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions Satyanarayana K V P
@ 2025-11-27 14:45   ` Michal Wajdeczko
  0 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2025-11-27 14:45 UTC (permalink / raw)
  To: Satyanarayana K V P, intel-xe; +Cc: Matthew Brost, Tomasz Lis



On 11/24/2025 5:07 PM, Satyanarayana K V P wrote:
> Enable VF migration starting with GuC 70.54.0 (compatibility version
> 1.27.0) which supports additional VF2GUC_RESFIX_START message required
> to handle migration recovery in a more robust way.
> 
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Tomasz Lis <tomasz.lis@intel.com>
> 
> ---
> V5 -> V6:
> - Fixed review comments (Michal W).
> - Updated commit message.
> - return xe_sriov_vf_migration_supported() from vf_migration_init_late().
> 
> V4 -> V5:
> - Created new function vf_migration_init_late() (Michal W).
> 
> V3 -> V4:
> - New commit
> 
> V2 -> V3:
> - None.
> 
> V1 -> V2:
> - None.
> ---
>  drivers/gpu/drm/xe/xe_sriov_vf.c | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index 284ce37ca92d..f53d68f2f1d2 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -170,6 +170,22 @@ void xe_sriov_vf_init_early(struct xe_device *xe)
>  	vf_migration_init_early(xe);
>  }
>  
> +static bool vf_migration_init_late(struct xe_device *xe)
> +{
> +	struct xe_gt *gt = xe_root_mmio_gt(xe);
> +	struct xe_uc_fw_version guc_version;
> +

hmm, I'm wondering whether we should do anything here if migration was already disabled at some earlier point

this can be already observed on ADLP [1] where we have two messages:

<5> [420.828841] xe 0000:00:02.1: [drm] VF: migration disabled: requires memory-based IRQ support
...
<5> [420.910616] xe 0000:00:02.1: [drm] VF: migration disabled: requires GuC ABI >= 1.27.0, but only 1.24.4 found

maybe this function should look like:

int vf_migration_init_late(...)
{
	if (!xe_sriov_vf_migration_supported(xe))
		return 0;

	if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 27, 0)) {
		xe_sriov_vf_migration_disable(xe,
					      "requires GuC ABI >= 1.27.0, but only %u.%u.%u found",
					      guc_version.major, guc_version.minor,
					      guc_version.patch);
		return 0;
	}

  	return xe_sriov_vf_ccs_init(xe);
}

including VF CCS since it is still part of the 'migration' feature, right

[1] https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156339v6/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html


> +	xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
> +	if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 27, 0)) {
> +		xe_sriov_vf_migration_disable(xe,
> +					      "requires GuC ABI >= 1.27.0, but only %u.%u.%u found",
> +					      guc_version.major, guc_version.minor,
> +					      guc_version.patch);
> +	}
> +
> +	return xe_sriov_vf_migration_supported(xe);
> +}
> +
>  /**
>   * xe_sriov_vf_init_late() - SR-IOV VF late initialization functions.
>   * @xe: the &xe_device to initialize
> @@ -180,6 +196,9 @@ void xe_sriov_vf_init_early(struct xe_device *xe)
>   */
>  int xe_sriov_vf_init_late(struct xe_device *xe)
>  {
> +	if (!vf_migration_init_late(xe))
> +		return 0;
> +
>  	return xe_sriov_vf_ccs_init(xe);
>  }
>  


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

* Re: [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support
  2025-11-24 16:07 ` [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support Satyanarayana K V P
@ 2025-11-27 16:17   ` Michal Wajdeczko
  0 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2025-11-27 16:17 UTC (permalink / raw)
  To: Satyanarayana K V P, intel-xe; +Cc: Matthew Brost, Tomasz Lis



On 11/24/2025 5:07 PM, Satyanarayana K V P wrote:
> In scenarios involving double migration, the VF KMD may encounter
> situations where it is instructed to re-migrate before having the
> opportunity to send RESFIX_DONE for the initial migration. This can occur
> when the fix-up for the prior migration is still underway, but the VF KMD
> is migrated again.
> 
> Consequently, this may lead to the possibility of sending two migration
> notifications (i.e., pending fix-up for the first migration and a second
> notification for the new migration). Upon receiving the first RES_FIX
> notification, the GuC will resume VF submission on the GPU, potentially
> resulting in undefined behavior, such as system hangs or crashes.
> 
> To avoid this, post migration, a marker is sent to the GUC prior to the
> start of resource fixups to indicate start of resource fixups. The same
> marker is sent along with RESFIX_DONE notification so that GUC can avoid
> submitting jobs to HW in case of double migration.
> 
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Tomasz Lis <tomasz.lis@intel.com>
> 
> ---
> V5 -> V6:
> - Fixed review comments (Michal W).
> - Updated resfix_done and res_fix_start function names.
> - Handled XE_GUC_RESPONSE_VF_MIGRATED error case received from GuC.
> - Remove skip_resfix error when another migration is in queue.
> 
> V4 -> V5:
> - Fixed review comments (Michal W).
> - Fixed minor debug log levels and documentation part.
> - Moved complete marker logic to vf_post_migration_resfix_start_marker()
> 
> V3 -> V4:
> - Updated RESFIX_DONE action name and documenation part. (Michal W)
> - Enable resfxi_start marked by default as sav/restore is gated on
> Guc version 70.54.0
> 
> V2 -> V3:
> - Fixed review comments (Michal W).
> - Updated commit message.
> - Fixed CI.BAT issues.
> - Added helper function to assert on unsupported GUC versions.
> - Updated RESFIX_DONE action name and documenation part.
> 
> V1 -> V2:
> - Squashed "Enable RESFIX start marker only on supported GUC
> versions" commit into a single commit. (Matt B)
> ---
>  .../gpu/drm/xe/abi/guc_actions_sriov_abi.h    | 67 +++++++++++--
>  drivers/gpu/drm/xe/xe_gt_sriov_vf.c           | 99 ++++++++++++++-----
>  drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h     |  5 +
>  drivers/gpu/drm/xe/xe_guc.c                   | 13 ++-
>  drivers/gpu/drm/xe/xe_sriov_vf.c              | 40 +++++++-
>  5 files changed, 182 insertions(+), 42 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> index 0b28659d94e9..d9f21202e1a9 100644
> --- a/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> +++ b/drivers/gpu/drm/xe/abi/guc_actions_sriov_abi.h
> @@ -502,13 +502,17 @@
>  #define VF2GUC_VF_RESET_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
>  
>  /**
> - * DOC: VF2GUC_NOTIFY_RESFIX_DONE
> + * DOC: VF2GUC_RESFIX_DONE
>   *
> - * This action is used by VF to notify the GuC that the VF KMD has completed
> - * post-migration recovery steps.
> + * This action is used by VF to inform the GuC that the VF KMD has completed
> + * post-migration recovery steps. From GuC VF compatibility 1.27.0 onwards, it
> + * shall only be sent after posting RESFIX_START and that both @MARKER fields
> + * must match.
>   *
>   * This message must be sent as `MMIO HXG Message`_.
>   *
> + * Updated since GuC VF compatibility 1.27.0.
> + *
>   *  +---+-------+--------------------------------------------------------------+
>   *  |   | Bits  | Description                                                  |
>   *  +===+=======+==============================================================+
> @@ -516,9 +520,11 @@
>   *  |   +-------+--------------------------------------------------------------+
>   *  |   | 30:28 | TYPE = GUC_HXG_TYPE_REQUEST_                                 |
>   *  |   +-------+--------------------------------------------------------------+
> - *  |   | 27:16 | DATA0 = MBZ                                                  |
> + *  |   | 27:16 | DATA0 = MARKER = MBZ (only prior 1.27.0)                     |
>   *  |   +-------+--------------------------------------------------------------+
> - *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE` = 0x5508    |
> + *  |   | 27:16 | DATA0 = MARKER - can't be zero (1.27.0+)                     |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_RESFIX_DONE` = 0x5508           |
>   *  +---+-------+--------------------------------------------------------------+
>   *
>   *  +---+-------+--------------------------------------------------------------+
> @@ -531,13 +537,13 @@
>   *  |   |  27:0 | DATA0 = MBZ                                                  |
>   *  +---+-------+--------------------------------------------------------------+
>   */
> -#define GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE		0x5508u
> +#define GUC_ACTION_VF2GUC_RESFIX_DONE			0x5508u
>  
> -#define VF2GUC_NOTIFY_RESFIX_DONE_REQUEST_MSG_LEN	GUC_HXG_REQUEST_MSG_MIN_LEN
> -#define VF2GUC_NOTIFY_RESFIX_DONE_REQUEST_MSG_0_MBZ	GUC_HXG_REQUEST_MSG_0_DATA0
> +#define VF2GUC_RESFIX_DONE_REQUEST_MSG_LEN		GUC_HXG_REQUEST_MSG_MIN_LEN
> +#define VF2GUC_RESFIX_DONE_REQUEST_MSG_0_MARKER		GUC_HXG_REQUEST_MSG_0_DATA0
>  
> -#define VF2GUC_NOTIFY_RESFIX_DONE_RESPONSE_MSG_LEN	GUC_HXG_RESPONSE_MSG_MIN_LEN
> -#define VF2GUC_NOTIFY_RESFIX_DONE_RESPONSE_MSG_0_MBZ	GUC_HXG_RESPONSE_MSG_0_DATA0
> +#define VF2GUC_RESFIX_DONE_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
> +#define VF2GUC_RESFIX_DONE_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
>  
>  /**
>   * DOC: VF2GUC_QUERY_SINGLE_KLV
> @@ -656,4 +662,45 @@
>  #define PF2GUC_SAVE_RESTORE_VF_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
>  #define PF2GUC_SAVE_RESTORE_VF_RESPONSE_MSG_0_USED	GUC_HXG_RESPONSE_MSG_0_DATA0
>  
> +/**
> + * DOC: VF2GUC_RESFIX_START
> + *
> + * This action is used by VF to inform the GuC that the VF KMD will be starting
> + * post-migration recovery fixups. The @MARKER sent with this action must match
> + * with the MARKER posted in the VF2GUC_RESFIX_DONE message.
> + *
> + * This message must be sent as `MMIO HXG Message`_.
> + *
> + * Available since GuC VF compatibility 1.27.0.
> + *
> + *  +---+-------+--------------------------------------------------------------+
> + *  |   | Bits  | Description                                                  |
> + *  +===+=======+==============================================================+
> + *  | 0 |    31 | ORIGIN = GUC_HXG_ORIGIN_HOST_                                |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   | 30:28 | TYPE = GUC_HXG_TYPE_REQUEST_                                 |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   | 27:16 | DATA0 = MARKER - can't be zero                               |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   |  15:0 | ACTION = _`GUC_ACTION_VF2GUC_RESFIX_START` = 0x550F          |
> + *  +---+-------+--------------------------------------------------------------+
> + *
> + *  +---+-------+--------------------------------------------------------------+
> + *  |   | Bits  | Description                                                  |
> + *  +===+=======+==============================================================+
> + *  | 0 |    31 | ORIGIN = GUC_HXG_ORIGIN_GUC_                                 |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   | 30:28 | TYPE = GUC_HXG_TYPE_RESPONSE_SUCCESS_                        |
> + *  |   +-------+--------------------------------------------------------------+
> + *  |   |  27:0 | DATA0 = MBZ                                                  |
> + *  +---+-------+--------------------------------------------------------------+
> + */
> +#define GUC_ACTION_VF2GUC_RESFIX_START			0x550Fu
> +
> +#define VF2GUC_RESFIX_START_REQUEST_MSG_LEN		GUC_HXG_REQUEST_MSG_MIN_LEN
> +#define VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER	GUC_HXG_REQUEST_MSG_0_DATA0
> +
> +#define VF2GUC_RESFIX_START_RESPONSE_MSG_LEN		GUC_HXG_RESPONSE_MSG_MIN_LEN
> +#define VF2GUC_RESFIX_START_RESPONSE_MSG_0_MBZ		GUC_HXG_RESPONSE_MSG_0_DATA0
> +
>  #endif
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 4c73a077d314..8e3fba6521f0 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -299,12 +299,13 @@ void xe_gt_sriov_vf_guc_versions(struct xe_gt *gt,
>  		*found = gt->sriov.vf.guc_version;
>  }
>  
> -static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
> +static int guc_action_vf_resfix_start(struct xe_guc *guc, u16 marker)
>  {
>  	u32 request[GUC_HXG_REQUEST_MSG_MIN_LEN] = {
>  		FIELD_PREP(GUC_HXG_MSG_0_ORIGIN, GUC_HXG_ORIGIN_HOST) |
>  		FIELD_PREP(GUC_HXG_MSG_0_TYPE, GUC_HXG_TYPE_REQUEST) |
> -		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_NOTIFY_RESFIX_DONE),
> +		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_RESFIX_START) |
> +		FIELD_PREP(VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER, marker),
>  	};
>  	int ret;
>  
> @@ -313,30 +314,54 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
>  	return ret > 0 ? -EPROTO : ret;
>  }
>  
> -/**
> - * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
> - * @gt: the &xe_gt struct instance linked to target GuC
> - *
> - * Returns: 0 if the operation completed successfully, or a negative error
> - * code otherwise.
> - */
> -static int vf_notify_resfix_done(struct xe_gt *gt)
> +static int vf_resfix_start(struct xe_gt *gt, u16 marker)
>  {
>  	struct xe_guc *guc = &gt->uc.guc;
>  	int err;
>  
>  	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
>  
> -	err = guc_action_vf_notify_resfix_done(guc);
> +	xe_gt_sriov_dbg_verbose(gt, "Sending resfix start marker %u\n", marker);
> +
> +	err = guc_action_vf_resfix_start(guc, marker);
>  	if (unlikely(err))
> -		xe_gt_sriov_err(gt, "Failed to notify GuC about resource fixup done (%pe)\n",
> +		xe_gt_sriov_err(gt, "Recovery failed at GuC RESFIX_START step (%pe)\n",
>  				ERR_PTR(err));

maybe better fit for this error is the caller ? vf_post_migration_recovery

> -	else
> -		xe_gt_sriov_dbg_verbose(gt, "sent GuC resource fixup done\n");
>  
>  	return err;
>  }
>  
> +static int guc_action_vf_resfix_done(struct xe_guc *guc, u16 marker)
> +{
> +	u32 request[GUC_HXG_REQUEST_MSG_MIN_LEN] = {
> +		FIELD_PREP(GUC_HXG_MSG_0_ORIGIN, GUC_HXG_ORIGIN_HOST) |
> +		FIELD_PREP(GUC_HXG_MSG_0_TYPE, GUC_HXG_TYPE_REQUEST) |
> +		FIELD_PREP(GUC_HXG_REQUEST_MSG_0_ACTION, GUC_ACTION_VF2GUC_RESFIX_DONE) |
> +		FIELD_PREP(VF2GUC_RESFIX_DONE_REQUEST_MSG_0_MARKER, marker),
> +	};
> +	int ret;
> +
> +	ret = xe_guc_mmio_send(guc, request, ARRAY_SIZE(request));
> +
> +	return ret > 0 ? -EPROTO : ret;
> +}
> +
> +static int vf_resfix_done(struct xe_gt *gt, u16 marker)
> +{
> +	struct xe_guc *guc = &gt->uc.guc;
> +	int err;
> +
> +	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> +
> +	xe_gt_sriov_dbg_verbose(gt, "Sending resfix done marker %u\n", marker);
> +
> +	err = guc_action_vf_resfix_done(guc, marker);
> +	if (unlikely(err && err != -EREMCHG))
> +		xe_gt_sriov_err(gt, "Recovery failed at GuC RESFIX_DONE step (%pe)\n",
> +				ERR_PTR(err));

same here
in case of VF2GUC status != VF_MIGRATED there will be already some error message from guc_send
and we have another check for -EREMCHG below, so maybe move this message just there?

> +	return err;
> +}
> +
>  static int guc_action_query_single_klv(struct xe_guc *guc, u32 key,
>  				       u32 *value, u32 value_len)
>  {
> @@ -1183,22 +1208,16 @@ static void vf_post_migration_abort(struct xe_gt *gt)
>  	xe_guc_submit_pause_abort(&gt->uc.guc);
>  }
>  
> -static int vf_post_migration_notify_resfix_done(struct xe_gt *gt)
> +static int vf_post_migration_resfix_done(struct xe_gt *gt, u16 marker)
>  {
> -	bool skip_resfix = false;
> -
>  	spin_lock_irq(&gt->sriov.vf.migration.lock);
>  	if (gt->sriov.vf.migration.recovery_queued) {
> -		skip_resfix = true;
> -		xe_gt_sriov_dbg(gt, "another recovery imminent, resfix skipped\n");
> +		xe_gt_sriov_dbg(gt, "another recovery imminent\n");
>  	} else {
>  		WRITE_ONCE(gt->sriov.vf.migration.recovery_inprogress, false);
>  	}
>  	spin_unlock_irq(&gt->sriov.vf.migration.lock);
>  
> -	if (skip_resfix)
> -		return -EAGAIN;
> -
>  	/*
>  	 * Make sure interrupts on the new HW are properly set. The GuC IRQ
>  	 * must be working at this point, since the recovery did started,
> @@ -1206,14 +1225,34 @@ static int vf_post_migration_notify_resfix_done(struct xe_gt *gt)
>  	 */
>  	xe_irq_resume(gt_to_xe(gt));
>  
> -	return vf_notify_resfix_done(gt);
> +	return vf_resfix_done(gt, marker);
> +}
> +
> +/*
> + * Reset the marker to 1 after it overflows since GuC requires a non-zero
> + * marker to be set.
> + */
> +static u16 vf_post_migration_resfix_start_marker(struct xe_gt *gt)
> +{
> +	u16 marker;
> +
> +	xe_gt_assert(gt, IS_SRIOV_VF(gt_to_xe(gt)));
> +
> +	marker = ++gt->sriov.vf.migration.resfix_marker;
> +	if (unlikely(marker >= FIELD_MAX(VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER))) {
> +		gt->sriov.vf.migration.resfix_marker = 1;
> +		marker = gt->sriov.vf.migration.resfix_marker;
> +	}
> +
> +	return marker;

maybe we don't need all 4095 possible different markers?

I guess 255 different markers should be more than enough for debug
then can rely on the compiler:

+	 * @resfix_marker: Marker sent on start and on end of post-migration
+	 * steps.
+	 */
+	u8 resfix_marker;


	BUILD_BUG_ON(1 + typeof(gt->sriov.vf.migration.resfix_marker))~0 >
		     FIELD_MAX(VF2GUC_RESFIX_START_REQUEST_MSG_0_MARKER));

	/* add 1 to avoid zero-marker */
	return 1 + gt->sriov.vf.migration.resfix_marker++;

>  }
>  
>  static void vf_post_migration_recovery(struct xe_gt *gt)
>  {
>  	struct xe_device *xe = gt_to_xe(gt);
> -	int err;
> +	u16 marker;
>  	bool retry;
> +	int err;
>  
>  	xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
>  
> @@ -1227,14 +1266,22 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
>  		goto fail;
>  	}
>  
> +	marker = vf_post_migration_resfix_start_marker(gt);
> +
> +	err = vf_resfix_start(gt, marker);
> +	if (err)
> +		goto fail;
> +
>  	err = vf_post_migration_fixups(gt);
>  	if (err)
>  		goto fail;
>  
>  	vf_post_migration_rearm(gt);
>  
> -	err = vf_post_migration_notify_resfix_done(gt);
> -	if (err && err != -EAGAIN)
> +	err = vf_post_migration_resfix_done(gt, marker);
> +	if (err == -EREMCHG)
> +		goto queue;
> +	else if (err)

'else' not needed after 'goto'

>  		goto fail;
>  
>  	vf_post_migration_kickstart(gt);
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> index 420b0e6089de..66c0062a42c6 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> @@ -52,6 +52,11 @@ struct xe_gt_sriov_vf_migration {
>  	wait_queue_head_t wq;
>  	/** @scratch: Scratch memory for VF recovery */
>  	void *scratch;
> +	/**
> +	 * @resfix_marker: Marker sent on start and on end of post-migration
> +	 * steps.
> +	 */
> +	u16 resfix_marker;
>  	/** @recovery_teardown: VF post migration recovery is being torn down */
>  	bool recovery_teardown;
>  	/** @recovery_queued: VF post migration recovery in queued */
> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
> index cf92de1c88a7..cf9820e036fa 100644
> --- a/drivers/gpu/drm/xe/xe_guc.c
> +++ b/drivers/gpu/drm/xe/xe_guc.c

this change below should be placed in a separate patch with separate commit msg

> @@ -1483,9 +1483,16 @@ int xe_guc_mmio_send_recv(struct xe_guc *guc, const u32 *request,
>  		u32 hint = FIELD_GET(GUC_HXG_FAILURE_MSG_0_HINT, header);
>  		u32 error = FIELD_GET(GUC_HXG_FAILURE_MSG_0_ERROR, header);
>  
> -		xe_gt_err(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
> -			  request[0], error, hint);
> -		return -ENXIO;
> +		if (error == XE_GUC_RESPONSE_VF_MIGRATED) {
> +			xe_gt_dbg(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
> +				  request[0], error, hint);

since we know it's a VF_MIGRATED status, we may use more tailored message:

		"GuC mmio request %#x rejected due to MIGRATION (hint %#x)\n"

> +			ret = -EREMCHG;

and you may "return -EREMCHG;" immediately here

> +		} else {
> +			xe_gt_err(gt, "GuC mmio request %#x: failure %#x hint %#x\n",
> +				  request[0], error, hint);
> +			ret = -ENXIO;
> +		}
> +		return ret;

this will leave existing code as-is

>  	}
>  
>  	if (FIELD_GET(GUC_HXG_MSG_0_TYPE, header) !=
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index f53d68f2f1d2..0cc6ca3082e6 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -49,11 +49,13 @@
>   *
>   * As soon as Virtual GPU of the VM starts, the VF driver within receives
>   * the MIGRATED interrupt and schedules post-migration recovery worker.
> - * That worker queries GuC for new provisioning (using MMIO communication),
> + * That worker sends `VF2GUC_RESFIX_START` action along with non-zero
> + * marker, queries GuC for new provisioning (using MMIO communication),
>   * and applies fixups to any non-virtualized resources used by the VF.
>   *
>   * When the VF driver is ready to continue operation on the newly connected
> - * hardware, it sends `VF2GUC_NOTIFY_RESFIX_DONE` which causes it to
> + * hardware, it sends `VF2GUC_RESFIX_DONE` action along with the same
> + * marker which was sent with `VF2GUC_RESFIX_START` which causes it to
>   * enter the long awaited `VF_RUNNING` state, and therefore start handling
>   * CTB messages and scheduling workloads from the VF::
>   *
> @@ -102,12 +104,17 @@
>   *      |                              [ ]        new VF provisioning  [ ]
>   *      |                              [ ]---------------------------> [ ]
>   *      |                               |                              [ ]
> + *      |                               |   VF2GUC_RESFIX_START        [ ]
> + *      |                              [ ] <---------------------------[ ]
> + *      |                              [ ]                             [ ]
> + *      |                              [ ]                     success [ ]
> + *      |                              [ ]---------------------------> [ ]
>   *      |                               |       VF driver applies post [ ]
>   *      |                               |      migration fixups -------[ ]
>   *      |                               |                       |      [ ]
>   *      |                               |                       -----> [ ]
>   *      |                               |                              [ ]
> - *      |                               |    VF2GUC_NOTIFY_RESFIX_DONE [ ]
> + *      |                               |    VF2GUC_RESFIX_DONE        [ ]
>   *      |                              [ ] <---------------------------[ ]
>   *      |                              [ ]                             [ ]
>   *      |                              [ ]  GuC sets new VF state to   [ ]
> @@ -118,6 +125,33 @@
>   *      |                              [ ]---------------------------> [ ]
>   *      |                               |                               |
>   *      |                               |                               |
> + *
> + * Handling of VF double migration flow is shown below::
> + *
> + *     GuC                                              VF
> + *      |                                               |
> + *     [ ] VF2GUC_RESFIX_START                         [ ] <--------
> + *     [ ] <-------------------------------------------[ ]          |
> + *     [ ]                                             [ ]          |
> + *     [ ]                                     success [ ]          |
> + *     [ ] ------------------------------------------> [ ]          |
> + *      |  VF driver applies post  migration fixups    [ ]          |
> + *      |                                       -------[ ]  Restart |
> + *      |                                       |      [ ]   fixup  |
> + *      |                                       -----> [ ]  process |
> + *      |                                              [ ]   again  |
> + *      |  VF2GUC_RESFIX_DONE                          [ ]          |
> + *     [ ] <-------------------------------------------[ ]          |
> + *     [ ]                                             [ ]          |
> + *     [ ] Error - XE_GUC_RESPONSE_VF_MIGRATED         [ ]          |
> + *     [ ] (new migration was detected while the       [ ]          |
> + *     [ ]   resfix process was still in progress)     [ ]          |
> + *     [ ] ------------------------------------------> [ ] --------->

there is no 'go back' in sequence diagrams

> + *     [ ]                                             [ ]
> + *     [ ]                                     success [ ]
> + *     [ ] ------------------------------------------> [ ]

'success' is only in regular migration fixup scenario (covered by diagram above)

> + *      |                                               |
> + *      |                                               |

so maybe:

    *     GuC1                                             VF
    *      |                                               |
    *      |                                              [ ]<--- start fixups
    *      |                  VF2GUC_RESFIX_START(marker) [ ]
    *     [ ] <-------------------------------------------[ ]
    *     [ ]                                             [ ]
    *     [ ]---\                                         [ ]
    *     [ ]   store marker                              [ ]        
    *     [ ]<--/                                         [ ]
    *     [ ]                                             [ ]
    *     [ ] success                                     [ ]
    *     [ ] ------------------------------------------> [ ]
    *      |                                              [ ]
    *      |                                              [ ]---\ 
    *      |                                              [ ]   do fixups
    *      |                                              [ ]<--/
    *      |                                              [ ]
    *      x     ============== VF paused / saved ==================
    *                         
    *     GuC2
    *      |
    *      |     ============== VF restored ========================
    *     [ ]
    *     [ ]---\
    *     [ ]   reset marker                                           
    *     [ ]<--/
    *     [ ]
    *      |     ============== VF resumed =========================
    *      |                                              [ ]
    *      |                                              [ ]
    *      |                   VF2GUC_RESFIX_DONE(marker) [ ]
    *     [ ] <-------------------------------------------[ ]
    *     [ ]                                             [ ]
    *     [ ]---\                                         [ ]
    *     [ ]   check marker                              [ ]        
    *     [ ]   (mismatch)                                [ ]        
    *     [ ]<--/                                         [ ]
    *     [ ]                                             [ ]
    *     [ ] RESPONSE_VF_MIGRATED                        [ ]
    *     [ ] ------------------------------------------> [ ]
    *      |                                              [ ]---\ 
    *      |                                              [ ]  reschedule fixups
    *      |                                              [ ]<--/
    *      |                                               |


>   */
>  
>  /**


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

* Re: [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration
  2025-11-24 16:07 ` [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration Satyanarayana K V P
@ 2025-11-27 16:51   ` Michal Wajdeczko
  0 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2025-11-27 16:51 UTC (permalink / raw)
  To: Satyanarayana K V P, intel-xe; +Cc: Matthew Brost, Tomasz Lis



On 11/24/2025 5:07 PM, Satyanarayana K V P wrote:
> VF migration sends a marker to the GUC before resource fixups begin,
> and repeats the marker with the RESFIX_DONE notification. This prevents
> the GUC from submitting jobs during double migration events.
> 
> To reliably test double migration, a second migration must be triggered
> while fixups from the first migration are still in progress. Since fixups
> complete quickly, reproducing this scenario is difficult. Introduce
> debugfs controls to add delays in the post-fixup phase, creating a
> deterministic window for subsequent migrations.
> 
> New debugfs entries:
> 	/sys/kernel/debug/dri/<card>/
> 	├── gt0

nit: use of top level gt0 is deprecated (this is a link added for backward comp)
maybe show real path:

	├── tile0
	│   ├── gt0
   

> 	│   ├── vf
> 	│   │   ├── resfix_stoppers
> 
> - resfix_stoppers: Predefined checkpoints that allow the migration process

drop -

> to pause at specific stages. The stages are given below.
> 
> VF_MIGRATION_WAIT_BEFORE_RESFIX_START	- BIT(0)
> VF_MIGRATION_WAIT_BEFORE_FIXUPS		- BIT(1)
> VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS	- BIT(2)
> VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE	- BIT(3)
> 
> Each state will pause with a 1-second delay per iteration, continuing until
> its corresponding bit is cleared.
> 
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Tomasz Lis <tomasz.lis@intel.com>
> 
> ---
> V5 -> V6:
> - Fixed review comments (Michal W).
> - Removed timeout and VF KMD waits infinately when resfix_stoppers bits are
> set.
> - Created helper macro for WAIT positions.
> 
> V4 -> V5:
> - Updated debugfs entries (Michal W).
> 
> V3 -> V4:
> - New commit
> 
> V2 -> V3:
> - None.
> 
> V1 -> V2:
> - None.
> ---
>  drivers/gpu/drm/xe/xe_gt_sriov_vf.c         | 38 +++++++++++++++++++++
>  drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c |  5 +++
>  drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h   |  8 +++++
>  3 files changed, 51 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 8e3fba6521f0..aabc3064c3ef 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -5,6 +5,7 @@
>  
>  #include <linux/bitfield.h>
>  #include <linux/bsearch.h>
> +#include <linux/delay.h>
>  
>  #include <drm/drm_managed.h>
>  #include <drm/drm_print.h>
> @@ -1228,6 +1229,35 @@ static int vf_post_migration_resfix_done(struct xe_gt *gt, u16 marker)
>  	return vf_resfix_done(gt, marker);
>  }
>  
> +#define VF_MIGRATION_WAIT_NO_WAIT			0

do we need this?

> +#define VF_MIGRATION_WAIT_BEFORE_RESFIX_START		BIT(0)
> +#define VF_MIGRATION_WAIT_BEFORE_FIXUPS			BIT(1)
> +#define VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS		BIT(2)
> +#define VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE		BIT(3)

nit: maybe define them as enum? and "BEFORE" tag seems little redundant

enum VF_MIGRATION_WAIT_POINTS {
	VF_MIGRATION_WAIT_RESFIX_START = BIT(0),
	...



> +
> +#define VF_MIGRATION_WAIT_DELAY_IN_MS			1000

move it under below #ifdef 

> +
> +#define VF_MIGRATION_INJECT_WAIT(gt, _POS) ({	\
> +	struct xe_gt *__gt = (gt);		\
> +	vf_post_migration_inject_wait(__gt, VF_MIGRATION_WAIT_##_POS); \
> +	})

nit: please make sure to align to the same column trailing \

> +
> +#ifdef CONFIG_DRM_XE_DEBUG
> +static void vf_post_migration_inject_wait(struct xe_gt *gt, int wait)

s/int/enum

> +{
> +	uint delay_ms = VF_MIGRATION_WAIT_DELAY_IN_MS;

do we need this ?

> +
> +	while (gt->sriov.vf.migration.debug.resfix_stoppers &  wait) {

double space before 'wait'

> +		xe_gt_dbg(gt, "*TESTING* injecting delay due to resfix_stoppers = 0x%x\n",

from this message we might still don't know where we wait if multiple bits are set
maybe just print the 'wait' bit, or all info:

	"*TESTING* injecting %u ms delay due to resfix_stoppers=%#x, to continue clear %#x\n",
	VF_MIGRATION_WAIT_DELAY_IN_MS, gt->sriov.vf.migration.debug.resfix_stoppers, wait


> +			  gt->sriov.vf.migration.debug.resfix_stoppers);
> +
> +		msleep(delay_ms);
> +	}
> +}
> +#else
> +static void vf_post_migration_inject_wait(struct xe_gt *gt, int wait) { }

nit: maybe instead defining empty stub function, just define stub for macro ?

> +#endif
> +
>  /*
>   * Reset the marker to 1 after it overflows since GuC requires a non-zero
>   * marker to be set.
> @@ -1266,18 +1296,26 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
>  		goto fail;
>  	}
>  
> +	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESFIX_START);

do we want to have all these wait points defined here in vf_post_migration_recovery()
or maybe we should add those macros inside relevant functions?

	vf_post_migration_resfix_start_marker(gt)
	{
		VF_MIGRATION_INJECT_WAIT(gt, RESFIX_START);
		...
	}


> +
>  	marker = vf_post_migration_resfix_start_marker(gt);
>  
>  	err = vf_resfix_start(gt, marker);
>  	if (err)
>  		goto fail;
>  
> +	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_FIXUPS);
> +
>  	err = vf_post_migration_fixups(gt);
>  	if (err)
>  		goto fail;
>  
> +	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESTART_JOBS);
> +
>  	vf_post_migration_rearm(gt);
>  
> +	VF_MIGRATION_INJECT_WAIT(gt, BEFORE_RESFIX_DONE);
> +
>  	err = vf_post_migration_resfix_done(gt, marker);
>  	if (err == -EREMCHG)
>  		goto queue;
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
> index 2ed5b6780d30..66d5ffd0e371 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.c
> @@ -69,4 +69,9 @@ void xe_gt_sriov_vf_debugfs_register(struct xe_gt *gt, struct dentry *root)
>  	vfdentry->d_inode->i_private = gt;
>  
>  	drm_debugfs_create_files(vf_info, ARRAY_SIZE(vf_info), vfdentry, minor);
> +
> +	if (IS_ENABLED(CONFIG_DRM_XE_DEBUG)) {

add here small info about location of this new entry (like it's done for other files)

/*
 *      /sys/kernel/debug/dri/BDF/
 *      ├── tile0
 *          ├── gt0
 *              ├── vf
 *                  ├── resfix_stoppers
 */

> +		debugfs_create_x8("resfix_stoppers", 0600, vfdentry,
> +				  &gt->sriov.vf.migration.debug.resfix_stoppers);
> +	}
>  }
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> index 66c0062a42c6..3ece00f74e46 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf_types.h
> @@ -52,6 +52,14 @@ struct xe_gt_sriov_vf_migration {
>  	wait_queue_head_t wq;
>  	/** @scratch: Scratch memory for VF recovery */
>  	void *scratch;
> +	/** @debug: Debug hooks for delaying migration */
> +	struct {
> +		/**
> +		 * @debug.resfix_stoppers: Stop and wait at different stages
> +		 * during post migration recovery
> +		 */
> +		u8 resfix_stoppers;
> +	} debug;
>  	/**
>  	 * @resfix_marker: Marker sent on start and on end of post-migration
>  	 * steps.


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

end of thread, other threads:[~2025-11-27 16:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-24 16:07 [PATCH v6 0/3] VF double migration Satyanarayana K V P
2025-11-24 16:07 ` [PATCH v6 1/3] drm/xe/vf: Enable VF migration only on supported GuC versions Satyanarayana K V P
2025-11-27 14:45   ` Michal Wajdeczko
2025-11-24 16:07 ` [PATCH v6 2/3] drm/xe/vf: Introduce RESFIX start marker support Satyanarayana K V P
2025-11-27 16:17   ` Michal Wajdeczko
2025-11-24 16:07 ` [PATCH v6 3/3] drm/xe/vf: Add debugfs entries to test VF double migration Satyanarayana K V P
2025-11-27 16:51   ` Michal Wajdeczko
2025-11-25  3:30 ` ✓ CI.KUnit: success for VF double migration (rev6) Patchwork
2025-11-25  4:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-11-25  6:55 ` ✗ Xe.CI.Full: failure " Patchwork

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