intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Core Xe changes preparing for VF migration
@ 2025-08-27 21:10 Matthew Brost
  2025-08-27 21:10 ` [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Matthew Brost @ 2025-08-27 21:10 UTC (permalink / raw)
  To: intel-xe; +Cc: tomasz.lis

Fixup a few known issues in Xe core code ahead of VF migration feature.

Small behavior changes in LR jobs, these now can be resubmitted. LR
queue's now have DRM scheduler flow control too which renders
xe_exec_compute_mode.non-blocking invalid.

Test-with: 20250818165742.2648473-1-matthew.brost@intel.com

v2:
 - Fixup CI failures by ensuring DRM sched TDR never fires for LR jobs
v3:
 - Don't adjust ring head on GT resets, this could break kernel queues
 - Resend for CI with test with tag
v4:
 - Clarify commit messages

Matt

Matthew Brost (3):
  drm/xe: Save off position in ring in which a job was programmed
  drm/xe/guc: Track pending-enable source in submission state
  drm/xe: Track LR jobs in DRM scheduler pending list

 drivers/gpu/drm/xe/xe_exec.c            | 12 +---
 drivers/gpu/drm/xe/xe_exec_queue.c      | 19 ------
 drivers/gpu/drm/xe/xe_exec_queue.h      |  2 -
 drivers/gpu/drm/xe/xe_guc_submit.c      | 79 ++++++++++++++++++++-----
 drivers/gpu/drm/xe/xe_ring_ops.c        | 23 +++++--
 drivers/gpu/drm/xe/xe_sched_job_types.h |  5 ++
 6 files changed, 91 insertions(+), 49 deletions(-)

-- 
2.34.1


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

* [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
@ 2025-08-27 21:10 ` Matthew Brost
  2025-08-29 14:55   ` Lis, Tomasz
  2025-08-27 21:10 ` [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-08-27 21:10 UTC (permalink / raw)
  To: intel-xe; +Cc: tomasz.lis

VF post-migration recovery needs to modify the ring with updated GGTT
addresses for pending jobs. Save off position in ring in which a job was
programmed to facilitate.

v4:
 - s/VF resume/VF post-migration recovery (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_ring_ops.c        | 23 +++++++++++++++++++----
 drivers/gpu/drm/xe/xe_sched_job_types.h |  5 +++++
 2 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
index 5f15360d14bf..4dad28f0614d 100644
--- a/drivers/gpu/drm/xe/xe_ring_ops.c
+++ b/drivers/gpu/drm/xe/xe_ring_ops.c
@@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
 
 /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
 static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
-				    u64 batch_addr, u32 seqno)
+				    u64 batch_addr, u32 *head, u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
 	struct xe_gt *gt = job->q->gt;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	if (job->ring_ops_flush_tlb) {
@@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
 }
 
 static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
-				   u64 batch_addr, u32 seqno)
+				   u64 batch_addr, u32 *head, u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
 	struct xe_device *xe = gt_to_xe(gt);
 	bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
 
 static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 					    struct xe_lrc *lrc,
-					    u64 batch_addr, u32 seqno)
+					    u64 batch_addr, u32 *head,
+					    u32 seqno)
 {
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 	u32 ppgtt_flag = get_ppgtt_flag(job);
@@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
 	u32 mask_flags = 0;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	dw[i++] = preparser_disable(true);
@@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
 }
 
 static void emit_migration_job_gen12(struct xe_sched_job *job,
-				     struct xe_lrc *lrc, u32 seqno)
+				     struct xe_lrc *lrc, u32 *head,
+				     u32 seqno)
 {
 	u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
 	u32 dw[MAX_JOB_SIZE_DW], i = 0;
 
+	*head = lrc->ring.tail;
+
 	i = emit_copy_timestamp(lrc, dw, i);
 
 	i = emit_store_imm_ggtt(saddr, seqno, dw, i);
@@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
 
 	__emit_job_gen12_simple(job, job->q->lrc[0],
 				job->ptrs[0].batch_addr,
+				&job->ptrs[0].head,
 				xe_sched_job_lrc_seqno(job));
 }
 
@@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
 
 	if (xe_sched_job_is_migration(job->q)) {
 		emit_migration_job_gen12(job, job->q->lrc[0],
+					 &job->ptrs[0].head,
 					 xe_sched_job_lrc_seqno(job));
 		return;
 	}
@@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_simple(job, job->q->lrc[i],
 					job->ptrs[i].batch_addr,
+					&job->ptrs[i].head,
 					xe_sched_job_lrc_seqno(job));
 }
 
@@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_video(job, job->q->lrc[i],
 				       job->ptrs[i].batch_addr,
+				       &job->ptrs[i].head,
 				       xe_sched_job_lrc_seqno(job));
 }
 
@@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
 	for (i = 0; i < job->q->width; ++i)
 		__emit_job_gen12_render_compute(job, job->q->lrc[i],
 						job->ptrs[i].batch_addr,
+						&job->ptrs[i].head,
 						xe_sched_job_lrc_seqno(job));
 }
 
diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
index dbf260dded8d..7ce58765a34a 100644
--- a/drivers/gpu/drm/xe/xe_sched_job_types.h
+++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
@@ -24,6 +24,11 @@ struct xe_job_ptrs {
 	struct dma_fence_chain *chain_fence;
 	/** @batch_addr: Batch buffer address. */
 	u64 batch_addr;
+	/**
+	 * @head: The tail pointer of the LRC (so head pointer of job) when the
+	 * job was submitted
+	 */
+	u32 head;
 };
 
 /**
-- 
2.34.1


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

* [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
  2025-08-27 21:10 ` [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
@ 2025-08-27 21:10 ` Matthew Brost
  2025-08-29 14:56   ` Lis, Tomasz
  2025-08-27 21:10 ` [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-08-27 21:10 UTC (permalink / raw)
  To: intel-xe; +Cc: tomasz.lis

Add explicit tracking in the GuC submission state to record the source
of a pending enable (TDR vs. queue resume path vs. submission).
Disambiguating the origin lets the GuC submission state machine apply
the correct recovery/replay behavior.

This helps VF restore: when the device comes back, the state machine knows
whether the pending enable stems from timeout recovery, from a queue resume
sequence, or submission and can gate sequencing and fixups accordingly.

v4:
 - Clarify commit message (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_submit.c | 36 ++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 1185b23b1384..9e4118126ef9 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -68,6 +68,8 @@ exec_queue_to_guc(struct xe_exec_queue *q)
 #define EXEC_QUEUE_STATE_BANNED			(1 << 9)
 #define EXEC_QUEUE_STATE_CHECK_TIMEOUT		(1 << 10)
 #define EXEC_QUEUE_STATE_EXTRA_REF		(1 << 11)
+#define EXEC_QUEUE_STATE_PENDING_RESUME		(1 << 12)
+#define EXEC_QUEUE_STATE_PENDING_TDR_EXIT	(1 << 13)
 
 static bool exec_queue_registered(struct xe_exec_queue *q)
 {
@@ -219,6 +221,36 @@ static void set_exec_queue_extra_ref(struct xe_exec_queue *q)
 	atomic_or(EXEC_QUEUE_STATE_EXTRA_REF, &q->guc->state);
 }
 
+static bool __maybe_unused exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_RESUME;
+}
+
+static void set_exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	atomic_or(EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
+}
+
+static void clear_exec_queue_pending_resume(struct xe_exec_queue *q)
+{
+	atomic_and(~EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
+}
+
+static bool __maybe_unused exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_TDR_EXIT;
+}
+
+static void set_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	atomic_or(EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
+}
+
+static void clear_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
+{
+	atomic_and(~EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
+}
+
 static bool exec_queue_killed_or_banned_or_wedged(struct xe_exec_queue *q)
 {
 	return (atomic_read(&q->guc->state) &
@@ -1344,6 +1376,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
 	return DRM_GPU_SCHED_STAT_RESET;
 
 sched_enable:
+	set_exec_queue_pending_tdr_exit(q);
 	enable_scheduling(q);
 rearm:
 	/*
@@ -1494,6 +1527,7 @@ static void __guc_exec_queue_process_msg_resume(struct xe_sched_msg *msg)
 		clear_exec_queue_suspended(q);
 		if (!exec_queue_enabled(q)) {
 			q->guc->resume_time = RESUME_PENDING;
+			set_exec_queue_pending_resume(q);
 			enable_scheduling(q);
 		}
 	} else {
@@ -2065,6 +2099,8 @@ static void handle_sched_done(struct xe_guc *guc, struct xe_exec_queue *q,
 		xe_gt_assert(guc_to_gt(guc), exec_queue_pending_enable(q));
 
 		q->guc->resume_time = ktime_get();
+		clear_exec_queue_pending_resume(q);
+		clear_exec_queue_pending_tdr_exit(q);
 		clear_exec_queue_pending_enable(q);
 		smp_wmb();
 		wake_up_all(&guc->ct.wq);
-- 
2.34.1


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

* [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
  2025-08-27 21:10 ` [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
  2025-08-27 21:10 ` [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
@ 2025-08-27 21:10 ` Matthew Brost
  2025-08-29 14:56   ` Lis, Tomasz
  2025-08-27 22:50 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 14+ messages in thread
From: Matthew Brost @ 2025-08-27 21:10 UTC (permalink / raw)
  To: intel-xe; +Cc: tomasz.lis

VF migration requires jobs to remain pending so they can be replayed
after the VF comes back. Previously, LR job fences were intentionally
signaled immediately after submission to avoid the risk of exporting
them, as these fences do not naturally signal in a timely manner and
could break dma-fence contracts. A side effect of this approach was that
LR jobs were never added to the DRM scheduler’s pending list, preventing
them from being tracked for later resubmission.

We now avoid signaling LR job fences and ensure they are never exported;
Xe already guards against exporting these internal fences. With that
guarantee in place, we can safely track LR jobs in the scheduler’s
pending list so they are eligible for resubmission during VF
post-migration recovery (and similar recovery paths).

An added benefit is that LR queues now gain the DRM scheduler’s built-in
flow control over ring usage rather than rejecting new jobs in the exec
IOCTL if the ring is full.

v2:
 - Ensure DRM scheduler TDR doesn't run for LR jobs
 - Stack variable for killed_or_banned_or_wedged
v4:
 - Clarify commit message (Tomasz)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_exec.c       | 12 ++-------
 drivers/gpu/drm/xe/xe_exec_queue.c | 19 -------------
 drivers/gpu/drm/xe/xe_exec_queue.h |  2 --
 drivers/gpu/drm/xe/xe_guc_submit.c | 43 ++++++++++++++++++++----------
 4 files changed, 31 insertions(+), 45 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 44364c042ad7..b29b6edd59e0 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -117,7 +117,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 	u32 i, num_syncs, num_ufence = 0;
 	struct xe_sched_job *job;
 	struct xe_vm *vm;
-	bool write_locked, skip_retry = false;
+	bool write_locked;
 	ktime_t end = 0;
 	int err = 0;
 	struct xe_hw_engine_group *group;
@@ -256,12 +256,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		goto err_exec;
 	}
 
-	if (xe_exec_queue_is_lr(q) && xe_exec_queue_ring_full(q)) {
-		err = -EWOULDBLOCK;	/* Aliased to -EAGAIN */
-		skip_retry = true;
-		goto err_exec;
-	}
-
 	if (xe_exec_queue_uses_pxp(q)) {
 		err = xe_vm_validate_protected(q->vm);
 		if (err)
@@ -318,8 +312,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		xe_sched_job_init_user_fence(job, &syncs[i]);
 	}
 
-	if (xe_exec_queue_is_lr(q))
-		q->ring_ops->emit_job(job);
 	if (!xe_vm_in_lr_mode(vm))
 		xe_exec_queue_last_fence_set(q, vm, &job->drm.s_fence->finished);
 	xe_sched_job_push(job);
@@ -344,7 +336,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 	drm_exec_fini(exec);
 err_unlock_list:
 	up_read(&vm->lock);
-	if (err == -EAGAIN && !skip_retry)
+	if (err == -EAGAIN)
 		goto retry;
 err_hw_exec_mode:
 	if (mode == EXEC_MODE_DMA_FENCE)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 063c89d981e5..a419f4bd3ab8 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -816,25 +816,6 @@ bool xe_exec_queue_is_lr(struct xe_exec_queue *q)
 		!(q->flags & EXEC_QUEUE_FLAG_VM);
 }
 
-static s32 xe_exec_queue_num_job_inflight(struct xe_exec_queue *q)
-{
-	return q->lrc[0]->fence_ctx.next_seqno - xe_lrc_seqno(q->lrc[0]) - 1;
-}
-
-/**
- * xe_exec_queue_ring_full() - Whether an exec_queue's ring is full
- * @q: The exec_queue
- *
- * Return: True if the exec_queue's ring is full, false otherwise.
- */
-bool xe_exec_queue_ring_full(struct xe_exec_queue *q)
-{
-	struct xe_lrc *lrc = q->lrc[0];
-	s32 max_job = lrc->ring.size / MAX_JOB_SIZE_BYTES;
-
-	return xe_exec_queue_num_job_inflight(q) >= max_job;
-}
-
 /**
  * xe_exec_queue_is_idle() - Whether an exec_queue is idle.
  * @q: The exec_queue
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index 15ec852e7f7e..6ae11a1c7404 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -64,8 +64,6 @@ static inline bool xe_exec_queue_uses_pxp(struct xe_exec_queue *q)
 
 bool xe_exec_queue_is_lr(struct xe_exec_queue *q);
 
-bool xe_exec_queue_ring_full(struct xe_exec_queue *q);
-
 bool xe_exec_queue_is_idle(struct xe_exec_queue *q);
 
 void xe_exec_queue_kill(struct xe_exec_queue *q);
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 9e4118126ef9..69ed3c159d10 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -837,30 +837,31 @@ guc_exec_queue_run_job(struct drm_sched_job *drm_job)
 	struct xe_sched_job *job = to_xe_sched_job(drm_job);
 	struct xe_exec_queue *q = job->q;
 	struct xe_guc *guc = exec_queue_to_guc(q);
-	struct dma_fence *fence = NULL;
-	bool lr = xe_exec_queue_is_lr(q);
+	bool lr = xe_exec_queue_is_lr(q), killed_or_banned_or_wedged =
+		exec_queue_killed_or_banned_or_wedged(q);
 
 	xe_gt_assert(guc_to_gt(guc), !(exec_queue_destroyed(q) || exec_queue_pending_disable(q)) ||
 		     exec_queue_banned(q) || exec_queue_suspended(q));
 
 	trace_xe_sched_job_run(job);
 
-	if (!exec_queue_killed_or_banned_or_wedged(q) && !xe_sched_job_is_error(job)) {
+	if (!killed_or_banned_or_wedged && !xe_sched_job_is_error(job)) {
 		if (!exec_queue_registered(q))
 			register_exec_queue(q, GUC_CONTEXT_NORMAL);
-		if (!lr)	/* LR jobs are emitted in the exec IOCTL */
-			q->ring_ops->emit_job(job);
+		q->ring_ops->emit_job(job);
 		submit_exec_queue(q);
 	}
 
-	if (lr) {
-		xe_sched_job_set_error(job, -EOPNOTSUPP);
-		dma_fence_put(job->fence);	/* Drop ref from xe_sched_job_arm */
-	} else {
-		fence = job->fence;
-	}
+	/*
+	 * We don't care about job-fence ordering in LR VMs because these fences
+	 * are never exported; they are used solely to keep jobs on the pending
+	 * list. Once a queue enters an error state, there's no need to track
+	 * them.
+	 */
+	if (killed_or_banned_or_wedged && lr)
+		xe_sched_job_set_error(job, -ECANCELED);
 
-	return fence;
+	return job->fence;
 }
 
 /**
@@ -926,7 +927,8 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
 		xe_gt_warn(q->gt, "Pending enable/disable failed to respond\n");
 		xe_sched_submission_start(sched);
 		xe_gt_reset_async(q->gt);
-		xe_sched_tdr_queue_imm(sched);
+		if (!xe_exec_queue_is_lr(q))
+			xe_sched_tdr_queue_imm(sched);
 		return;
 	}
 
@@ -1018,6 +1020,7 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
 	struct xe_exec_queue *q = ge->q;
 	struct xe_guc *guc = exec_queue_to_guc(q);
 	struct xe_gpu_scheduler *sched = &ge->sched;
+	struct xe_sched_job *job;
 	bool wedged = false;
 
 	xe_gt_assert(guc_to_gt(guc), xe_exec_queue_is_lr(q));
@@ -1068,7 +1071,16 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
 	if (!exec_queue_killed(q) && !xe_lrc_ring_is_idle(q->lrc[0]))
 		xe_devcoredump(q, NULL, "LR job cleanup, guc_id=%d", q->guc->id);
 
+	xe_hw_fence_irq_stop(q->fence_irq);
+
 	xe_sched_submission_start(sched);
+
+	spin_lock(&sched->base.job_list_lock);
+	list_for_each_entry(job, &sched->base.pending_list, drm.list)
+		xe_sched_job_set_error(job, -ECANCELED);
+	spin_unlock(&sched->base.job_list_lock);
+
+	xe_hw_fence_irq_start(q->fence_irq);
 }
 
 #define ADJUST_FIVE_PERCENT(__t)	mul_u64_u32_div(__t, 105, 100)
@@ -1139,7 +1151,8 @@ static void enable_scheduling(struct xe_exec_queue *q)
 		xe_gt_warn(guc_to_gt(guc), "Schedule enable failed to respond");
 		set_exec_queue_banned(q);
 		xe_gt_reset_async(q->gt);
-		xe_sched_tdr_queue_imm(&q->guc->sched);
+		if (!xe_exec_queue_is_lr(q))
+			xe_sched_tdr_queue_imm(&q->guc->sched);
 	}
 }
 
@@ -1197,6 +1210,8 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
 	int i = 0;
 	bool wedged = false, skip_timeout_check;
 
+	xe_gt_assert(guc_to_gt(guc), !xe_exec_queue_is_lr(q));
+
 	/*
 	 * TDR has fired before free job worker. Common if exec queue
 	 * immediately closed after last fence signaled. Add back to pending
-- 
2.34.1


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

* ✓ CI.KUnit: success for Core Xe changes preparing for VF migration
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (2 preceding siblings ...)
  2025-08-27 21:10 ` [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
@ 2025-08-27 22:50 ` Patchwork
  2025-08-27 23:28 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-08-27 22:50 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: Core Xe changes preparing for VF migration
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:49:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:49:34] 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
[22:50:03] Starting KUnit Kernel (1/1)...
[22:50:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:50:03] ================== guc_buf (11 subtests) ===================
[22:50:03] [PASSED] test_smallest
[22:50:03] [PASSED] test_largest
[22:50:03] [PASSED] test_granular
[22:50:03] [PASSED] test_unique
[22:50:03] [PASSED] test_overlap
[22:50:03] [PASSED] test_reusable
[22:50:03] [PASSED] test_too_big
[22:50:03] [PASSED] test_flush
[22:50:03] [PASSED] test_lookup
[22:50:03] [PASSED] test_data
[22:50:03] [PASSED] test_class
[22:50:03] ===================== [PASSED] guc_buf =====================
[22:50:03] =================== guc_dbm (7 subtests) ===================
[22:50:03] [PASSED] test_empty
[22:50:03] [PASSED] test_default
[22:50:03] ======================== test_size  ========================
[22:50:03] [PASSED] 4
[22:50:03] [PASSED] 8
[22:50:03] [PASSED] 32
[22:50:03] [PASSED] 256
[22:50:03] ==================== [PASSED] test_size ====================
[22:50:03] ======================= test_reuse  ========================
[22:50:03] [PASSED] 4
[22:50:03] [PASSED] 8
[22:50:03] [PASSED] 32
[22:50:03] [PASSED] 256
[22:50:03] =================== [PASSED] test_reuse ====================
[22:50:03] =================== test_range_overlap  ====================
[22:50:03] [PASSED] 4
[22:50:03] [PASSED] 8
[22:50:03] [PASSED] 32
[22:50:03] [PASSED] 256
[22:50:03] =============== [PASSED] test_range_overlap ================
[22:50:03] =================== test_range_compact  ====================
[22:50:03] [PASSED] 4
[22:50:03] [PASSED] 8
[22:50:03] [PASSED] 32
[22:50:03] [PASSED] 256
[22:50:03] =============== [PASSED] test_range_compact ================
[22:50:03] ==================== test_range_spare  =====================
[22:50:03] [PASSED] 4
[22:50:03] [PASSED] 8
[22:50:03] [PASSED] 32
[22:50:03] [PASSED] 256
[22:50:03] ================ [PASSED] test_range_spare =================
[22:50:03] ===================== [PASSED] guc_dbm =====================
[22:50:03] =================== guc_idm (6 subtests) ===================
[22:50:03] [PASSED] bad_init
[22:50:03] [PASSED] no_init
[22:50:03] [PASSED] init_fini
[22:50:03] [PASSED] check_used
[22:50:03] [PASSED] check_quota
[22:50:03] [PASSED] check_all
[22:50:03] ===================== [PASSED] guc_idm =====================
[22:50:03] ================== no_relay (3 subtests) ===================
[22:50:03] [PASSED] xe_drops_guc2pf_if_not_ready
[22:50:03] [PASSED] xe_drops_guc2vf_if_not_ready
[22:50:03] [PASSED] xe_rejects_send_if_not_ready
[22:50:03] ==================== [PASSED] no_relay =====================
[22:50:03] ================== pf_relay (14 subtests) ==================
[22:50:03] [PASSED] pf_rejects_guc2pf_too_short
[22:50:03] [PASSED] pf_rejects_guc2pf_too_long
[22:50:03] [PASSED] pf_rejects_guc2pf_no_payload
[22:50:03] [PASSED] pf_fails_no_payload
[22:50:03] [PASSED] pf_fails_bad_origin
[22:50:03] [PASSED] pf_fails_bad_type
[22:50:03] [PASSED] pf_txn_reports_error
[22:50:03] [PASSED] pf_txn_sends_pf2guc
[22:50:03] [PASSED] pf_sends_pf2guc
[22:50:03] [SKIPPED] pf_loopback_nop
[22:50:03] [SKIPPED] pf_loopback_echo
[22:50:03] [SKIPPED] pf_loopback_fail
[22:50:03] [SKIPPED] pf_loopback_busy
[22:50:03] [SKIPPED] pf_loopback_retry
[22:50:03] ==================== [PASSED] pf_relay =====================
[22:50:03] ================== vf_relay (3 subtests) ===================
[22:50:03] [PASSED] vf_rejects_guc2vf_too_short
[22:50:03] [PASSED] vf_rejects_guc2vf_too_long
[22:50:03] [PASSED] vf_rejects_guc2vf_no_payload
[22:50:03] ==================== [PASSED] vf_relay =====================
[22:50:03] ===================== lmtt (1 subtest) =====================
[22:50:03] ======================== test_ops  =========================
[22:50:03] [PASSED] 2-level
[22:50:03] [PASSED] multi-level
[22:50:03] ==================== [PASSED] test_ops =====================
[22:50:03] ====================== [PASSED] lmtt =======================
[22:50:03] ================= pf_service (11 subtests) =================
[22:50:03] [PASSED] pf_negotiate_any
[22:50:03] [PASSED] pf_negotiate_base_match
[22:50:03] [PASSED] pf_negotiate_base_newer
[22:50:03] [PASSED] pf_negotiate_base_next
[22:50:03] [SKIPPED] pf_negotiate_base_older
[22:50:03] [PASSED] pf_negotiate_base_prev
[22:50:03] [PASSED] pf_negotiate_latest_match
[22:50:03] [PASSED] pf_negotiate_latest_newer
[22:50:03] [PASSED] pf_negotiate_latest_next
[22:50:03] [SKIPPED] pf_negotiate_latest_older
[22:50:03] [SKIPPED] pf_negotiate_latest_prev
[22:50:03] =================== [PASSED] pf_service ====================
[22:50:03] =================== xe_mocs (2 subtests) ===================
[22:50:03] ================ xe_live_mocs_kernel_kunit  ================
[22:50:03] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:50:03] ================ xe_live_mocs_reset_kunit  =================
[22:50:03] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:50:03] ==================== [SKIPPED] xe_mocs =====================
[22:50:03] ================= xe_migrate (2 subtests) ==================
[22:50:03] ================= xe_migrate_sanity_kunit  =================
[22:50:03] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:50:03] ================== xe_validate_ccs_kunit  ==================
[22:50:03] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:50:03] =================== [SKIPPED] xe_migrate ===================
[22:50:03] ================== xe_dma_buf (1 subtest) ==================
[22:50:03] ==================== xe_dma_buf_kunit  =====================
[22:50:03] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:50:03] =================== [SKIPPED] xe_dma_buf ===================
[22:50:03] ================= xe_bo_shrink (1 subtest) =================
[22:50:03] =================== xe_bo_shrink_kunit  ====================
[22:50:03] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:50:03] ================== [SKIPPED] xe_bo_shrink ==================
[22:50:03] ==================== xe_bo (2 subtests) ====================
[22:50:03] ================== xe_ccs_migrate_kunit  ===================
[22:50:03] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:50:03] ==================== xe_bo_evict_kunit  ====================
[22:50:03] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:50:03] ===================== [SKIPPED] xe_bo ======================
[22:50:03] ==================== args (11 subtests) ====================
[22:50:03] [PASSED] count_args_test
[22:50:03] [PASSED] call_args_example
[22:50:03] [PASSED] call_args_test
[22:50:03] [PASSED] drop_first_arg_example
[22:50:03] [PASSED] drop_first_arg_test
[22:50:03] [PASSED] first_arg_example
[22:50:03] [PASSED] first_arg_test
[22:50:03] [PASSED] last_arg_example
[22:50:03] [PASSED] last_arg_test
[22:50:03] [PASSED] pick_arg_example
[22:50:03] [PASSED] sep_comma_example
[22:50:03] ====================== [PASSED] args =======================
[22:50:03] =================== xe_pci (3 subtests) ====================
[22:50:03] ==================== check_graphics_ip  ====================
[22:50:03] [PASSED] 12.70 Xe_LPG
[22:50:03] [PASSED] 12.71 Xe_LPG
[22:50:03] [PASSED] 12.74 Xe_LPG+
[22:50:03] [PASSED] 20.01 Xe2_HPG
[22:50:03] [PASSED] 20.02 Xe2_HPG
[22:50:03] [PASSED] 20.04 Xe2_LPG
[22:50:03] [PASSED] 30.00 Xe3_LPG
[22:50:03] [PASSED] 30.01 Xe3_LPG
[22:50:03] [PASSED] 30.03 Xe3_LPG
[22:50:03] ================ [PASSED] check_graphics_ip ================
[22:50:03] ===================== check_media_ip  ======================
[22:50:03] [PASSED] 13.00 Xe_LPM+
[22:50:03] [PASSED] 13.01 Xe2_HPM
[22:50:03] [PASSED] 20.00 Xe2_LPM
[22:50:03] [PASSED] 30.00 Xe3_LPM
[22:50:03] [PASSED] 30.02 Xe3_LPM
[22:50:03] ================= [PASSED] check_media_ip ==================
[22:50:03] ================= check_platform_gt_count  =================
[22:50:03] [PASSED] 0x9A60 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A68 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A70 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A40 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A49 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A59 (TIGERLAKE)
[22:50:03] [PASSED] 0x9A78 (TIGERLAKE)
[22:50:03] [PASSED] 0x9AC0 (TIGERLAKE)
[22:50:03] [PASSED] 0x9AC9 (TIGERLAKE)
[22:50:03] [PASSED] 0x9AD9 (TIGERLAKE)
[22:50:03] [PASSED] 0x9AF8 (TIGERLAKE)
[22:50:03] [PASSED] 0x4C80 (ROCKETLAKE)
[22:50:03] [PASSED] 0x4C8A (ROCKETLAKE)
[22:50:03] [PASSED] 0x4C8B (ROCKETLAKE)
[22:50:03] [PASSED] 0x4C8C (ROCKETLAKE)
[22:50:03] [PASSED] 0x4C90 (ROCKETLAKE)
[22:50:03] [PASSED] 0x4C9A (ROCKETLAKE)
[22:50:03] [PASSED] 0x4680 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4682 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4688 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x468A (ALDERLAKE_S)
[22:50:03] [PASSED] 0x468B (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4690 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4692 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4693 (ALDERLAKE_S)
[22:50:03] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46AA (ALDERLAKE_P)
[22:50:03] [PASSED] 0x462A (ALDERLAKE_P)
[22:50:03] [PASSED] 0x4626 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x4628 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:50:03] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:50:03] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:50:03] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:50:03] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:50:03] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:50:03] [PASSED] 0xA721 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA720 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:50:03] [PASSED] 0xA780 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA781 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA782 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA783 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA788 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA789 (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA78A (ALDERLAKE_S)
[22:50:03] [PASSED] 0xA78B (ALDERLAKE_S)
[22:50:03] [PASSED] 0x4905 (DG1)
[22:50:03] [PASSED] 0x4906 (DG1)
[22:50:03] [PASSED] 0x4907 (DG1)
[22:50:03] [PASSED] 0x4908 (DG1)
[22:50:03] [PASSED] 0x4909 (DG1)
[22:50:03] [PASSED] 0x56C0 (DG2)
[22:50:03] [PASSED] 0x56C2 (DG2)
[22:50:03] [PASSED] 0x56C1 (DG2)
[22:50:03] [PASSED] 0x7D51 (METEORLAKE)
[22:50:03] [PASSED] 0x7DD1 (METEORLAKE)
[22:50:03] [PASSED] 0x7D41 (METEORLAKE)
[22:50:03] [PASSED] 0x7D67 (METEORLAKE)
[22:50:03] [PASSED] 0xB640 (METEORLAKE)
[22:50:03] [PASSED] 0x56A0 (DG2)
[22:50:03] [PASSED] 0x56A1 (DG2)
[22:50:03] [PASSED] 0x56A2 (DG2)
[22:50:03] [PASSED] 0x56BE (DG2)
[22:50:03] [PASSED] 0x56BF (DG2)
[22:50:03] [PASSED] 0x5690 (DG2)
[22:50:03] [PASSED] 0x5691 (DG2)
[22:50:03] [PASSED] 0x5692 (DG2)
[22:50:03] [PASSED] 0x56A5 (DG2)
[22:50:03] [PASSED] 0x56A6 (DG2)
[22:50:03] [PASSED] 0x56B0 (DG2)
[22:50:03] [PASSED] 0x56B1 (DG2)
[22:50:03] [PASSED] 0x56BA (DG2)
[22:50:03] [PASSED] 0x56BB (DG2)
[22:50:03] [PASSED] 0x56BC (DG2)
[22:50:03] [PASSED] 0x56BD (DG2)
[22:50:03] [PASSED] 0x5693 (DG2)
[22:50:03] [PASSED] 0x5694 (DG2)
[22:50:03] [PASSED] 0x5695 (DG2)
[22:50:03] [PASSED] 0x56A3 (DG2)
[22:50:03] [PASSED] 0x56A4 (DG2)
[22:50:03] [PASSED] 0x56B2 (DG2)
[22:50:03] [PASSED] 0x56B3 (DG2)
[22:50:03] [PASSED] 0x5696 (DG2)
[22:50:03] [PASSED] 0x5697 (DG2)
[22:50:03] [PASSED] 0xB69 (PVC)
[22:50:03] [PASSED] 0xB6E (PVC)
[22:50:03] [PASSED] 0xBD4 (PVC)
[22:50:03] [PASSED] 0xBD5 (PVC)
[22:50:03] [PASSED] 0xBD6 (PVC)
[22:50:03] [PASSED] 0xBD7 (PVC)
[22:50:03] [PASSED] 0xBD8 (PVC)
[22:50:03] [PASSED] 0xBD9 (PVC)
[22:50:03] [PASSED] 0xBDA (PVC)
[22:50:03] [PASSED] 0xBDB (PVC)
[22:50:03] [PASSED] 0xBE0 (PVC)
[22:50:03] [PASSED] 0xBE1 (PVC)
[22:50:03] [PASSED] 0xBE5 (PVC)
[22:50:03] [PASSED] 0x7D40 (METEORLAKE)
[22:50:03] [PASSED] 0x7D45 (METEORLAKE)
[22:50:03] [PASSED] 0x7D55 (METEORLAKE)
[22:50:03] [PASSED] 0x7D60 (METEORLAKE)
[22:50:03] [PASSED] 0x7DD5 (METEORLAKE)
[22:50:03] [PASSED] 0x6420 (LUNARLAKE)
[22:50:03] [PASSED] 0x64A0 (LUNARLAKE)
[22:50:03] [PASSED] 0x64B0 (LUNARLAKE)
[22:50:03] [PASSED] 0xE202 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE209 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE20B (BATTLEMAGE)
[22:50:03] [PASSED] 0xE20C (BATTLEMAGE)
[22:50:03] [PASSED] 0xE20D (BATTLEMAGE)
[22:50:03] [PASSED] 0xE210 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE211 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE212 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE216 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE220 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE221 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE222 (BATTLEMAGE)
[22:50:03] [PASSED] 0xE223 (BATTLEMAGE)
[22:50:03] [PASSED] 0xB080 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB081 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB082 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB083 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB084 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB085 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB086 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB087 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB08F (PANTHERLAKE)
[22:50:03] [PASSED] 0xB090 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:50:03] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:50:03] [PASSED] 0xFD80 (PANTHERLAKE)
[22:50:03] [PASSED] 0xFD81 (PANTHERLAKE)
[22:50:03] ============= [PASSED] check_platform_gt_count =============
[22:50:03] ===================== [PASSED] xe_pci ======================
[22:50:03] =================== xe_rtp (2 subtests) ====================
[22:50:03] =============== xe_rtp_process_to_sr_tests  ================
[22:50:03] [PASSED] coalesce-same-reg
[22:50:03] [PASSED] no-match-no-add
[22:50:03] [PASSED] match-or
[22:50:03] [PASSED] match-or-xfail
[22:50:03] [PASSED] no-match-no-add-multiple-rules
[22:50:03] [PASSED] two-regs-two-entries
[22:50:03] [PASSED] clr-one-set-other
[22:50:03] [PASSED] set-field
[22:50:03] [PASSED] conflict-duplicate
[22:50:03] [PASSED] conflict-not-disjoint
[22:50:03] [PASSED] conflict-reg-type
[22:50:03] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:50:03] ================== xe_rtp_process_tests  ===================
[22:50:03] [PASSED] active1
[22:50:03] [PASSED] active2
[22:50:03] [PASSED] active-inactive
[22:50:03] [PASSED] inactive-active
[22:50:03] [PASSED] inactive-1st_or_active-inactive
[22:50:03] [PASSED] inactive-2nd_or_active-inactive
[22:50:03] [PASSED] inactive-last_or_active-inactive
[22:50:03] [PASSED] inactive-no_or_active-inactive
[22:50:03] ============== [PASSED] xe_rtp_process_tests ===============
[22:50:03] ===================== [PASSED] xe_rtp ======================
[22:50:03] ==================== xe_wa (1 subtest) =====================
[22:50:03] ======================== xe_wa_gt  =========================
[22:50:03] [PASSED] TIGERLAKE (B0)
[22:50:03] [PASSED] DG1 (A0)
[22:50:03] [PASSED] DG1 (B0)
[22:50:03] [PASSED] ALDERLAKE_S (A0)
[22:50:03] [PASSED] ALDERLAKE_S (B0)
[22:50:03] [PASSED] ALDERLAKE_S (C0)
[22:50:03] [PASSED] ALDERLAKE_S (D0)
[22:50:03] [PASSED] ALDERLAKE_P (A0)
[22:50:03] [PASSED] ALDERLAKE_P (B0)
[22:50:03] [PASSED] ALDERLAKE_P (C0)
[22:50:03] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:50:03] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:50:03] [PASSED] DG2_G10 (C0)
[22:50:03] [PASSED] DG2_G11 (B1)
[22:50:03] [PASSED] DG2_G12 (A1)
[22:50:03] [PASSED] METEORLAKE (g:A0, m:A0)
[22:50:03] [PASSED] METEORLAKE (g:A0, m:A0)
[22:50:03] [PASSED] METEORLAKE (g:A0, m:A0)
[22:50:03] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:50:03] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[22:50:03] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:50:03] [PASSED] PANTHERLAKE (g:A0, m:A0)
[22:50:03] ==================== [PASSED] xe_wa_gt =====================
[22:50:03] ====================== [PASSED] xe_wa ======================
[22:50:03] ============================================================
[22:50:03] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[22:50:04] Elapsed time: 33.366s total, 4.265s configuring, 28.734s building, 0.337s running

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

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

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



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

* ✓ Xe.CI.BAT: success for Core Xe changes preparing for VF migration
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (3 preceding siblings ...)
  2025-08-27 22:50 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration Patchwork
@ 2025-08-27 23:28 ` Patchwork
  2025-08-28  0:34 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-08-27 23:28 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_BAT -> xe-pw-153589v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-153589v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html

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

  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783


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

  * IGT: IGT_8511 -> IGT_8512
  * Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153589v1

  IGT_8511: 8511
  IGT_8512: 8512
  xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
  xe-pw-153589v1: 153589v1

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for Core Xe changes preparing for VF migration
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (4 preceding siblings ...)
  2025-08-27 23:28 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-28  0:34 ` Patchwork
  2025-08-28 20:03 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev2) Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-08-28  0:34 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration
URL   : https://patchwork.freedesktop.org/series/153589/
State : failure

== Summary ==

CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_FULL -> xe-pw-153589v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_compute_mode@non-blocking:
    - shard-bmg:          [PASS][1] -> [TIMEOUT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_exec_compute_mode@non-blocking.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@xe_exec_compute_mode@non-blocking.html
    - shard-lnl:          NOTRUN -> [TIMEOUT][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_exec_compute_mode@non-blocking.html
    - shard-adlp:         NOTRUN -> [FAIL][4]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_exec_compute_mode@non-blocking.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-adlp:         [PASS][5] -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_exec_reset@cm-gt-reset.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_exec_reset@cm-gt-reset.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
    - shard-adlp:         [PASS][7] -> [ABORT][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
    - shard-bmg:          [PASS][9] -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
    - shard-dg2-set2:     [PASS][11] -> [ABORT][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
    - shard-lnl:          [PASS][13] -> [ABORT][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-bmg:          [PASS][15] -> [INCOMPLETE][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_render_copy@render-stress-2-copies.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
    - shard-bmg:          [PASS][17] -> [FAIL][18] +2 other tests fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html

  
#### Warnings ####

  * igt@xe_exec_compute_mode@non-blocking:
    - shard-dg2-set2:     [SKIP][19] ([Intel XE#4208]) -> [TIMEOUT][20]
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_compute_mode@non-blocking.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_exec_compute_mode@non-blocking.html

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

  Here are the changes found in xe-pw-153589v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-write:
    - shard-dg2-set2:     [PASS][21] -> [SKIP][22] ([Intel XE#2134])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@fbdev@unaligned-write.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@fbdev@unaligned-write.html

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

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][24] ([Intel XE#4543]) +7 other tests dmesg-warn
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][25] -> [FAIL][26] ([Intel XE#3884]) +1 other test fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3:
    - shard-bmg:          [PASS][27] -> [DMESG-WARN][28] ([Intel XE#3428] / [Intel XE#5215]) +1 other test dmesg-warn
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#664])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#3279])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][31] ([Intel XE#3908]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#316]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#1407]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#1124]) +13 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

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

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2327])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][37] ([Intel XE#4543]) +1 other test dmesg-fail
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#316]) +5 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1124]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#1124]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#610])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#1428])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][43] -> [DMESG-FAIL][44] ([Intel XE#4543]) +8 other tests dmesg-fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#1124]) +8 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#2191]) +2 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

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

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2314] / [Intel XE#2894])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#2191]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#367])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#367]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#367]) +2 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#1512])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html

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

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#787]) +53 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#2907])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#3442])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-bmg:          [PASS][60] -> [INCOMPLETE][61] ([Intel XE#3862]) +1 other test incomplete
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#3432]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#3432]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#2907]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#787]) +216 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2887]) +3 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][68] ([Intel XE#1727] / [Intel XE#3113])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][69] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#4417] / [Intel XE#455])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#4417]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html

  * igt@kms_chamelium_audio@dp-audio:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#373]) +5 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_chamelium_audio@dp-audio.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#373]) +10 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#306])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@kms_chamelium_color@ctm-max.html
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#306]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2252]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#373]) +7 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#307]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2390])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
    - shard-adlp:         NOTRUN -> [SKIP][80] ([Intel XE#307]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_content_protection@dp-mst-type-1.html
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#307])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][82] ([Intel XE#1178])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][83] ([Intel XE#1178])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#2321]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#308]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-64x64:
    - shard-dg2-set2:     [PASS][86] -> [SKIP][87] ([Intel XE#4208] / [i915#2575]) +85 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1424]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2320])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#308]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_edge_walk@128x128-right-edge:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#4208] / [i915#2575]) +58 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_cursor_edge_walk@128x128-right-edge.html

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

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#2291]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#309]) +8 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#1508])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#4331]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#4294])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#4331])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@chamelium:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#701])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [PASS][101] -> [SKIP][102] ([Intel XE#2373])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_feature_discovery@display-2x.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][103] ([Intel XE#1138])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@kms_feature_discovery@display-4x.html
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1138])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][105] ([Intel XE#310]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-bmg:          [PASS][106] -> [SKIP][107] ([Intel XE#2316]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-interruptible.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html

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

  * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][109] ([Intel XE#2049] / [Intel XE#2597])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          NOTRUN -> [FAIL][110] ([Intel XE#301] / [Intel XE#3149])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          NOTRUN -> [FAIL][111] ([Intel XE#301])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][112] -> [DMESG-WARN][113] ([Intel XE#4543]) +14 other tests dmesg-warn
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-bmg:          [PASS][114] -> [INCOMPLETE][115] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
    - shard-adlp:         [PASS][116] -> [DMESG-WARN][117] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
    - shard-dg2-set2:     [PASS][118] -> [SKIP][119] ([Intel XE#2351] / [Intel XE#4208]) +14 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#1401]) +2 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2293] / [Intel XE#2380])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#2293])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#1397] / [Intel XE#1745])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#1397])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#455]) +15 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2311]) +5 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#2351] / [Intel XE#4208]) +10 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#656]) +38 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#5390]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][131] ([Intel XE#651]) +14 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#651]) +13 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][133] ([Intel XE#651]) +17 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][134] ([Intel XE#653]) +16 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2313]) +8 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2312])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][137] ([Intel XE#656]) +45 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][138] ([Intel XE#653]) +14 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [PASS][139] -> [SKIP][140] ([Intel XE#1503])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#2925])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][142] ([Intel XE#346])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][143] ([Intel XE#346])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#346])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#346])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][146] ([Intel XE#3012])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][147] ([Intel XE#2925])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#455]) +25 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][149] ([Intel XE#616]) +2 other tests fail
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

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

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][151] ([Intel XE#2763]) +7 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][152] ([Intel XE#870])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2938])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][154] ([Intel XE#870]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     NOTRUN -> [SKIP][155] ([Intel XE#3309])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#3309])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-adlp:         NOTRUN -> [SKIP][157] ([Intel XE#3309])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][158] -> [FAIL][159] ([Intel XE#718])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][160] ([Intel XE#1129])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html

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

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][163] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][164] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][165] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][166] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

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

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2-set2:     NOTRUN -> [SKIP][168] ([Intel XE#1122] / [Intel XE#1406])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][169] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#1406] / [Intel XE#4208]) +6 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][171] ([Intel XE#1406]) +4 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#1406] / [Intel XE#4609])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html

  * igt@kms_psr@pr-primary-page-flip:
    - shard-adlp:         NOTRUN -> [SKIP][173] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +13 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@kms_psr@pr-primary-page-flip.html

  * igt@kms_psr@pr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@kms_psr@pr-primary-render.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-adlp:         NOTRUN -> [SKIP][176] ([Intel XE#3414])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#3414] / [Intel XE#3904])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][178] ([Intel XE#1127])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1127])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@xe_ccs@block-copy-compressed-inc-dimension:
    - shard-adlp:         NOTRUN -> [SKIP][180] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_ccs@block-copy-compressed-inc-dimension.html

  * igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [FAIL][181] ([Intel XE#5890])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-adlp:         NOTRUN -> [SKIP][182] ([Intel XE#1123])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][183] ([Intel XE#1126])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#5626])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_eu_stall@non-blocking-re-enable.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#5626])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-bmg:          NOTRUN -> [SKIP][186] ([Intel XE#4837]) +3 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-dg2-set2:     NOTRUN -> [SKIP][187] ([Intel XE#4837]) +4 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-adlp:         NOTRUN -> [SKIP][188] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-adlp:         NOTRUN -> [SKIP][189] ([Intel XE#4519])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_evict@evict-beng-large-cm:
    - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#688]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_evict@evict-beng-large-cm.html
    - shard-adlp:         NOTRUN -> [SKIP][191] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_evict@evict-beng-large-cm.html

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

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-adlp:         NOTRUN -> [SKIP][193] ([Intel XE#5563] / [Intel XE#688])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

  * igt@xe_exec_basic@many-execqueues-userptr-invalidate-race:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][194] ([Intel XE#3876])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_exec_basic@many-execqueues-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
    - shard-dg2-set2:     NOTRUN -> [SKIP][195] ([Intel XE#1392]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][196] -> [SKIP][197] ([Intel XE#1392]) +1 other test skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
    - shard-lnl:          NOTRUN -> [SKIP][198] ([Intel XE#1392]) +7 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][199] ([Intel XE#1392] / [Intel XE#5575]) +8 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
    - shard-bmg:          NOTRUN -> [SKIP][200] ([Intel XE#2322]) +3 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][201] ([Intel XE#288] / [Intel XE#5561]) +31 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_exec_fault_mode@once-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-userptr-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#288]) +11 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][203] ([Intel XE#4208]) +291 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][204] ([Intel XE#3868])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          [PASS][205] -> [DMESG-WARN][206] ([Intel XE#3876])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][207] ([Intel XE#4837]) +11 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_system_allocator@process-many-execqueues-free:
    - shard-adlp:         NOTRUN -> [SKIP][208] ([Intel XE#4915]) +281 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@xe_exec_system_allocator@process-many-execqueues-free.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][209] ([Intel XE#4943]) +13 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][210] ([Intel XE#4943]) +2 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html

  * igt@xe_exec_system_allocator@twice-malloc-fork-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][211] ([Intel XE#4915]) +111 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_exec_system_allocator@twice-malloc-fork-read.html

  * igt@xe_exec_threads@threads-hang-fd-rebind:
    - shard-adlp:         [PASS][212] -> [DMESG-FAIL][213] ([Intel XE#3876]) +2 other tests dmesg-fail
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_exec_threads@threads-hang-fd-rebind.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_exec_threads@threads-hang-fd-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-lnl:          NOTRUN -> [ABORT][214] ([Intel XE#4917] / [Intel XE#5466])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         NOTRUN -> [ABORT][215] ([Intel XE#4917] / [Intel XE#5530])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-lnl:          NOTRUN -> [ABORT][216] ([Intel XE#4757])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_bo:
    - shard-dg2-set2:     NOTRUN -> [SKIP][217] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
    - shard-adlp:         NOTRUN -> [SKIP][218] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][219] ([Intel XE#2229]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-dg2-set2:     NOTRUN -> [SKIP][220] ([Intel XE#2229])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
    - shard-adlp:         NOTRUN -> [SKIP][221] ([Intel XE#2229])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-adlp:         NOTRUN -> [SKIP][222] ([Intel XE#2229] / [Intel XE#5488])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-adlp:         NOTRUN -> [SKIP][223] ([Intel XE#5100]) +1 other test skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_mmap@pci-membarrier-bad-object.html
    - shard-lnl:          NOTRUN -> [SKIP][224] ([Intel XE#5100])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     [PASS][225] -> [FAIL][226] ([Intel XE#4208]) +1 other test fail
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@reload.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@reload.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][227] ([Intel XE#379] / [Intel XE#5613])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_noexec_ping_pong.html
    - shard-lnl:          NOTRUN -> [SKIP][228] ([Intel XE#379])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_noexec_ping_pong.html

  * igt@xe_oa@buffer-size:
    - shard-adlp:         NOTRUN -> [SKIP][229] ([Intel XE#5103])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_oa@buffer-size.html

  * igt@xe_oa@non-zero-reason:
    - shard-dg2-set2:     NOTRUN -> [SKIP][230] ([Intel XE#3573]) +2 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_oa@non-zero-reason.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-adlp:         NOTRUN -> [SKIP][231] ([Intel XE#3573]) +5 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_pat@pat-index-xe2:
    - shard-adlp:         NOTRUN -> [SKIP][232] ([Intel XE#977])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-adlp:         NOTRUN -> [SKIP][233] ([Intel XE#979])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_pat@pat-index-xelpg.html
    - shard-lnl:          NOTRUN -> [SKIP][234] ([Intel XE#979])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-i2c:
    - shard-adlp:         NOTRUN -> [SKIP][235] ([Intel XE#5694])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][236] ([Intel XE#5742])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][237] ([Intel XE#5742])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@xe_pm@d3hot-i2c.html
    - shard-adlp:         NOTRUN -> [SKIP][238] ([Intel XE#5742])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#1948])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-exec-after:
    - shard-lnl:          NOTRUN -> [SKIP][240] ([Intel XE#584])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_pm@s3-exec-after.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-adlp:         [PASS][241] -> [TIMEOUT][242] ([Intel XE#3876])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_pm@s3-multiple-execs.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][243] ([Intel XE#2284] / [Intel XE#366])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-exec.html
    - shard-adlp:         NOTRUN -> [SKIP][244] ([Intel XE#2284] / [Intel XE#366])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     NOTRUN -> [SKIP][245] ([Intel XE#579])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-dg2-set2:     NOTRUN -> [SKIP][246] ([Intel XE#4733]) +3 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-adlp:         NOTRUN -> [SKIP][247] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          NOTRUN -> [SKIP][248] ([Intel XE#944]) +3 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-adlp:         NOTRUN -> [SKIP][249] ([Intel XE#944]) +4 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
    - shard-bmg:          NOTRUN -> [SKIP][250] ([Intel XE#944])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-lnl:          NOTRUN -> [SKIP][251] ([Intel XE#4130]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

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

  * igt@xe_vm@munmap-style-unbind-many-either-side-partial:
    - shard-dg2-set2:     [PASS][253] -> [SKIP][254] ([Intel XE#4208]) +193 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html

  
#### Possible fixes ####

  * igt@core_getversion@all-cards:
    - shard-dg2-set2:     [FAIL][255] ([Intel XE#4208]) -> [PASS][256] +2 other tests pass
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@core_getversion@all-cards.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@core_getversion@all-cards.html

  * igt@fbdev@nullptr:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#2134]) -> [PASS][258]
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@fbdev@nullptr.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@fbdev@nullptr.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#4208] / [i915#2575]) -> [PASS][260] +106 other tests pass
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][261] ([Intel XE#4543]) -> [PASS][262] +5 other tests pass
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][263] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][265] ([Intel XE#2291]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][267] ([Intel XE#4302]) -> [PASS][268]
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-bmg:          [SKIP][269] ([Intel XE#2316]) -> [PASS][270] +4 other tests pass
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][271] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][272] +3 other tests pass
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         [DMESG-WARN][273] ([Intel XE#4543]) -> [PASS][274] +7 other tests pass
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][275] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][276] +3 other tests pass
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [DMESG-FAIL][277] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][278] +1 other test pass
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][280] +11 other tests pass
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][281] ([Intel XE#3012]) -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][283] ([Intel XE#4596]) -> [PASS][284]
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][285] ([Intel XE#718]) -> [PASS][286]
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [FAIL][287] ([Intel XE#718]) -> [PASS][288]
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@kms_pm_dc@dc6-dpms.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][289] ([Intel XE#1435]) -> [PASS][290]
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][291] ([Intel XE#4459]) -> [PASS][292] +1 other test pass
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][293] ([Intel XE#2142]) -> [PASS][294] +1 other test pass
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_balancer@once-parallel-rebind:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#4208]) -> [PASS][296] +260 other tests pass
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@xe_exec_balancer@once-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#1392]) -> [PASS][298]
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([SKIP][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [ABORT][309], [ABORT][310], [ABORT][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323]) ([Intel XE#378]) -> ([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], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-4/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-7/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-8/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-5/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-2/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-1/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-lnl-3/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [SKIP][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374]) ([Intel XE#2457]) -> ([PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [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])
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-8/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-3/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-7/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-2/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([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], [SKIP][418], [PASS][419], [PASS][420], [PASS][421]) ([Intel XE#378]) -> ([PASS][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], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446])
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_module_load@load.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_module_load@load.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_module_load@load.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_module_load@load.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_module_load@load.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_module_load@load.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_module_load@load.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_module_load@load.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_module_load@load.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_module_load@load.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@xe_module_load@load.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_module_load@load.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@xe_module_load@load.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_module_load@load.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_module_load@load.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@xe_module_load@load.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][447] ([Intel XE#4208] / [i915#2575]) -> [SKIP][448] ([Intel XE#623])
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][449] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][450] ([Intel XE#316])
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][451] ([Intel XE#316]) -> [SKIP][452] ([Intel XE#4208])
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][453] ([Intel XE#4208]) -> [SKIP][454] ([Intel XE#316]) +2 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][455] ([Intel XE#316]) -> [SKIP][456] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][457] ([Intel XE#1124]) -> [SKIP][458] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][459] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][460] ([Intel XE#1124]) +9 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][461] ([Intel XE#4208]) -> [SKIP][462] ([Intel XE#1124]) +8 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][463] ([Intel XE#1124]) -> [SKIP][464] ([Intel XE#4208]) +9 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][465] ([Intel XE#2191]) -> [SKIP][466] ([Intel XE#4208] / [i915#2575])
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][467] ([Intel XE#4208] / [i915#2575]) -> [SKIP][468] ([Intel XE#2191]) +1 other test skip
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][469] ([Intel XE#4208] / [i915#2575]) -> [SKIP][470] ([Intel XE#367]) +3 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][471] ([Intel XE#367]) -> [SKIP][472] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#2907]) -> [SKIP][474] ([Intel XE#4208]) +3 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][475] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][476] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][477] ([Intel XE#4208]) -> [SKIP][478] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
    - shard-dg2-set2:     [SKIP][479] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][480] ([Intel XE#2351] / [Intel XE#4208])
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [SKIP][481] ([Intel XE#2351] / [Intel XE#4208]) -> [INCOMPLETE][482] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#4208]) -> [SKIP][484] ([Intel XE#2907]) +1 other test skip
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][485] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][486] ([Intel XE#4208]) +9 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][487] ([Intel XE#4418]) -> [SKIP][488] ([Intel XE#2351] / [Intel XE#4208])
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     [SKIP][489] ([Intel XE#306]) -> [SKIP][490] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_chamelium_color@ctm-0-75.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][491] ([Intel XE#4208] / [i915#2575]) -> [SKIP][492] ([Intel XE#306]) +2 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_color@gamma.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][493] ([Intel XE#4208] / [i915#2575]) -> [SKIP][494] ([Intel XE#373]) +11 other tests skip
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     [SKIP][495] ([Intel XE#373]) -> [SKIP][496] ([Intel XE#4208] / [i915#2575]) +6 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     [FAIL][497] ([Intel XE#1178]) -> [SKIP][498] ([Intel XE#4208] / [i915#2575])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_content_protection@atomic.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][499] ([Intel XE#1178]) -> [SKIP][500] ([Intel XE#2341])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@kms_content_protection@legacy.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [SKIP][501] ([Intel XE#2341]) -> [FAIL][502] ([Intel XE#1178])
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-dg2-set2:     [SKIP][503] ([Intel XE#4208] / [i915#2575]) -> [FAIL][504] ([Intel XE#1178])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_content_protection@srm.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][505] ([Intel XE#308]) -> [SKIP][506] ([Intel XE#4208] / [i915#2575])
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-dg2-set2:     [SKIP][507] ([Intel XE#4208] / [i915#2575]) -> [SKIP][508] ([Intel XE#308]) +1 other test skip
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][509] ([Intel XE#4208] / [i915#2575]) -> [SKIP][510] ([Intel XE#323])
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-dg2-set2:     [SKIP][511] ([Intel XE#4356]) -> [SKIP][512] ([Intel XE#4208])
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][513] ([Intel XE#455]) -> [SKIP][514] ([Intel XE#2351] / [Intel XE#4208])
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     [SKIP][515] ([Intel XE#4208]) -> [SKIP][516] ([Intel XE#455]) +5 other tests skip
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     [SKIP][517] ([Intel XE#4422]) -> [SKIP][518] ([Intel XE#4208]) +1 other test skip
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-dg2-set2:     [SKIP][519] ([Intel XE#4208]) -> [SKIP][520] ([Intel XE#4422])
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][521] ([Intel XE#776]) -> [SKIP][522] ([Intel XE#4208])
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][523] ([Intel XE#4208] / [i915#2575]) -> [SKIP][524] ([Intel XE#701])
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][525] ([Intel XE#1137]) -> [SKIP][526] ([Intel XE#4208] / [i915#2575])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][527] ([Intel XE#1135]) -> [SKIP][528] ([Intel XE#4208] / [i915#2575])
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_feature_discovery@psr2.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-dg2-set2:     [SKIP][529] ([Intel XE#4208] / [i915#2575]) -> [INCOMPLETE][530] ([Intel XE#2049] / [Intel XE#2597])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg2-set2:     [SKIP][531] ([Intel XE#455]) -> [SKIP][532] ([Intel XE#4208]) +1 other test skip
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][533] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][534] ([Intel XE#455]) +2 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][535] ([Intel XE#4208]) -> [SKIP][536] ([Intel XE#651]) +25 other tests skip
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#651]) -> [SKIP][538] ([Intel XE#4208]) +23 other tests skip
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][539] ([Intel XE#2312]) -> [SKIP][540] ([Intel XE#2311]) +9 other tests skip
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][541] ([Intel XE#2311]) -> [SKIP][542] ([Intel XE#2312]) +10 other tests skip
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-suspend:
    - shard-dg2-set2:     [SKIP][543] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][544] ([Intel XE#651]) +14 other tests skip
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][545] ([Intel XE#5390]) -> [SKIP][546] ([Intel XE#2312]) +4 other tests skip
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][547] ([Intel XE#2312]) -> [SKIP][548] ([Intel XE#5390]) +3 other tests skip
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][549] ([Intel XE#651]) -> [SKIP][550] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][551] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][552] ([Intel XE#658]) +1 other test skip
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][553] ([Intel XE#4208]) -> [SKIP][554] ([Intel XE#653]) +31 other tests skip
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][555] ([Intel XE#2312]) -> [SKIP][556] ([Intel XE#2313]) +15 other tests skip
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][557] ([Intel XE#653]) -> [SKIP][558] ([Intel XE#4208]) +28 other tests skip
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][559] ([Intel XE#2313]) -> [SKIP][560] ([Intel XE#2312]) +11 other tests skip
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][561] ([Intel XE#653]) -> [SKIP][562] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][563] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][564] ([Intel XE#653]) +6 other tests skip
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][565] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][566] ([Intel XE#3544])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [SKIP][567] ([Intel XE#4208] / [i915#2575]) -> [SKIP][568] ([Intel XE#455]) +9 other tests skip
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][569] ([Intel XE#2925]) -> [SKIP][570] ([Intel XE#4208])
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][571] ([Intel XE#4208]) -> [SKIP][572] ([Intel XE#2927])
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane_cursor@primary:
    - shard-dg2-set2:     [SKIP][573] ([Intel XE#4208] / [i915#2575]) -> [FAIL][574] ([Intel XE#616])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_plane_cursor@primary.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_plane_cursor@primary.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][575] ([Intel XE#5021]) -> [SKIP][576] ([Intel XE#4596])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
    - shard-dg2-set2:     [SKIP][577] ([Intel XE#4208] / [i915#2575]) -> [SKIP][578] ([Intel XE#5021])
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-y.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][579] ([Intel XE#4208]) -> [SKIP][580] ([Intel XE#2938])
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     [SKIP][581] ([Intel XE#870]) -> [SKIP][582] ([Intel XE#4208])
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_pm_backlight@fade.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][583] ([Intel XE#4208]) -> [SKIP][584] ([Intel XE#870])
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-dg2-set2:     [SKIP][585] ([Intel XE#1122]) -> [SKIP][586] ([Intel XE#2351] / [Intel XE#4208])
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][587] ([Intel XE#1129]) -> [SKIP][588] ([Intel XE#4208])
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][589] ([Intel XE#4208]) -> [SKIP][590] ([Intel XE#908])
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][591] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][592] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     [SKIP][593] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][594] ([Intel XE#1406] / [Intel XE#4208]) +8 other tests skip
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     [SKIP][595] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][596] ([Intel XE#1122] / [Intel XE#1406])
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg2-set2:     [SKIP][597] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][598] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_psr@fbc-pr-cursor-plane-move.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg2-set2:     [SKIP][599] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][600] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-dg2-set2:     [SKIP][601] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][602] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@fbc-psr2-no-drrs:
    - shard-dg2-set2:     [SKIP][603] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][604] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +8 other tests skip
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr@fbc-psr2-no-drrs.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_psr@fbc-psr2-no-drrs.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][605] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][606] ([Intel XE#1406] / [Intel XE#2939])
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][607] ([Intel XE#1127]) -> [SKIP][608] ([Intel XE#4208] / [i915#2575])
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][609] ([Intel XE#3414]) -> [SKIP][610] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][611] ([Intel XE#4208] / [i915#2575]) -> [SKIP][612] ([Intel XE#1127])
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][613] ([Intel XE#2426]) -> [FAIL][614] ([Intel XE#1729])
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [FAIL][615] ([Intel XE#1729]) -> [SKIP][616] ([Intel XE#4208] / [i915#2575])
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     [SKIP][617] ([Intel XE#455]) -> [SKIP][618] ([Intel XE#4208] / [i915#2575]) +7 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_vrr@flip-dpms.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][619] ([Intel XE#4208] / [i915#2575]) -> [SKIP][620] ([Intel XE#2168])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_vrr@lobf.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@kms_vrr@lobf.html

  * igt@xe_compute_preempt@compute-preempt-many-all-ram:
    - shard-dg2-set2:     [SKIP][621] ([Intel XE#4208]) -> [FAIL][622] ([Intel XE#5890])
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many-all-ram.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many-all-ram.html

  * igt@xe_compute_preempt@compute-threadgroup-preempt:
    - shard-dg2-set2:     [SKIP][623] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][624] ([Intel XE#4208])
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html

  * igt@xe_configfs@survivability-mode:
    - shard-dg2-set2:     [SKIP][625] -> [SKIP][626] ([Intel XE#4208])
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_configfs@survivability-mode.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     [SKIP][627] ([Intel XE#4208]) -> [SKIP][628] ([Intel XE#1123])
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][629] ([Intel XE#1126]) -> [SKIP][630] ([Intel XE#4208])
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][631] ([Intel XE#4208]) -> [SKIP][632] ([Intel XE#1126])
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_eu_stall@invalid-sampling-rate:
    - shard-dg2-set2:     [SKIP][633] ([Intel XE#4208]) -> [SKIP][634] ([Intel XE#5626])
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_eu_stall@invalid-sampling-rate.html
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_eu_stall@invalid-sampling-rate.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     [SKIP][635] ([Intel XE#4837]) -> [SKIP][636] ([Intel XE#4208]) +12 other tests skip
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_eudebug@vma-ufence-faultable:
    - shard-dg2-set2:     [SKIP][637] ([Intel XE#4208]) -> [SKIP][638] ([Intel XE#4837]) +13 other tests skip
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eudebug@vma-ufence-faultable.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-466/igt@xe_eudebug@vma-ufence-faultable.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - shard-dg2-set2:     [SKIP][639] ([Intel XE#1392]) -> [SKIP][640] ([Intel XE#4208]) +2 other tests skip
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][641] ([Intel XE#4208]) -> [SKIP][642] ([Intel XE#1392]) +1 other test skip
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     [SKIP][643] ([Intel XE#4208]) -> [SKIP][644] ([Intel XE#288]) +37 other tests skip
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     [SKIP][645] ([Intel XE#288]) -> [SKIP][646] ([Intel XE#4208]) +31 other tests skip
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-FAIL][647] ([Intel XE#3868]) -> [DMESG-WARN][648] ([Intel XE#3868])
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_exec_reset@cm-cat-error.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [DMESG-WARN][649] ([Intel XE#3876]) -> [SKIP][650] ([Intel XE#4208])
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
    - shard-dg2-set2:     [SKIP][651] ([Intel XE#4208]) -> [SKIP][652] ([Intel XE#4915]) +335 other tests skip
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-dg2-set2:     [SKIP][653] ([Intel XE#4915]) -> [SKIP][654] ([Intel XE#4208]) +259 other tests skip
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][655] ([Intel XE#4208]) -> [SKIP][656] ([Intel XE#255])
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_huc_copy@huc_copy.html

  * igt@xe_module_load@load:
    - shard-adlp:         ([PASS][657], [PASS][658], [SKIP][659], [PASS][660], [PASS][661], [PASS][662], [PASS][663], [PASS][664], [ABORT][665], [ABORT][666], [ABORT][667], [ABORT][668], [ABORT][669], [PASS][670], [PASS][671], [PASS][672], [PASS][673], [PASS][674], [PASS][675], [PASS][676], [PASS][677], [PASS][678], [PASS][679], [PASS][680], [PASS][681], [PASS][682]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][683], [PASS][684], [PASS][685], [PASS][686], [PASS][687], [PASS][688], [PASS][689], [PASS][690], [PASS][691], [PASS][692], [PASS][693], [PASS][694], [PASS][695], [PASS][696], [PASS][697], [SKIP][698], [PASS][699], [PASS][700], [PASS][701], [PASS][702], [PASS][703], [PASS][704], [PASS][705], [PASS][706], [PASS][707], [PASS][708]) ([Intel XE#378] / [Intel XE#5612])
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_module_load@load.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_module_load@load.html
   [685]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_module_load@load.html
   [686]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-9/igt@xe_module_load@load.html
   [687]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@xe_module_load@load.html
   [688]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@xe_module_load@load.html
   [689]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-8/igt@xe_module_load@load.html
   [690]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_module_load@load.html
   [691]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_module_load@load.html
   [692]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@xe_module_load@load.html
   [693]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-1/igt@xe_module_load@load.html
   [694]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@xe_module_load@load.html
   [695]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@xe_module_load@load.html
   [696]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-6/igt@xe_module_load@load.html
   [697]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_module_load@load.html
   [698]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_module_load@load.html
   [699]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_module_load@load.html
   [700]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-4/igt@xe_module_load@load.html
   [701]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_module_load@load.html
   [702]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_module_load@load.html
   [703]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_module_load@load.html
   [704]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-2/igt@xe_module_load@load.html
   [705]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_module_load@load.html
   [706]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_module_load@load.html
   [707]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_module_load@load.html
   [708]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-adlp-3/igt@xe_module_load@load.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][709] ([Intel XE#4208]) -> [SKIP][710] ([Intel XE#3573]) +8 other tests skip
   [709]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
   [710]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-dg2-set2:     [SKIP][711] ([Intel XE#4208]) -> [SKIP][712] ([Intel XE#5103])
   [711]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html
   [712]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][713] ([Intel XE#3573]) -> [SKIP][714] ([Intel XE#4208]) +8 other tests skip
   [713]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_oa@polling-small-buf.html
   [714]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_oa@polling-small-buf.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][715] ([Intel XE#4208]) -> [SKIP][716] ([Intel XE#977])
   [715]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
   [716]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     [SKIP][717] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][718] ([Intel XE#4208])
   [717]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_pm@d3cold-basic.html
   [718]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     [SKIP][719] ([Intel XE#4208]) -> [SKIP][720] ([Intel XE#2284] / [Intel XE#366])
   [719]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
   [720]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     [SKIP][721] ([Intel XE#4650]) -> [SKIP][722] ([Intel XE#4208])
   [721]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_pmu@fn-engine-activity-load.html
   [722]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-dg2-set2:     [SKIP][723] ([Intel XE#4733]) -> [SKIP][724] ([Intel XE#4208]) +1 other test skip
   [723]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_pxp@display-pxp-fb.html
   [724]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-434/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-dg2-set2:     [SKIP][725] ([Intel XE#4208]) -> [SKIP][726] ([Intel XE#4733]) +2 other tests skip
   [725]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
   [726]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-463/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][727] ([Intel XE#4208]) -> [SKIP][728] ([Intel XE#944]) +2 other tests skip
   [727]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [728]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-dg2-set2:     [SKIP][729] ([Intel XE#944]) -> [SKIP][730] ([Intel XE#4208]) +3 other tests skip
   [729]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html
   [730]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-dg2-set2:     [SKIP][731] ([Intel XE#4814]) -> [SKIP][732] ([Intel XE#4208])
   [731]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_render_copy@render-stress-1-copies.html
   [732]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_render_copy@render-stress-1-copies.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-dg2-set2:     [SKIP][733] ([Intel XE#4208]) -> [SKIP][734] ([Intel XE#4130])
   [733]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
   [734]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@fair-allocation.html

  * igt@xe_vm@bind-array-enobufs:
    - shard-dg2-set2:     [DMESG-FAIL][735] ([Intel XE#3876]) -> [SKIP][736] ([Intel XE#4208])
   [735]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
   [736]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v1/shard-dg2-435/igt@xe_vm@bind-array-enobufs.html

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

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [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#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [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#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [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#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
  [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#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5215]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5215
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
  [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#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
  [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#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5613
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_8511 -> IGT_8512
  * Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153589v1

  IGT_8511: 8511
  IGT_8512: 8512
  xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
  xe-pw-153589v1: 153589v1

== Logs ==

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

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

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

* ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev2)
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (5 preceding siblings ...)
  2025-08-28  0:34 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-08-28 20:03 ` Patchwork
  2025-08-28 21:09 ` ✓ Xe.CI.BAT: " Patchwork
  2025-08-29  5:06 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-08-28 20:03 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev2)
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:01:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:01:59] 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
[20:02:27] Starting KUnit Kernel (1/1)...
[20:02:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:02:28] ================== guc_buf (11 subtests) ===================
[20:02:28] [PASSED] test_smallest
[20:02:28] [PASSED] test_largest
[20:02:28] [PASSED] test_granular
[20:02:28] [PASSED] test_unique
[20:02:28] [PASSED] test_overlap
[20:02:28] [PASSED] test_reusable
[20:02:28] [PASSED] test_too_big
[20:02:28] [PASSED] test_flush
[20:02:28] [PASSED] test_lookup
[20:02:28] [PASSED] test_data
[20:02:28] [PASSED] test_class
[20:02:28] ===================== [PASSED] guc_buf =====================
[20:02:28] =================== guc_dbm (7 subtests) ===================
[20:02:28] [PASSED] test_empty
[20:02:28] [PASSED] test_default
[20:02:28] ======================== test_size  ========================
[20:02:28] [PASSED] 4
[20:02:28] [PASSED] 8
[20:02:28] [PASSED] 32
[20:02:28] [PASSED] 256
[20:02:28] ==================== [PASSED] test_size ====================
[20:02:28] ======================= test_reuse  ========================
[20:02:28] [PASSED] 4
[20:02:28] [PASSED] 8
[20:02:28] [PASSED] 32
[20:02:28] [PASSED] 256
[20:02:28] =================== [PASSED] test_reuse ====================
[20:02:28] =================== test_range_overlap  ====================
[20:02:28] [PASSED] 4
[20:02:28] [PASSED] 8
[20:02:28] [PASSED] 32
[20:02:28] [PASSED] 256
[20:02:28] =============== [PASSED] test_range_overlap ================
[20:02:28] =================== test_range_compact  ====================
[20:02:28] [PASSED] 4
[20:02:28] [PASSED] 8
[20:02:28] [PASSED] 32
[20:02:28] [PASSED] 256
[20:02:28] =============== [PASSED] test_range_compact ================
[20:02:28] ==================== test_range_spare  =====================
[20:02:28] [PASSED] 4
[20:02:28] [PASSED] 8
[20:02:28] [PASSED] 32
[20:02:28] [PASSED] 256
[20:02:28] ================ [PASSED] test_range_spare =================
[20:02:28] ===================== [PASSED] guc_dbm =====================
[20:02:28] =================== guc_idm (6 subtests) ===================
[20:02:28] [PASSED] bad_init
[20:02:28] [PASSED] no_init
[20:02:28] [PASSED] init_fini
[20:02:28] [PASSED] check_used
[20:02:28] [PASSED] check_quota
[20:02:28] [PASSED] check_all
[20:02:28] ===================== [PASSED] guc_idm =====================
[20:02:28] ================== no_relay (3 subtests) ===================
[20:02:28] [PASSED] xe_drops_guc2pf_if_not_ready
[20:02:28] [PASSED] xe_drops_guc2vf_if_not_ready
[20:02:28] [PASSED] xe_rejects_send_if_not_ready
[20:02:28] ==================== [PASSED] no_relay =====================
[20:02:28] ================== pf_relay (14 subtests) ==================
[20:02:28] [PASSED] pf_rejects_guc2pf_too_short
[20:02:28] [PASSED] pf_rejects_guc2pf_too_long
[20:02:28] [PASSED] pf_rejects_guc2pf_no_payload
[20:02:28] [PASSED] pf_fails_no_payload
[20:02:28] [PASSED] pf_fails_bad_origin
[20:02:28] [PASSED] pf_fails_bad_type
[20:02:28] [PASSED] pf_txn_reports_error
[20:02:28] [PASSED] pf_txn_sends_pf2guc
[20:02:28] [PASSED] pf_sends_pf2guc
[20:02:28] [SKIPPED] pf_loopback_nop
[20:02:28] [SKIPPED] pf_loopback_echo
[20:02:28] [SKIPPED] pf_loopback_fail
[20:02:28] [SKIPPED] pf_loopback_busy
[20:02:28] [SKIPPED] pf_loopback_retry
[20:02:28] ==================== [PASSED] pf_relay =====================
[20:02:28] ================== vf_relay (3 subtests) ===================
[20:02:28] [PASSED] vf_rejects_guc2vf_too_short
[20:02:28] [PASSED] vf_rejects_guc2vf_too_long
[20:02:28] [PASSED] vf_rejects_guc2vf_no_payload
[20:02:28] ==================== [PASSED] vf_relay =====================
[20:02:28] ===================== lmtt (1 subtest) =====================
[20:02:28] ======================== test_ops  =========================
[20:02:28] [PASSED] 2-level
[20:02:28] [PASSED] multi-level
[20:02:28] ==================== [PASSED] test_ops =====================
[20:02:28] ====================== [PASSED] lmtt =======================
[20:02:28] ================= pf_service (11 subtests) =================
[20:02:28] [PASSED] pf_negotiate_any
[20:02:28] [PASSED] pf_negotiate_base_match
[20:02:28] [PASSED] pf_negotiate_base_newer
[20:02:28] [PASSED] pf_negotiate_base_next
[20:02:28] [SKIPPED] pf_negotiate_base_older
[20:02:28] [PASSED] pf_negotiate_base_prev
[20:02:28] [PASSED] pf_negotiate_latest_match
[20:02:28] [PASSED] pf_negotiate_latest_newer
[20:02:28] [PASSED] pf_negotiate_latest_next
[20:02:28] [SKIPPED] pf_negotiate_latest_older
[20:02:28] [SKIPPED] pf_negotiate_latest_prev
[20:02:28] =================== [PASSED] pf_service ====================
[20:02:28] =================== xe_mocs (2 subtests) ===================
[20:02:28] ================ xe_live_mocs_kernel_kunit  ================
[20:02:28] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:02:28] ================ xe_live_mocs_reset_kunit  =================
[20:02:28] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:02:28] ==================== [SKIPPED] xe_mocs =====================
[20:02:28] ================= xe_migrate (2 subtests) ==================
[20:02:28] ================= xe_migrate_sanity_kunit  =================
[20:02:28] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:02:28] ================== xe_validate_ccs_kunit  ==================
[20:02:28] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:02:28] =================== [SKIPPED] xe_migrate ===================
[20:02:28] ================== xe_dma_buf (1 subtest) ==================
[20:02:28] ==================== xe_dma_buf_kunit  =====================
[20:02:28] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:02:28] =================== [SKIPPED] xe_dma_buf ===================
[20:02:28] ================= xe_bo_shrink (1 subtest) =================
[20:02:28] =================== xe_bo_shrink_kunit  ====================
[20:02:28] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:02:28] ================== [SKIPPED] xe_bo_shrink ==================
[20:02:28] ==================== xe_bo (2 subtests) ====================
[20:02:28] ================== xe_ccs_migrate_kunit  ===================
[20:02:28] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:02:28] ==================== xe_bo_evict_kunit  ====================
[20:02:28] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:02:28] ===================== [SKIPPED] xe_bo ======================
[20:02:28] ==================== args (11 subtests) ====================
[20:02:28] [PASSED] count_args_test
[20:02:28] [PASSED] call_args_example
[20:02:28] [PASSED] call_args_test
[20:02:28] [PASSED] drop_first_arg_example
[20:02:28] [PASSED] drop_first_arg_test
[20:02:28] [PASSED] first_arg_example
[20:02:28] [PASSED] first_arg_test
[20:02:28] [PASSED] last_arg_example
[20:02:28] [PASSED] last_arg_test
[20:02:28] [PASSED] pick_arg_example
[20:02:28] [PASSED] sep_comma_example
[20:02:28] ====================== [PASSED] args =======================
[20:02:28] =================== xe_pci (3 subtests) ====================
[20:02:28] ==================== check_graphics_ip  ====================
[20:02:28] [PASSED] 12.70 Xe_LPG
[20:02:28] [PASSED] 12.71 Xe_LPG
[20:02:28] [PASSED] 12.74 Xe_LPG+
[20:02:28] [PASSED] 20.01 Xe2_HPG
[20:02:28] [PASSED] 20.02 Xe2_HPG
[20:02:28] [PASSED] 20.04 Xe2_LPG
[20:02:28] [PASSED] 30.00 Xe3_LPG
[20:02:28] [PASSED] 30.01 Xe3_LPG
[20:02:28] [PASSED] 30.03 Xe3_LPG
[20:02:28] ================ [PASSED] check_graphics_ip ================
[20:02:28] ===================== check_media_ip  ======================
[20:02:28] [PASSED] 13.00 Xe_LPM+
[20:02:28] [PASSED] 13.01 Xe2_HPM
[20:02:28] [PASSED] 20.00 Xe2_LPM
[20:02:28] [PASSED] 30.00 Xe3_LPM
[20:02:28] [PASSED] 30.02 Xe3_LPM
[20:02:28] ================= [PASSED] check_media_ip ==================
[20:02:28] ================= check_platform_gt_count  =================
[20:02:28] [PASSED] 0x9A60 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A68 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A70 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A40 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A49 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A59 (TIGERLAKE)
[20:02:28] [PASSED] 0x9A78 (TIGERLAKE)
[20:02:28] [PASSED] 0x9AC0 (TIGERLAKE)
[20:02:28] [PASSED] 0x9AC9 (TIGERLAKE)
[20:02:28] [PASSED] 0x9AD9 (TIGERLAKE)
[20:02:28] [PASSED] 0x9AF8 (TIGERLAKE)
[20:02:28] [PASSED] 0x4C80 (ROCKETLAKE)
[20:02:28] [PASSED] 0x4C8A (ROCKETLAKE)
[20:02:28] [PASSED] 0x4C8B (ROCKETLAKE)
[20:02:28] [PASSED] 0x4C8C (ROCKETLAKE)
[20:02:28] [PASSED] 0x4C90 (ROCKETLAKE)
[20:02:28] [PASSED] 0x4C9A (ROCKETLAKE)
[20:02:28] [PASSED] 0x4680 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4682 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4688 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x468A (ALDERLAKE_S)
[20:02:28] [PASSED] 0x468B (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4690 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4692 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4693 (ALDERLAKE_S)
[20:02:28] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46AA (ALDERLAKE_P)
[20:02:28] [PASSED] 0x462A (ALDERLAKE_P)
[20:02:28] [PASSED] 0x4626 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x4628 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:02:28] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:02:28] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:02:28] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:02:28] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:02:28] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:02:28] [PASSED] 0xA721 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA720 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:02:28] [PASSED] 0xA780 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA781 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA782 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA783 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA788 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA789 (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA78A (ALDERLAKE_S)
[20:02:28] [PASSED] 0xA78B (ALDERLAKE_S)
[20:02:28] [PASSED] 0x4905 (DG1)
[20:02:28] [PASSED] 0x4906 (DG1)
[20:02:28] [PASSED] 0x4907 (DG1)
[20:02:28] [PASSED] 0x4908 (DG1)
[20:02:28] [PASSED] 0x4909 (DG1)
[20:02:28] [PASSED] 0x56C0 (DG2)
[20:02:28] [PASSED] 0x56C2 (DG2)
[20:02:28] [PASSED] 0x56C1 (DG2)
[20:02:28] [PASSED] 0x7D51 (METEORLAKE)
[20:02:28] [PASSED] 0x7DD1 (METEORLAKE)
[20:02:28] [PASSED] 0x7D41 (METEORLAKE)
[20:02:28] [PASSED] 0x7D67 (METEORLAKE)
[20:02:28] [PASSED] 0xB640 (METEORLAKE)
[20:02:28] [PASSED] 0x56A0 (DG2)
[20:02:28] [PASSED] 0x56A1 (DG2)
[20:02:28] [PASSED] 0x56A2 (DG2)
[20:02:28] [PASSED] 0x56BE (DG2)
[20:02:28] [PASSED] 0x56BF (DG2)
[20:02:28] [PASSED] 0x5690 (DG2)
[20:02:28] [PASSED] 0x5691 (DG2)
[20:02:28] [PASSED] 0x5692 (DG2)
[20:02:28] [PASSED] 0x56A5 (DG2)
[20:02:28] [PASSED] 0x56A6 (DG2)
[20:02:28] [PASSED] 0x56B0 (DG2)
[20:02:28] [PASSED] 0x56B1 (DG2)
[20:02:28] [PASSED] 0x56BA (DG2)
[20:02:28] [PASSED] 0x56BB (DG2)
[20:02:28] [PASSED] 0x56BC (DG2)
[20:02:28] [PASSED] 0x56BD (DG2)
[20:02:28] [PASSED] 0x5693 (DG2)
[20:02:28] [PASSED] 0x5694 (DG2)
[20:02:28] [PASSED] 0x5695 (DG2)
[20:02:28] [PASSED] 0x56A3 (DG2)
[20:02:28] [PASSED] 0x56A4 (DG2)
[20:02:28] [PASSED] 0x56B2 (DG2)
[20:02:28] [PASSED] 0x56B3 (DG2)
[20:02:28] [PASSED] 0x5696 (DG2)
[20:02:28] [PASSED] 0x5697 (DG2)
[20:02:28] [PASSED] 0xB69 (PVC)
[20:02:28] [PASSED] 0xB6E (PVC)
[20:02:28] [PASSED] 0xBD4 (PVC)
[20:02:28] [PASSED] 0xBD5 (PVC)
[20:02:28] [PASSED] 0xBD6 (PVC)
[20:02:28] [PASSED] 0xBD7 (PVC)
[20:02:28] [PASSED] 0xBD8 (PVC)
[20:02:28] [PASSED] 0xBD9 (PVC)
[20:02:28] [PASSED] 0xBDA (PVC)
[20:02:28] [PASSED] 0xBDB (PVC)
[20:02:28] [PASSED] 0xBE0 (PVC)
[20:02:28] [PASSED] 0xBE1 (PVC)
[20:02:28] [PASSED] 0xBE5 (PVC)
[20:02:28] [PASSED] 0x7D40 (METEORLAKE)
[20:02:28] [PASSED] 0x7D45 (METEORLAKE)
[20:02:28] [PASSED] 0x7D55 (METEORLAKE)
[20:02:28] [PASSED] 0x7D60 (METEORLAKE)
[20:02:28] [PASSED] 0x7DD5 (METEORLAKE)
[20:02:28] [PASSED] 0x6420 (LUNARLAKE)
[20:02:28] [PASSED] 0x64A0 (LUNARLAKE)
[20:02:28] [PASSED] 0x64B0 (LUNARLAKE)
[20:02:28] [PASSED] 0xE202 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE209 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE20B (BATTLEMAGE)
[20:02:28] [PASSED] 0xE20C (BATTLEMAGE)
[20:02:28] [PASSED] 0xE20D (BATTLEMAGE)
[20:02:28] [PASSED] 0xE210 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE211 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE212 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE216 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE220 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE221 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE222 (BATTLEMAGE)
[20:02:28] [PASSED] 0xE223 (BATTLEMAGE)
[20:02:28] [PASSED] 0xB080 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB081 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB082 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB083 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB084 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB085 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB086 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB087 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB08F (PANTHERLAKE)
[20:02:28] [PASSED] 0xB090 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:02:28] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:02:28] [PASSED] 0xFD80 (PANTHERLAKE)
[20:02:28] [PASSED] 0xFD81 (PANTHERLAKE)
[20:02:28] ============= [PASSED] check_platform_gt_count =============
[20:02:28] ===================== [PASSED] xe_pci ======================
[20:02:28] =================== xe_rtp (2 subtests) ====================
[20:02:28] =============== xe_rtp_process_to_sr_tests  ================
[20:02:28] [PASSED] coalesce-same-reg
[20:02:28] [PASSED] no-match-no-add
[20:02:28] [PASSED] match-or
[20:02:28] [PASSED] match-or-xfail
[20:02:28] [PASSED] no-match-no-add-multiple-rules
[20:02:28] [PASSED] two-regs-two-entries
[20:02:28] [PASSED] clr-one-set-other
[20:02:28] [PASSED] set-field
[20:02:28] [PASSED] conflict-duplicate
[20:02:28] [PASSED] conflict-not-disjoint
[20:02:28] [PASSED] conflict-reg-type
[20:02:28] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:02:28] ================== xe_rtp_process_tests  ===================
[20:02:28] [PASSED] active1
[20:02:28] [PASSED] active2
[20:02:28] [PASSED] active-inactive
[20:02:28] [PASSED] inactive-active
[20:02:28] [PASSED] inactive-1st_or_active-inactive
[20:02:28] [PASSED] inactive-2nd_or_active-inactive
[20:02:28] [PASSED] inactive-last_or_active-inactive
[20:02:28] [PASSED] inactive-no_or_active-inactive
[20:02:28] ============== [PASSED] xe_rtp_process_tests ===============
[20:02:28] ===================== [PASSED] xe_rtp ======================
[20:02:28] ==================== xe_wa (1 subtest) =====================
[20:02:28] ======================== xe_wa_gt  =========================
[20:02:28] [PASSED] TIGERLAKE (B0)
[20:02:28] [PASSED] DG1 (A0)
[20:02:28] [PASSED] DG1 (B0)
[20:02:28] [PASSED] ALDERLAKE_S (A0)
[20:02:28] [PASSED] ALDERLAKE_S (B0)
[20:02:28] [PASSED] ALDERLAKE_S (C0)
[20:02:28] [PASSED] ALDERLAKE_S (D0)
[20:02:28] [PASSED] ALDERLAKE_P (A0)
[20:02:28] [PASSED] ALDERLAKE_P (B0)
[20:02:28] [PASSED] ALDERLAKE_P (C0)
[20:02:28] [PASSED] ALDERLAKE_S_RPLS (D0)
[20:02:28] [PASSED] ALDERLAKE_P_RPLU (E0)
[20:02:28] [PASSED] DG2_G10 (C0)
[20:02:28] [PASSED] DG2_G11 (B1)
[20:02:28] [PASSED] DG2_G12 (A1)
[20:02:28] [PASSED] METEORLAKE (g:A0, m:A0)
[20:02:28] [PASSED] METEORLAKE (g:A0, m:A0)
[20:02:28] [PASSED] METEORLAKE (g:A0, m:A0)
[20:02:28] [PASSED] LUNARLAKE (g:A0, m:A0)
[20:02:28] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[20:02:28] [PASSED] BATTLEMAGE (g:A0, m:A1)
[20:02:28] [PASSED] PANTHERLAKE (g:A0, m:A0)
[20:02:28] ==================== [PASSED] xe_wa_gt =====================
[20:02:28] ====================== [PASSED] xe_wa ======================
[20:02:28] ============================================================
[20:02:28] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[20:02:28] Elapsed time: 33.265s total, 4.195s configuring, 28.704s building, 0.321s running

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

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

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



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

* ✓ Xe.CI.BAT: success for Core Xe changes preparing for VF migration (rev2)
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (6 preceding siblings ...)
  2025-08-28 20:03 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev2) Patchwork
@ 2025-08-28 21:09 ` Patchwork
  2025-08-29  5:06 ` ✗ Xe.CI.Full: failure " Patchwork
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-08-28 21:09 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev2)
URL   : https://patchwork.freedesktop.org/series/153589/
State : success

== Summary ==

CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_BAT -> xe-pw-153589v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-153589v2_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

  * igt@xe_vm@bind-execqueues-independent:
    - {bat-ptl-1}:        [FAIL][3] ([Intel XE#5783]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
    - {bat-ptl-vm}:       [FAIL][5] ([Intel XE#5783]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html

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

  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783


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

  * IGT: IGT_8512 -> IGT_8514
  * Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-153589v2

  IGT_8512: 8512
  IGT_8514: 8514
  xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
  xe-pw-153589v2: 153589v2

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for Core Xe changes preparing for VF migration (rev2)
  2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
                   ` (7 preceding siblings ...)
  2025-08-28 21:09 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-29  5:06 ` Patchwork
  2025-09-03 23:26   ` Matthew Brost
  8 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2025-08-29  5:06 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Core Xe changes preparing for VF migration (rev2)
URL   : https://patchwork.freedesktop.org/series/153589/
State : failure

== Summary ==

CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_FULL -> xe-pw-153589v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][1] +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_vblank@ts-continuation-dpms-rpm:
    - shard-lnl:          [PASS][2] -> [SKIP][3] +2 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-rpm.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html

  * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1:
    - shard-adlp:         [PASS][4] -> [SKIP][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
    - shard-bmg:          [PASS][6] -> [SKIP][7] +4 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html

  * igt@xe_exec_compute_mode@non-blocking:
    - shard-bmg:          [PASS][8] -> [TIMEOUT][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_exec_compute_mode@non-blocking.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_exec_compute_mode@non-blocking.html
    - shard-lnl:          [PASS][10] -> [TIMEOUT][11]
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_exec_compute_mode@non-blocking.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_exec_compute_mode@non-blocking.html
    - shard-adlp:         [PASS][12] -> [FAIL][13]
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-8/igt@xe_exec_compute_mode@non-blocking.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@xe_exec_compute_mode@non-blocking.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-bmg:          [PASS][14] -> [FAIL][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_exec_reset@cm-gt-reset.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][16] ([Intel XE#911]) -> [FAIL][17] +3 other tests fail
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][18] ([Intel XE#2312]) -> [ABORT][19]
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@xe_oa@buffer-size:
    - shard-dg2-set2:     [SKIP][20] ([Intel XE#4208]) -> [SKIP][21]
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@buffer-size.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_oa@buffer-size.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-adlp:         [SKIP][22] ([Intel XE#5103]) -> [SKIP][23] +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@xe_oa@mmio-triggered-reports-read.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html

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

  Here are the changes found in xe-pw-153589v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_setmaster@master-drop-set-root:
    - shard-dg2-set2:     [PASS][24] -> [FAIL][25] ([Intel XE#4208])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html

  * igt@fbdev@eof:
    - shard-dg2-set2:     [PASS][26] -> [SKIP][27] ([Intel XE#2134])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@fbdev@eof.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@fbdev@eof.html

  * igt@kms_addfb_basic@unused-pitches:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][28] ([Intel XE#2953] / [Intel XE#4173])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_addfb_basic@unused-pitches.html

  * igt@kms_atomic_transition@plane-all-modeset-transition:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#3279])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#316]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#3658])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1124]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#316])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#619])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1467])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1124]) +9 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2328]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#607])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
    - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#2191])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#2191])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

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

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#787]) +14 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#787]) +195 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#2887]) +8 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html

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

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2887]) +15 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#3432])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3432])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#2907])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
    - shard-bmg:          NOTRUN -> [FAIL][54] ([Intel XE#5376]) +1 other test fail
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#2907])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [FAIL][57] ([Intel XE#5941])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2724]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.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-153589v2/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#306])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2325]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_chamelium_color@ctm-green-to-red.html
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#306])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#373]) +7 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#373]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2252]) +9 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#373]) +4 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][68] ([Intel XE#1178])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

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

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

  * igt@kms_content_protection@uevent@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][71] ([Intel XE#1188])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_content_protection@uevent@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#2320]) +2 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html

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

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1424])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#308])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#309]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][77] -> [SKIP][78] ([Intel XE#2291]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#309]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2291])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [PASS][81] -> [FAIL][82] ([Intel XE#1475])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#4302])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#1340])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#4354])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#4354])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#4354])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#310]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

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

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +3 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2316]) +3 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][93] ([Intel XE#4543]) +1 other test dmesg-warn
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_flip@busy-flip:
    - shard-dg2-set2:     [PASS][94] -> [SKIP][95] ([Intel XE#4208] / [i915#2575]) +76 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip@busy-flip.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip@busy-flip.html

  * igt@kms_flip@flip-vs-panning-interruptible:
    - shard-adlp:         [PASS][96] -> [DMESG-WARN][97] ([Intel XE#4543] / [Intel XE#5208]) +1 other test dmesg-warn
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible.html

  * igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1:
    - shard-adlp:         [PASS][98] -> [DMESG-WARN][99] ([Intel XE#4543]) +9 other tests dmesg-warn
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-dg2-set2:     [PASS][100] -> [SKIP][101] ([Intel XE#4208]) +151 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2293] / [Intel XE#2380])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1401]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2293])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#455]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#1397]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][109] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#455]) +14 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2311]) +27 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-adlp:         NOTRUN -> [SKIP][112] ([Intel XE#651]) +2 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][113] ([Intel XE#651]) +15 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#651]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#5390]) +13 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][116] ([Intel XE#4543]) +2 other tests dmesg-fail
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [PASS][117] -> [SKIP][118] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
    - shard-adlp:         [PASS][119] -> [DMESG-FAIL][120] ([Intel XE#4543]) +8 other tests dmesg-fail
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#656]) +17 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#2313]) +33 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][123] ([Intel XE#653]) +5 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][124] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#653]) +19 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2312]) +5 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-adlp:         NOTRUN -> [SKIP][127] ([Intel XE#656]) +9 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#1503])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [PASS][129] -> [SKIP][130] ([Intel XE#1503]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#2927])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#4329])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [PASS][133] -> [DMESG-WARN][134] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#599])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2393])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#4596])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#4596])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#5020])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-dg2-set2:     NOTRUN -> [SKIP][140] ([Intel XE#4208] / [i915#2575]) +19 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#2763]) +3 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#2763]) +4 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [PASS][143] -> [FAIL][144] ([Intel XE#718]) +1 other test fail
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html

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

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][147] ([Intel XE#1406] / [Intel XE#2893])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

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

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
    - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html

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

  * igt@kms_psr@fbc-psr2-primary-render@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][153] ([Intel XE#1406] / [Intel XE#4609])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-render@edp-1.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][154] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_psr@psr-dpms.html

  * igt@kms_psr@psr2-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][155] ([Intel XE#1406] / [Intel XE#4208])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@psr2-dpms.html

  * igt@kms_psr@psr2-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][156] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_psr@psr2-suspend.html
    - shard-bmg:          NOTRUN -> [SKIP][157] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_psr@psr2-suspend.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#3414] / [Intel XE#3904])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2413])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][160] ([Intel XE#1435])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][161] -> [SKIP][162] ([Intel XE#455]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][163] -> [FAIL][164] ([Intel XE#4459]) +1 other test fail
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-lnl:          [PASS][165] -> [FAIL][166] ([Intel XE#4227]) +1 other test fail
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@flipline.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#1499]) +2 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@xe_ccs@ctrl-surf-copy-new-ctx:
    - shard-dg2-set2:     NOTRUN -> [SKIP][168] ([Intel XE#4208]) +103 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
    - shard-adlp:         NOTRUN -> [SKIP][169] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@xe_ccs@ctrl-surf-copy-new-ctx.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          NOTRUN -> [FAIL][170] ([Intel XE#5794])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_eudebug@basic-vm-access-userptr-faultable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#4837]) +4 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#4837]) +4 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_eudebug@basic-vm-access-userptr-faultable.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#4837]) +15 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-adlp:         NOTRUN -> [SKIP][174] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#4518])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_eudebug_sriov@deny-eudebug.html
    - shard-lnl:          NOTRUN -> [SKIP][176] ([Intel XE#4518])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html
    - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#5793])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_evict@evict-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#688])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_evict@evict-small-multi-vm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#2322]) +10 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#1392]) +5 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
    - shard-dg2-set2:     [PASS][181] -> [SKIP][182] ([Intel XE#1392]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][183] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@many-userptr-invalidate-race:
    - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#288] / [Intel XE#5561]) +3 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#288]) +14 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html

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

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3876])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][189] ([Intel XE#4915]) +134 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge:
    - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#4943]) +9 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-adlp:         NOTRUN -> [SKIP][191] ([Intel XE#4915]) +66 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][192] ([Intel XE#4943]) +18 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217]) -> ([PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [SKIP][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243]) ([Intel XE#378])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265]) -> ([SKIP][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289]) ([Intel XE#2457])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-1/igt@xe_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_module_load@load.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_module_load@load.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([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], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [SKIP][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340]) ([Intel XE#378])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html

  * igt@xe_module_load@reload:
    - shard-dg2-set2:     NOTRUN -> [FAIL][341] ([Intel XE#4208])
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@reload.html

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

  * igt@xe_oa@syncs-ufence-wait-cfg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][343] ([Intel XE#3573]) +1 other test skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_oa@syncs-ufence-wait-cfg.html

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][344] ([Intel XE#1173]) +1 other test fail
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-basic:
    - shard-bmg:          NOTRUN -> [SKIP][345] ([Intel XE#2284])
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][346] ([Intel XE#584])
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_pm@s3-mocs.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][347] ([Intel XE#4650])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][348] ([Intel XE#4733]) +2 other tests skip
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][349] ([Intel XE#4733]) +2 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-bmg:          NOTRUN -> [SKIP][350] ([Intel XE#944])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_query@multigpu-query-invalid-size.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     NOTRUN -> [SKIP][351] ([Intel XE#944])
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-lnl:          NOTRUN -> [SKIP][352] ([Intel XE#4130])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-dg2-set2:     NOTRUN -> [SKIP][353] ([Intel XE#4351])
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_sriov_scheduling@equal-throughput.html
    - shard-lnl:          NOTRUN -> [SKIP][354] ([Intel XE#4351])
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput.html

  
#### Possible fixes ####

  * igt@fbdev@unaligned-write:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#2134]) -> [PASS][356] +1 other test pass
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@fbdev@unaligned-write.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@fbdev@unaligned-write.html

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][357] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][358] +3 other tests pass
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [FAIL][359] ([Intel XE#3884]) -> [PASS][360] +1 other test pass
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-adlp:         [DMESG-FAIL][361] ([Intel XE#4543]) -> [PASS][362] +8 other tests pass
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][363] ([Intel XE#3862]) -> [PASS][364] +1 other test pass
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     [INCOMPLETE][365] ([Intel XE#3862]) -> [PASS][366] +1 other test pass
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#4208] / [i915#2575]) -> [PASS][368] +114 other tests pass
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][369] ([Intel XE#5354]) -> [PASS][370]
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-bmg:          [SKIP][371] ([Intel XE#2291]) -> [PASS][372] +1 other test pass
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][373] ([Intel XE#3009]) -> [PASS][374]
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_dp_aux_dev.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_dp_aux_dev.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [SKIP][375] ([Intel XE#2316]) -> [PASS][376] +1 other test pass
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][377] ([Intel XE#301]) -> [PASS][378] +1 other test pass
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][379] ([Intel XE#4543]) -> [PASS][380] +20 other tests pass
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
    - shard-dg2-set2:     [SKIP][381] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][382] +13 other tests pass
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][383] ([Intel XE#1503]) -> [PASS][384] +1 other test pass
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@invalid-hdr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][385] ([Intel XE#718]) -> [PASS][386]
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][387] ([Intel XE#1435]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [SKIP][389] ([Intel XE#4208]) -> [PASS][390] +241 other tests pass
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-dg2-set2:     [SKIP][391] ([Intel XE#1392]) -> [PASS][392] +2 other tests pass
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
    - shard-bmg:          [WARN][393] ([Intel XE#5786]) -> [PASS][394]
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
    - shard-bmg:          [FAIL][395] -> [PASS][396] +2 other tests pass
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][397] ([Intel XE#623]) -> [SKIP][398] ([Intel XE#4208] / [i915#2575])
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][399] ([Intel XE#316]) -> [SKIP][400] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][401] ([Intel XE#4208]) -> [SKIP][402] ([Intel XE#316])
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][403] ([Intel XE#316]) -> [SKIP][404] ([Intel XE#4208]) +2 other tests skip
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][405] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][406] ([Intel XE#316])
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][407] ([Intel XE#1124]) -> [SKIP][408] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][409] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][410] ([Intel XE#607])
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][411] ([Intel XE#4208]) -> [SKIP][412] ([Intel XE#1124]) +9 other tests skip
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][413] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][414] ([Intel XE#1124]) +4 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][415] ([Intel XE#1124]) -> [SKIP][416] ([Intel XE#4208]) +4 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][417] ([Intel XE#2191]) -> [SKIP][418] ([Intel XE#4208] / [i915#2575])
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][419] ([Intel XE#4208] / [i915#2575]) -> [SKIP][420] ([Intel XE#2191]) +1 other test skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][421] ([Intel XE#367]) -> [SKIP][422] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][423] ([Intel XE#4208] / [i915#2575]) -> [SKIP][424] ([Intel XE#367]) +3 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
    - shard-dg2-set2:     [SKIP][425] ([Intel XE#4208]) -> [SKIP][426] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][427] ([Intel XE#2907]) -> [SKIP][428] ([Intel XE#4208])
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][429] ([Intel XE#4208]) -> [SKIP][430] ([Intel XE#2907]) +2 other tests skip
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     [SKIP][431] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][432] ([Intel XE#4208]) +11 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][433] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][434] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     [SKIP][435] ([Intel XE#4208]) -> [SKIP][436] ([Intel XE#3442]) +1 other test skip
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][437] ([Intel XE#1727] / [Intel XE#3113]) -> [SKIP][438] ([Intel XE#2351] / [Intel XE#4208])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][439] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [SKIP][440] ([Intel XE#4208])
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][441] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [SKIP][442] ([Intel XE#4208])
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
    - shard-dg2-set2:     [SKIP][443] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][444] ([Intel XE#2351] / [Intel XE#4208])
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     [SKIP][445] ([Intel XE#4208] / [i915#2575]) -> [SKIP][446] ([Intel XE#306])
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-dg2-set2:     [SKIP][447] ([Intel XE#373]) -> [SKIP][448] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     [SKIP][449] ([Intel XE#4208] / [i915#2575]) -> [SKIP][450] ([Intel XE#373]) +10 other tests skip
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     [FAIL][451] ([Intel XE#1178]) -> [SKIP][452] ([Intel XE#4208] / [i915#2575])
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][453] ([Intel XE#307]) -> [SKIP][454] ([Intel XE#4208] / [i915#2575])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][455] ([Intel XE#1178]) -> [SKIP][456] ([Intel XE#2341])
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_content_protection@legacy.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [SKIP][457] ([Intel XE#2341]) -> [FAIL][458] ([Intel XE#1178])
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [SKIP][459] ([Intel XE#4208] / [i915#2575]) -> [FAIL][460] ([Intel XE#1188])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_content_protection@uevent.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-dg2-set2:     [SKIP][461] ([Intel XE#308]) -> [SKIP][462] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [SKIP][463] ([Intel XE#4208] / [i915#2575]) -> [SKIP][464] ([Intel XE#323])
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-dg2-set2:     [SKIP][465] ([Intel XE#4208]) -> [SKIP][466] ([Intel XE#4356]) +1 other test skip
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2-set2:     [SKIP][467] ([Intel XE#4331]) -> [SKIP][468] ([Intel XE#4208])
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2-set2:     [SKIP][469] ([Intel XE#455]) -> [SKIP][470] ([Intel XE#4208]) +2 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_dsc@dsc-with-bpc.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][471] ([Intel XE#776]) -> [SKIP][472] ([Intel XE#4208])
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#4208] / [i915#2575]) -> [SKIP][474] ([Intel XE#703])
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][475] ([Intel XE#4208] / [i915#2575]) -> [SKIP][476] ([Intel XE#1135]) +1 other test skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@psr1.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][477] ([Intel XE#4543]) -> [DMESG-FAIL][478] ([Intel XE#4543]) +1 other test dmesg-fail
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][479] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][480] ([Intel XE#4543]) +1 other test dmesg-warn
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-dg2-set2:     [SKIP][481] ([Intel XE#455]) -> [SKIP][482] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][484] ([Intel XE#455]) +2 other tests skip
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2-set2:     [SKIP][485] ([Intel XE#4208]) -> [SKIP][486] ([Intel XE#455]) +6 other tests skip
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][487] ([Intel XE#651]) -> [SKIP][488] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][489] ([Intel XE#2311]) -> [SKIP][490] ([Intel XE#2312]) +11 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][491] ([Intel XE#5390]) -> [SKIP][492] ([Intel XE#2312]) +4 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][493] ([Intel XE#2312]) -> [SKIP][494] ([Intel XE#5390]) +1 other test skip
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][495] ([Intel XE#4208]) -> [SKIP][496] ([Intel XE#651]) +24 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][497] ([Intel XE#651]) -> [SKIP][498] ([Intel XE#4208]) +13 other tests skip
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][499] ([Intel XE#2312]) -> [SKIP][500] ([Intel XE#2311]) +12 other tests skip
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][501] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][502] ([Intel XE#651]) +10 other tests skip
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     [SKIP][503] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][504] ([Intel XE#658]) +1 other test skip
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][505] ([Intel XE#2312]) -> [SKIP][506] ([Intel XE#2313]) +8 other tests skip
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][507] ([Intel XE#2313]) -> [SKIP][508] ([Intel XE#2312]) +8 other tests skip
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][509] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][510] ([Intel XE#653]) +8 other tests skip
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][511] ([Intel XE#653]) -> [SKIP][512] ([Intel XE#4208]) +19 other tests skip
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][513] ([Intel XE#4208]) -> [SKIP][514] ([Intel XE#653]) +28 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][515] ([Intel XE#653]) -> [SKIP][516] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][517] ([Intel XE#3544]) -> [SKIP][518] ([Intel XE#3374] / [Intel XE#3544])
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2-set2:     [SKIP][519] ([Intel XE#346]) -> [SKIP][520] ([Intel XE#4208])
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2-set2:     [SKIP][521] ([Intel XE#4298]) -> [SKIP][522] ([Intel XE#4208])
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][523] ([Intel XE#2925]) -> [SKIP][524] ([Intel XE#4208])
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][525] ([Intel XE#2927]) -> [SKIP][526] ([Intel XE#4208])
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2-set2:     [SKIP][527] ([Intel XE#4208]) -> [SKIP][528] ([Intel XE#2925]) +1 other test skip
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][529] ([Intel XE#5021]) -> [SKIP][530] ([Intel XE#4596])
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][531] ([Intel XE#2938]) -> [SKIP][532] ([Intel XE#4208])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][533] ([Intel XE#4208]) -> [SKIP][534] ([Intel XE#1129])
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     [SKIP][535] ([Intel XE#3309]) -> [SKIP][536] ([Intel XE#4208])
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][538] ([Intel XE#1406] / [Intel XE#4208]) +9 other tests skip
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][539] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][540] ([Intel XE#1406] / [Intel XE#1489]) +13 other tests skip
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg2-set2:     [SKIP][541] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][542] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][543] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][544] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +12 other tests skip
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-dg2-set2:     [SKIP][545] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][546] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-dg2-set2:     [SKIP][547] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][548] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_psr@psr-primary-page-flip.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2-set2:     [SKIP][549] ([Intel XE#4208] / [i915#2575]) -> [SKIP][550] ([Intel XE#3414]) +2 other tests skip
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-dg2-set2:     [SKIP][551] ([Intel XE#1127]) -> [SKIP][552] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2-set2:     [SKIP][553] ([Intel XE#3414]) -> [SKIP][554] ([Intel XE#4208] / [i915#2575])
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-dg2-set2:     [SKIP][555] ([Intel XE#4208] / [i915#2575]) -> [SKIP][556] ([Intel XE#455]) +11 other tests skip
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][557] ([Intel XE#4208] / [i915#2575]) -> [FAIL][558] ([Intel XE#1729])
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][559] ([Intel XE#330]) -> [SKIP][560] ([Intel XE#4208] / [i915#2575])
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-dg2-set2:     [SKIP][561] ([Intel XE#4208] / [i915#2575]) -> [SKIP][562] ([Intel XE#2168])
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_vrr@cmrr.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][563] ([Intel XE#455]) -> [SKIP][564] ([Intel XE#4208] / [i915#2575]) +7 other tests skip
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_vrr@flipline.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_vrr@flipline.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     [SKIP][565] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][566] ([Intel XE#4208] / [i915#2575])
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][567] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][568] ([Intel XE#4208])
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-dg2-set2:     [SKIP][569] ([Intel XE#4208]) -> [SKIP][570] ([Intel XE#1123])
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][571] ([Intel XE#1123]) -> [SKIP][572] ([Intel XE#4208])
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][573] ([Intel XE#1126]) -> [SKIP][574] ([Intel XE#4208])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][575] ([Intel XE#4208]) -> [SKIP][576] ([Intel XE#1126]) +1 other test skip
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-dg2-set2:     [SKIP][577] ([Intel XE#5626]) -> [SKIP][578] ([Intel XE#4208]) +1 other test skip
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_eu_stall@non-blocking-re-enable.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_eu_stall@unprivileged-access:
    - shard-dg2-set2:     [SKIP][579] ([Intel XE#4208]) -> [SKIP][580] ([Intel XE#5626]) +1 other test skip
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eu_stall@unprivileged-access.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_eu_stall@unprivileged-access.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     [SKIP][581] ([Intel XE#4208]) -> [SKIP][582] ([Intel XE#4837]) +16 other tests skip
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_eudebug_online@resume-dss:
    - shard-dg2-set2:     [SKIP][583] ([Intel XE#4837]) -> [SKIP][584] ([Intel XE#4208]) +10 other tests skip
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_eudebug_online@resume-dss.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-dg2-set2:     [SKIP][585] ([Intel XE#4208]) -> [SKIP][586] ([Intel XE#1392]) +1 other test skip
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_fault_mode@many-execqueues-basic-imm:
    - shard-dg2-set2:     [SKIP][587] ([Intel XE#4208]) -> [SKIP][588] ([Intel XE#288]) +28 other tests skip
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     [SKIP][589] ([Intel XE#288]) -> [SKIP][590] ([Intel XE#4208]) +17 other tests skip
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-FAIL][591] ([Intel XE#3868]) -> [DMESG-WARN][592] ([Intel XE#3868])
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@xe_exec_reset@cm-cat-error.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault:
    - shard-dg2-set2:     [SKIP][593] ([Intel XE#4915]) -> [SKIP][594] ([Intel XE#4208]) +233 other tests skip
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
    - shard-dg2-set2:     [SKIP][595] ([Intel XE#4208]) -> [SKIP][596] ([Intel XE#4915]) +334 other tests skip
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][597] ([Intel XE#5893]) -> [SKIP][598] ([Intel XE#4208])
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][599] ([Intel XE#4208]) -> [SKIP][600] ([Intel XE#512])
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_mmap@small-bar.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_mmap@small-bar.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][601] ([Intel XE#3573]) -> [SKIP][602] ([Intel XE#4208]) +4 other tests skip
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-dg2-set2:     [SKIP][603] ([Intel XE#5103]) -> [SKIP][604] ([Intel XE#4208])
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][605] ([Intel XE#4208]) -> [SKIP][606] ([Intel XE#3573]) +8 other tests skip
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@polling-small-buf.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_oa@polling-small-buf.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][607] ([Intel XE#977]) -> [SKIP][608] ([Intel XE#4208])
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     [SKIP][609] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][610] ([Intel XE#4208])
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     [SKIP][611] ([Intel XE#4208]) -> [SKIP][612] ([Intel XE#979])
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_peer2peer@read:
    - shard-dg2-set2:     [SKIP][613] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][614] ([Intel XE#1173]) +1 other test fail
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_peer2peer@read.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][615] ([Intel XE#4208]) -> [SKIP][616] ([Intel XE#2284] / [Intel XE#366])
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     [SKIP][617] ([Intel XE#5742]) -> [SKIP][618] ([Intel XE#4208])
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_pm@d3hot-i2c.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-dg2-set2:     [SKIP][619] ([Intel XE#4208]) -> [SKIP][620] ([Intel XE#4650])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pmu@all-fn-engine-activity-load.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-dg2-set2:     [SKIP][621] ([Intel XE#4208]) -> [SKIP][622] ([Intel XE#4733]) +1 other test skip
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pxp@pxp-stale-queue-post-suspend.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-dg2-set2:     [SKIP][623] ([Intel XE#4733]) -> [SKIP][624] ([Intel XE#4208]) +1 other test skip
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-dg2-set2:     [SKIP][625] ([Intel XE#4208]) -> [SKIP][626] ([Intel XE#944]) +2 other tests skip
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     [SKIP][627] ([Intel XE#944]) -> [SKIP][628] ([Intel XE#4208]) +2 other tests skip
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_render_copy@render-stress-2-copies:
    - shard-dg2-set2:     [SKIP][629] ([Intel XE#4814]) -> [SKIP][630] ([Intel XE#4208])
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html

  * igt@xe_render_copy@render-stress-4-copies:
    - shard-dg2-set2:     [SKIP][631] ([Intel XE#4208]) -> [SKIP][632] ([Intel XE#4814])
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_render_copy@render-stress-4-copies.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-dg2-set2:     [SKIP][633] ([Intel XE#4208]) -> [SKIP][634] ([Intel XE#4130])
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-dg2-set2:     [SKIP][635] ([Intel XE#4130]) -> [SKIP][636] ([Intel XE#4208])
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-dg2-set2:     [SKIP][637] ([Intel XE#4208]) -> [SKIP][638] ([Intel XE#4273])
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_flr@flr-vfs-parallel.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-dg2-set2:     [SKIP][639] ([Intel XE#4208]) -> [SKIP][640] ([Intel XE#4351])
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_sriov_scheduling@nonpreempt-engine-resets.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#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [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#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [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#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#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#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [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#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [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#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [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#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [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#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#5794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5794
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#5941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5941
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_8512 -> IGT_8514
  * Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-153589v2

  IGT_8512: 8512
  IGT_8514: 8514
  xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
  xe-pw-153589v2: 153589v2

== Logs ==

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

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

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

* Re: [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed
  2025-08-27 21:10 ` [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
@ 2025-08-29 14:55   ` Lis, Tomasz
  0 siblings, 0 replies; 14+ messages in thread
From: Lis, Tomasz @ 2025-08-29 14:55 UTC (permalink / raw)
  To: Matthew Brost, intel-xe


On 8/27/2025 11:10 PM, Matthew Brost wrote:
> VF post-migration recovery needs to modify the ring with updated GGTT
> addresses for pending jobs. Save off position in ring in which a job was
> programmed to facilitate.
>
> v4:
>   - s/VF resume/VF post-migration recovery (Tomasz)
>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>

-Tomasz

> ---
>   drivers/gpu/drm/xe/xe_ring_ops.c        | 23 +++++++++++++++++++----
>   drivers/gpu/drm/xe/xe_sched_job_types.h |  5 +++++
>   2 files changed, 24 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_ring_ops.c b/drivers/gpu/drm/xe/xe_ring_ops.c
> index 5f15360d14bf..4dad28f0614d 100644
> --- a/drivers/gpu/drm/xe/xe_ring_ops.c
> +++ b/drivers/gpu/drm/xe/xe_ring_ops.c
> @@ -245,12 +245,14 @@ static int emit_copy_timestamp(struct xe_lrc *lrc, u32 *dw, int i)
>   
>   /* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
>   static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
> -				    u64 batch_addr, u32 seqno)
> +				    u64 batch_addr, u32 *head, u32 seqno)
>   {
>   	u32 dw[MAX_JOB_SIZE_DW], i = 0;
>   	u32 ppgtt_flag = get_ppgtt_flag(job);
>   	struct xe_gt *gt = job->q->gt;
>   
> +	*head = lrc->ring.tail;
> +
>   	i = emit_copy_timestamp(lrc, dw, i);
>   
>   	if (job->ring_ops_flush_tlb) {
> @@ -296,7 +298,7 @@ static bool has_aux_ccs(struct xe_device *xe)
>   }
>   
>   static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
> -				   u64 batch_addr, u32 seqno)
> +				   u64 batch_addr, u32 *head, u32 seqno)
>   {
>   	u32 dw[MAX_JOB_SIZE_DW], i = 0;
>   	u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -304,6 +306,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
>   	struct xe_device *xe = gt_to_xe(gt);
>   	bool decode = job->q->class == XE_ENGINE_CLASS_VIDEO_DECODE;
>   
> +	*head = lrc->ring.tail;
> +
>   	i = emit_copy_timestamp(lrc, dw, i);
>   
>   	dw[i++] = preparser_disable(true);
> @@ -346,7 +350,8 @@ static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
>   
>   static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>   					    struct xe_lrc *lrc,
> -					    u64 batch_addr, u32 seqno)
> +					    u64 batch_addr, u32 *head,
> +					    u32 seqno)
>   {
>   	u32 dw[MAX_JOB_SIZE_DW], i = 0;
>   	u32 ppgtt_flag = get_ppgtt_flag(job);
> @@ -355,6 +360,8 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>   	bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
>   	u32 mask_flags = 0;
>   
> +	*head = lrc->ring.tail;
> +
>   	i = emit_copy_timestamp(lrc, dw, i);
>   
>   	dw[i++] = preparser_disable(true);
> @@ -396,11 +403,14 @@ static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
>   }
>   
>   static void emit_migration_job_gen12(struct xe_sched_job *job,
> -				     struct xe_lrc *lrc, u32 seqno)
> +				     struct xe_lrc *lrc, u32 *head,
> +				     u32 seqno)
>   {
>   	u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
>   	u32 dw[MAX_JOB_SIZE_DW], i = 0;
>   
> +	*head = lrc->ring.tail;
> +
>   	i = emit_copy_timestamp(lrc, dw, i);
>   
>   	i = emit_store_imm_ggtt(saddr, seqno, dw, i);
> @@ -434,6 +444,7 @@ static void emit_job_gen12_gsc(struct xe_sched_job *job)
>   
>   	__emit_job_gen12_simple(job, job->q->lrc[0],
>   				job->ptrs[0].batch_addr,
> +				&job->ptrs[0].head,
>   				xe_sched_job_lrc_seqno(job));
>   }
>   
> @@ -443,6 +454,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
>   
>   	if (xe_sched_job_is_migration(job->q)) {
>   		emit_migration_job_gen12(job, job->q->lrc[0],
> +					 &job->ptrs[0].head,
>   					 xe_sched_job_lrc_seqno(job));
>   		return;
>   	}
> @@ -450,6 +462,7 @@ static void emit_job_gen12_copy(struct xe_sched_job *job)
>   	for (i = 0; i < job->q->width; ++i)
>   		__emit_job_gen12_simple(job, job->q->lrc[i],
>   					job->ptrs[i].batch_addr,
> +					&job->ptrs[i].head,
>   					xe_sched_job_lrc_seqno(job));
>   }
>   
> @@ -461,6 +474,7 @@ static void emit_job_gen12_video(struct xe_sched_job *job)
>   	for (i = 0; i < job->q->width; ++i)
>   		__emit_job_gen12_video(job, job->q->lrc[i],
>   				       job->ptrs[i].batch_addr,
> +				       &job->ptrs[i].head,
>   				       xe_sched_job_lrc_seqno(job));
>   }
>   
> @@ -471,6 +485,7 @@ static void emit_job_gen12_render_compute(struct xe_sched_job *job)
>   	for (i = 0; i < job->q->width; ++i)
>   		__emit_job_gen12_render_compute(job, job->q->lrc[i],
>   						job->ptrs[i].batch_addr,
> +						&job->ptrs[i].head,
>   						xe_sched_job_lrc_seqno(job));
>   }
>   
> diff --git a/drivers/gpu/drm/xe/xe_sched_job_types.h b/drivers/gpu/drm/xe/xe_sched_job_types.h
> index dbf260dded8d..7ce58765a34a 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job_types.h
> +++ b/drivers/gpu/drm/xe/xe_sched_job_types.h
> @@ -24,6 +24,11 @@ struct xe_job_ptrs {
>   	struct dma_fence_chain *chain_fence;
>   	/** @batch_addr: Batch buffer address. */
>   	u64 batch_addr;
> +	/**
> +	 * @head: The tail pointer of the LRC (so head pointer of job) when the
> +	 * job was submitted
> +	 */
> +	u32 head;
>   };
>   
>   /**

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

* Re: [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state
  2025-08-27 21:10 ` [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
@ 2025-08-29 14:56   ` Lis, Tomasz
  0 siblings, 0 replies; 14+ messages in thread
From: Lis, Tomasz @ 2025-08-29 14:56 UTC (permalink / raw)
  To: Matthew Brost, intel-xe


On 8/27/2025 11:10 PM, Matthew Brost wrote:
> Add explicit tracking in the GuC submission state to record the source
> of a pending enable (TDR vs. queue resume path vs. submission).
> Disambiguating the origin lets the GuC submission state machine apply
> the correct recovery/replay behavior.
>
> This helps VF restore: when the device comes back, the state machine knows
> whether the pending enable stems from timeout recovery, from a queue resume
> sequence, or submission and can gate sequencing and fixups accordingly.
>
> v4:
>   - Clarify commit message (Tomasz)
>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>

-Tomasz

> ---
>   drivers/gpu/drm/xe/xe_guc_submit.c | 36 ++++++++++++++++++++++++++++++
>   1 file changed, 36 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 1185b23b1384..9e4118126ef9 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -68,6 +68,8 @@ exec_queue_to_guc(struct xe_exec_queue *q)
>   #define EXEC_QUEUE_STATE_BANNED			(1 << 9)
>   #define EXEC_QUEUE_STATE_CHECK_TIMEOUT		(1 << 10)
>   #define EXEC_QUEUE_STATE_EXTRA_REF		(1 << 11)
> +#define EXEC_QUEUE_STATE_PENDING_RESUME		(1 << 12)
> +#define EXEC_QUEUE_STATE_PENDING_TDR_EXIT	(1 << 13)
>   
>   static bool exec_queue_registered(struct xe_exec_queue *q)
>   {
> @@ -219,6 +221,36 @@ static void set_exec_queue_extra_ref(struct xe_exec_queue *q)
>   	atomic_or(EXEC_QUEUE_STATE_EXTRA_REF, &q->guc->state);
>   }
>   
> +static bool __maybe_unused exec_queue_pending_resume(struct xe_exec_queue *q)
> +{
> +	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_RESUME;
> +}
> +
> +static void set_exec_queue_pending_resume(struct xe_exec_queue *q)
> +{
> +	atomic_or(EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
> +}
> +
> +static void clear_exec_queue_pending_resume(struct xe_exec_queue *q)
> +{
> +	atomic_and(~EXEC_QUEUE_STATE_PENDING_RESUME, &q->guc->state);
> +}
> +
> +static bool __maybe_unused exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
> +{
> +	return atomic_read(&q->guc->state) & EXEC_QUEUE_STATE_PENDING_TDR_EXIT;
> +}
> +
> +static void set_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
> +{
> +	atomic_or(EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
> +}
> +
> +static void clear_exec_queue_pending_tdr_exit(struct xe_exec_queue *q)
> +{
> +	atomic_and(~EXEC_QUEUE_STATE_PENDING_TDR_EXIT, &q->guc->state);
> +}
> +
>   static bool exec_queue_killed_or_banned_or_wedged(struct xe_exec_queue *q)
>   {
>   	return (atomic_read(&q->guc->state) &
> @@ -1344,6 +1376,7 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
>   	return DRM_GPU_SCHED_STAT_RESET;
>   
>   sched_enable:
> +	set_exec_queue_pending_tdr_exit(q);
>   	enable_scheduling(q);
>   rearm:
>   	/*
> @@ -1494,6 +1527,7 @@ static void __guc_exec_queue_process_msg_resume(struct xe_sched_msg *msg)
>   		clear_exec_queue_suspended(q);
>   		if (!exec_queue_enabled(q)) {
>   			q->guc->resume_time = RESUME_PENDING;
> +			set_exec_queue_pending_resume(q);
>   			enable_scheduling(q);
>   		}
>   	} else {
> @@ -2065,6 +2099,8 @@ static void handle_sched_done(struct xe_guc *guc, struct xe_exec_queue *q,
>   		xe_gt_assert(guc_to_gt(guc), exec_queue_pending_enable(q));
>   
>   		q->guc->resume_time = ktime_get();
> +		clear_exec_queue_pending_resume(q);
> +		clear_exec_queue_pending_tdr_exit(q);
>   		clear_exec_queue_pending_enable(q);
>   		smp_wmb();
>   		wake_up_all(&guc->ct.wq);

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

* Re: [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list
  2025-08-27 21:10 ` [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
@ 2025-08-29 14:56   ` Lis, Tomasz
  0 siblings, 0 replies; 14+ messages in thread
From: Lis, Tomasz @ 2025-08-29 14:56 UTC (permalink / raw)
  To: Matthew Brost, intel-xe


On 8/27/2025 11:10 PM, Matthew Brost wrote:
> VF migration requires jobs to remain pending so they can be replayed
> after the VF comes back. Previously, LR job fences were intentionally
> signaled immediately after submission to avoid the risk of exporting
> them, as these fences do not naturally signal in a timely manner and
> could break dma-fence contracts. A side effect of this approach was that
> LR jobs were never added to the DRM scheduler’s pending list, preventing
> them from being tracked for later resubmission.
>
> We now avoid signaling LR job fences and ensure they are never exported;
> Xe already guards against exporting these internal fences. With that
> guarantee in place, we can safely track LR jobs in the scheduler’s
> pending list so they are eligible for resubmission during VF
> post-migration recovery (and similar recovery paths).
>
> An added benefit is that LR queues now gain the DRM scheduler’s built-in
> flow control over ring usage rather than rejecting new jobs in the exec
> IOCTL if the ring is full.
>
> v2:
>   - Ensure DRM scheduler TDR doesn't run for LR jobs
>   - Stack variable for killed_or_banned_or_wedged
> v4:
>   - Clarify commit message (Tomasz)
>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Tomasz Lis <tomasz.lis@intel.com>

-Tomasz

> ---
>   drivers/gpu/drm/xe/xe_exec.c       | 12 ++-------
>   drivers/gpu/drm/xe/xe_exec_queue.c | 19 -------------
>   drivers/gpu/drm/xe/xe_exec_queue.h |  2 --
>   drivers/gpu/drm/xe/xe_guc_submit.c | 43 ++++++++++++++++++++----------
>   4 files changed, 31 insertions(+), 45 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 44364c042ad7..b29b6edd59e0 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -117,7 +117,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
>   	u32 i, num_syncs, num_ufence = 0;
>   	struct xe_sched_job *job;
>   	struct xe_vm *vm;
> -	bool write_locked, skip_retry = false;
> +	bool write_locked;
>   	ktime_t end = 0;
>   	int err = 0;
>   	struct xe_hw_engine_group *group;
> @@ -256,12 +256,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
>   		goto err_exec;
>   	}
>   
> -	if (xe_exec_queue_is_lr(q) && xe_exec_queue_ring_full(q)) {
> -		err = -EWOULDBLOCK;	/* Aliased to -EAGAIN */
> -		skip_retry = true;
> -		goto err_exec;
> -	}
> -
>   	if (xe_exec_queue_uses_pxp(q)) {
>   		err = xe_vm_validate_protected(q->vm);
>   		if (err)
> @@ -318,8 +312,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
>   		xe_sched_job_init_user_fence(job, &syncs[i]);
>   	}
>   
> -	if (xe_exec_queue_is_lr(q))
> -		q->ring_ops->emit_job(job);
>   	if (!xe_vm_in_lr_mode(vm))
>   		xe_exec_queue_last_fence_set(q, vm, &job->drm.s_fence->finished);
>   	xe_sched_job_push(job);
> @@ -344,7 +336,7 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
>   	drm_exec_fini(exec);
>   err_unlock_list:
>   	up_read(&vm->lock);
> -	if (err == -EAGAIN && !skip_retry)
> +	if (err == -EAGAIN)
>   		goto retry;
>   err_hw_exec_mode:
>   	if (mode == EXEC_MODE_DMA_FENCE)
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index 063c89d981e5..a419f4bd3ab8 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -816,25 +816,6 @@ bool xe_exec_queue_is_lr(struct xe_exec_queue *q)
>   		!(q->flags & EXEC_QUEUE_FLAG_VM);
>   }
>   
> -static s32 xe_exec_queue_num_job_inflight(struct xe_exec_queue *q)
> -{
> -	return q->lrc[0]->fence_ctx.next_seqno - xe_lrc_seqno(q->lrc[0]) - 1;
> -}
> -
> -/**
> - * xe_exec_queue_ring_full() - Whether an exec_queue's ring is full
> - * @q: The exec_queue
> - *
> - * Return: True if the exec_queue's ring is full, false otherwise.
> - */
> -bool xe_exec_queue_ring_full(struct xe_exec_queue *q)
> -{
> -	struct xe_lrc *lrc = q->lrc[0];
> -	s32 max_job = lrc->ring.size / MAX_JOB_SIZE_BYTES;
> -
> -	return xe_exec_queue_num_job_inflight(q) >= max_job;
> -}
> -
>   /**
>    * xe_exec_queue_is_idle() - Whether an exec_queue is idle.
>    * @q: The exec_queue
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
> index 15ec852e7f7e..6ae11a1c7404 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.h
> @@ -64,8 +64,6 @@ static inline bool xe_exec_queue_uses_pxp(struct xe_exec_queue *q)
>   
>   bool xe_exec_queue_is_lr(struct xe_exec_queue *q);
>   
> -bool xe_exec_queue_ring_full(struct xe_exec_queue *q);
> -
>   bool xe_exec_queue_is_idle(struct xe_exec_queue *q);
>   
>   void xe_exec_queue_kill(struct xe_exec_queue *q);
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 9e4118126ef9..69ed3c159d10 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -837,30 +837,31 @@ guc_exec_queue_run_job(struct drm_sched_job *drm_job)
>   	struct xe_sched_job *job = to_xe_sched_job(drm_job);
>   	struct xe_exec_queue *q = job->q;
>   	struct xe_guc *guc = exec_queue_to_guc(q);
> -	struct dma_fence *fence = NULL;
> -	bool lr = xe_exec_queue_is_lr(q);
> +	bool lr = xe_exec_queue_is_lr(q), killed_or_banned_or_wedged =
> +		exec_queue_killed_or_banned_or_wedged(q);
>   
>   	xe_gt_assert(guc_to_gt(guc), !(exec_queue_destroyed(q) || exec_queue_pending_disable(q)) ||
>   		     exec_queue_banned(q) || exec_queue_suspended(q));
>   
>   	trace_xe_sched_job_run(job);
>   
> -	if (!exec_queue_killed_or_banned_or_wedged(q) && !xe_sched_job_is_error(job)) {
> +	if (!killed_or_banned_or_wedged && !xe_sched_job_is_error(job)) {
>   		if (!exec_queue_registered(q))
>   			register_exec_queue(q, GUC_CONTEXT_NORMAL);
> -		if (!lr)	/* LR jobs are emitted in the exec IOCTL */
> -			q->ring_ops->emit_job(job);
> +		q->ring_ops->emit_job(job);
>   		submit_exec_queue(q);
>   	}
>   
> -	if (lr) {
> -		xe_sched_job_set_error(job, -EOPNOTSUPP);
> -		dma_fence_put(job->fence);	/* Drop ref from xe_sched_job_arm */
> -	} else {
> -		fence = job->fence;
> -	}
> +	/*
> +	 * We don't care about job-fence ordering in LR VMs because these fences
> +	 * are never exported; they are used solely to keep jobs on the pending
> +	 * list. Once a queue enters an error state, there's no need to track
> +	 * them.
> +	 */
> +	if (killed_or_banned_or_wedged && lr)
> +		xe_sched_job_set_error(job, -ECANCELED);
>   
> -	return fence;
> +	return job->fence;
>   }
>   
>   /**
> @@ -926,7 +927,8 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
>   		xe_gt_warn(q->gt, "Pending enable/disable failed to respond\n");
>   		xe_sched_submission_start(sched);
>   		xe_gt_reset_async(q->gt);
> -		xe_sched_tdr_queue_imm(sched);
> +		if (!xe_exec_queue_is_lr(q))
> +			xe_sched_tdr_queue_imm(sched);
>   		return;
>   	}
>   
> @@ -1018,6 +1020,7 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
>   	struct xe_exec_queue *q = ge->q;
>   	struct xe_guc *guc = exec_queue_to_guc(q);
>   	struct xe_gpu_scheduler *sched = &ge->sched;
> +	struct xe_sched_job *job;
>   	bool wedged = false;
>   
>   	xe_gt_assert(guc_to_gt(guc), xe_exec_queue_is_lr(q));
> @@ -1068,7 +1071,16 @@ static void xe_guc_exec_queue_lr_cleanup(struct work_struct *w)
>   	if (!exec_queue_killed(q) && !xe_lrc_ring_is_idle(q->lrc[0]))
>   		xe_devcoredump(q, NULL, "LR job cleanup, guc_id=%d", q->guc->id);
>   
> +	xe_hw_fence_irq_stop(q->fence_irq);
> +
>   	xe_sched_submission_start(sched);
> +
> +	spin_lock(&sched->base.job_list_lock);
> +	list_for_each_entry(job, &sched->base.pending_list, drm.list)
> +		xe_sched_job_set_error(job, -ECANCELED);
> +	spin_unlock(&sched->base.job_list_lock);
> +
> +	xe_hw_fence_irq_start(q->fence_irq);
>   }
>   
>   #define ADJUST_FIVE_PERCENT(__t)	mul_u64_u32_div(__t, 105, 100)
> @@ -1139,7 +1151,8 @@ static void enable_scheduling(struct xe_exec_queue *q)
>   		xe_gt_warn(guc_to_gt(guc), "Schedule enable failed to respond");
>   		set_exec_queue_banned(q);
>   		xe_gt_reset_async(q->gt);
> -		xe_sched_tdr_queue_imm(&q->guc->sched);
> +		if (!xe_exec_queue_is_lr(q))
> +			xe_sched_tdr_queue_imm(&q->guc->sched);
>   	}
>   }
>   
> @@ -1197,6 +1210,8 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
>   	int i = 0;
>   	bool wedged = false, skip_timeout_check;
>   
> +	xe_gt_assert(guc_to_gt(guc), !xe_exec_queue_is_lr(q));
> +
>   	/*
>   	 * TDR has fired before free job worker. Common if exec queue
>   	 * immediately closed after last fence signaled. Add back to pending

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

* Re: ✗ Xe.CI.Full: failure for Core Xe changes preparing for VF migration (rev2)
  2025-08-29  5:06 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-03 23:26   ` Matthew Brost
  0 siblings, 0 replies; 14+ messages in thread
From: Matthew Brost @ 2025-09-03 23:26 UTC (permalink / raw)
  To: intel-xe

On Fri, Aug 29, 2025 at 05:06:13AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Core Xe changes preparing for VF migration (rev2)
> URL   : https://patchwork.freedesktop.org/series/153589/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_FULL -> xe-pw-153589v2_FULL
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with xe-pw-153589v2_FULL absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in xe-pw-153589v2_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-153589v2_FULL:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
>     - shard-lnl:          NOTRUN -> [FAIL][1] +3 other tests fail
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-rpm:
>     - shard-lnl:          [PASS][2] -> [SKIP][3] +2 other tests skip
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-rpm.html
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1:
>     - shard-adlp:         [PASS][4] -> [SKIP][5]
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1.html
>    [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-1.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
>     - shard-bmg:          [PASS][6] -> [SKIP][7] +4 other tests skip
>    [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
>    [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
> 
>   * igt@xe_exec_compute_mode@non-blocking:
>     - shard-bmg:          [PASS][8] -> [TIMEOUT][9]
>    [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_exec_compute_mode@non-blocking.html
>    [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_exec_compute_mode@non-blocking.html
>     - shard-lnl:          [PASS][10] -> [TIMEOUT][11]
>    [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_exec_compute_mode@non-blocking.html
>    [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_exec_compute_mode@non-blocking.html
>     - shard-adlp:         [PASS][12] -> [FAIL][13]
>    [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-8/igt@xe_exec_compute_mode@non-blocking.html
>    [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@xe_exec_compute_mode@non-blocking.html
> 
>   * igt@xe_exec_reset@cm-gt-reset:
>     - shard-bmg:          [PASS][14] -> [FAIL][15]
>    [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
>    [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_exec_reset@cm-gt-reset.html
> 

I was able to recreate the concerning cm-gt-reset failure on a BMG PF.

To me it looks like VLK-74448 as once I (randomly) the get machine into
the state where I get failures, the same signature of VLK-74448 starts
to show up too, a driver unload / reload returns the machine to a
working state. IMO we are good to merge this series and follow up on
fixing VLK-74448.

The xe_exec_compute_mode@non-blocking failures as expected given this
test case is no longer valid after this series and I have IGT series to
remove this test here [1].

Matt

[1] https://patchwork.freedesktop.org/series/153082/

>   
> #### Warnings ####
> 
>   * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
>     - shard-lnl:          [FAIL][16] ([Intel XE#911]) -> [FAIL][17] +3 other tests fail
>    [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
>    [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
>     - shard-bmg:          [SKIP][18] ([Intel XE#2312]) -> [ABORT][19]
>    [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
>    [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
> 
>   * igt@xe_oa@buffer-size:
>     - shard-dg2-set2:     [SKIP][20] ([Intel XE#4208]) -> [SKIP][21]
>    [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@buffer-size.html
>    [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_oa@buffer-size.html
> 
>   * igt@xe_oa@mmio-triggered-reports-read:
>     - shard-adlp:         [SKIP][22] ([Intel XE#5103]) -> [SKIP][23] +1 other test skip
>    [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@xe_oa@mmio-triggered-reports-read.html
>    [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in xe-pw-153589v2_FULL that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@core_setmaster@master-drop-set-root:
>     - shard-dg2-set2:     [PASS][24] -> [FAIL][25] ([Intel XE#4208])
>    [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
>    [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
> 
>   * igt@fbdev@eof:
>     - shard-dg2-set2:     [PASS][26] -> [SKIP][27] ([Intel XE#2134])
>    [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@fbdev@eof.html
>    [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@fbdev@eof.html
> 
>   * igt@kms_addfb_basic@unused-pitches:
>     - shard-adlp:         NOTRUN -> [DMESG-WARN][28] ([Intel XE#2953] / [Intel XE#4173])
>    [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_addfb_basic@unused-pitches.html
> 
>   * igt@kms_atomic_transition@plane-all-modeset-transition:
>     - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#3279])
>    [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
> 
>   * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#316]) +1 other test skip
>    [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>     - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2327]) +4 other tests skip
>    [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#1124]) +1 other test skip
>    [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
>     - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#3658])
>    [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip
>    [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
>     - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1124]) +2 other tests skip
>    [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>     - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#316])
>    [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-addfb:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#619])
>    [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
>     - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#1467])
>    [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>     - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1124]) +9 other tests skip
>    [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb:
>     - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2328]) +1 other test skip
>    [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
> 
>   * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>     - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#607])
>    [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
>     - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#2191])
>    [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
>     - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#2191])
>    [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
> 
>   * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>     - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
>    [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
> 
>   * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
>     - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#367])
>    [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
> 
>   * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
>     - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#787]) +14 other tests skip
>    [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
> 
>   * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#787]) +195 other tests skip
>    [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
>     - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#2887]) +8 other tests skip
>    [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
> 
>   * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip
>    [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
>     - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2887]) +15 other tests skip
>    [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
>     - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#3432])
>    [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
>     - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#3432])
>    [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>     - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#2907])
>    [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>     - shard-bmg:          NOTRUN -> [FAIL][54] ([Intel XE#5376]) +1 other test fail
>    [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>     - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#2907])
>    [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
>     - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#2669]) +3 other tests skip
>    [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
> 
>   * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [FAIL][57] ([Intel XE#5941])
>    [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3.html
> 
>   * igt@kms_ccs@random-ccs-data-y-tiled-ccs:
>     - shard-adlp:         NOTRUN -> [SKIP][58] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
>    [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
> 
>   * igt@kms_cdclk@mode-transition-all-outputs:
>     - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2724]) +1 other test skip
>    [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.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-153589v2/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
> 
>   * igt@kms_chamelium_color@ctm-blue-to-red:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#306])
>    [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_chamelium_color@ctm-blue-to-red.html
> 
>   * igt@kms_chamelium_color@ctm-green-to-red:
>     - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2325]) +1 other test skip
>    [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_chamelium_color@ctm-green-to-red.html
>     - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#306])
>    [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_chamelium_color@ctm-green-to-red.html
> 
>   * igt@kms_chamelium_edid@hdmi-mode-timings:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#373]) +7 other tests skip
>    [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_chamelium_edid@hdmi-mode-timings.html
> 
>   * igt@kms_chamelium_frames@vga-frame-dump:
>     - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#373]) +2 other tests skip
>    [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_chamelium_frames@vga-frame-dump.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
>     - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2252]) +9 other tests skip
>    [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
> 
>   * igt@kms_chamelium_hpd@dp-hpd-fast:
>     - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#373]) +4 other tests skip
>    [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-fast.html
> 
>   * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
>     - shard-bmg:          NOTRUN -> [FAIL][68] ([Intel XE#1178])
>    [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
> 
>   * igt@kms_content_protection@srm@pipe-a-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][69] ([Intel XE#1178]) +2 other tests fail
>    [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
> 
>   * igt@kms_content_protection@type1:
>     - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2341])
>    [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@kms_content_protection@type1.html
> 
>   * igt@kms_content_protection@uevent@pipe-a-dp-4:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][71] ([Intel XE#1188])
>    [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_content_protection@uevent@pipe-a-dp-4.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-32x32:
>     - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#2320]) +2 other tests skip
>    [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
> 
>   * igt@kms_cursor_crc@cursor-onscreen-512x170:
>     - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2321])
>    [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-32x32:
>     - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1424])
>    [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
> 
>   * igt@kms_cursor_crc@cursor-sliding-512x170:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#308])
>    [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
>     - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#309]) +1 other test skip
>    [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
>     - shard-bmg:          [PASS][77] -> [SKIP][78] ([Intel XE#2291]) +2 other tests skip
>    [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
>    [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>     - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#309]) +1 other test skip
>    [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
>     - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2291])
>    [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>     - shard-bmg:          [PASS][81] -> [FAIL][82] ([Intel XE#1475])
>    [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>    [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> 
>   * igt@kms_display_modes@extended-mode-basic:
>     - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#4302])
>    [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
> 
>   * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
>     - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#1340])
>    [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
> 
>   * igt@kms_dp_link_training@non-uhbr-mst:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#4354])
>    [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-mst.html
>     - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#4354])
>    [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_dp_link_training@non-uhbr-mst.html
>     - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#4354])
>    [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_dp_link_training@non-uhbr-mst.html
> 
>   * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
>     - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#310]) +1 other test skip
>    [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
> 
>   * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>     - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#1421]) +3 other tests skip
>    [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
> 
>   * igt@kms_flip@2x-nonexisting-fb:
>     - shard-bmg:          [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +3 other tests skip
>    [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@kms_flip@2x-nonexisting-fb.html
>    [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
> 
>   * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>     - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2316]) +3 other tests skip
>    [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
> 
>   * igt@kms_flip@basic-flip-vs-wf_vblank:
>     - shard-adlp:         NOTRUN -> [DMESG-WARN][93] ([Intel XE#4543]) +1 other test dmesg-warn
>    [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
> 
>   * igt@kms_flip@busy-flip:
>     - shard-dg2-set2:     [PASS][94] -> [SKIP][95] ([Intel XE#4208] / [i915#2575]) +76 other tests skip
>    [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip@busy-flip.html
>    [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip@busy-flip.html
> 
>   * igt@kms_flip@flip-vs-panning-interruptible:
>     - shard-adlp:         [PASS][96] -> [DMESG-WARN][97] ([Intel XE#4543] / [Intel XE#5208]) +1 other test dmesg-warn
>    [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html
>    [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible.html
> 
>   * igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1:
>     - shard-adlp:         [PASS][98] -> [DMESG-WARN][99] ([Intel XE#4543]) +9 other tests dmesg-warn
>    [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
>    [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
>     - shard-dg2-set2:     [PASS][100] -> [SKIP][101] ([Intel XE#4208]) +151 other tests skip
>    [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
>    [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
>     - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
>    [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
>     - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2293] / [Intel XE#2380])
>    [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
>     - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1401]) +1 other test skip
>    [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
>     - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#2293])
>    [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
>     - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#455]) +3 other tests skip
>    [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
>     - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
>    [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
>     - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#1397]) +1 other test skip
>    [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
>     - shard-adlp:         NOTRUN -> [DMESG-FAIL][109] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
>    [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#455]) +14 other tests skip
>    [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2311]) +27 other tests skip
>    [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
>     - shard-adlp:         NOTRUN -> [SKIP][112] ([Intel XE#651]) +2 other tests skip
>    [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][113] ([Intel XE#651]) +15 other tests skip
>    [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
>     - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#651]) +3 other tests skip
>    [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#5390]) +13 other tests skip
>    [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
>     - shard-adlp:         NOTRUN -> [DMESG-FAIL][116] ([Intel XE#4543]) +2 other tests dmesg-fail
>    [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     [PASS][117] -> [SKIP][118] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
>    [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
>    [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
>     - shard-adlp:         [PASS][119] -> [DMESG-FAIL][120] ([Intel XE#4543]) +8 other tests dmesg-fail
>    [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>    [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
>     - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#656]) +17 other tests skip
>    [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][122] ([Intel XE#2313]) +33 other tests skip
>    [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
>     - shard-adlp:         NOTRUN -> [SKIP][123] ([Intel XE#653]) +5 other tests skip
>    [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][124] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
>    [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#653]) +19 other tests skip
>    [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>     - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2312]) +5 other tests skip
>    [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
>     - shard-adlp:         NOTRUN -> [SKIP][127] ([Intel XE#656]) +9 other tests skip
>    [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
> 
>   * igt@kms_hdr@static-swap:
>     - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#1503])
>    [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@static-swap.html
> 
>   * igt@kms_hdr@static-toggle-suspend:
>     - shard-bmg:          [PASS][129] -> [SKIP][130] ([Intel XE#1503]) +1 other test skip
>    [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
>    [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
> 
>   * igt@kms_joiner@basic-ultra-joiner:
>     - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#2927])
>    [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html
> 
>   * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
>     - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#4329])
>    [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend:
>     - shard-adlp:         [PASS][133] -> [DMESG-WARN][134] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
>    [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_plane@plane-panning-bottom-right-suspend.html
>    [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
> 
>   * igt@kms_plane_lowres@tiling-y:
>     - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#599])
>    [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_plane_lowres@tiling-y.html
>     - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#2393])
>    [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
> 
>   * igt@kms_plane_multiple@2x-tiling-none:
>     - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#4596])
>    [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-none.html
>     - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#4596])
>    [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
> 
>   * igt@kms_plane_multiple@tiling-y:
>     - shard-bmg:          NOTRUN -> [SKIP][139] ([Intel XE#5020])
>    [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
> 
>   * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][140] ([Intel XE#4208] / [i915#2575]) +19 other tests skip
>    [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
> 
>   * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
>     - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#2763]) +3 other tests skip
>    [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
> 
>   * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
>     - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#2763]) +4 other tests skip
>    [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
> 
>   * igt@kms_pm_dc@dc6-dpms:
>     - shard-lnl:          [PASS][143] -> [FAIL][144] ([Intel XE#718]) +1 other test fail
>    [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
>    [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
> 
>   * igt@kms_pm_rpm@dpms-lpsp:
>     - shard-bmg:          NOTRUN -> [SKIP][145] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
>    [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
> 
>   * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
>    [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
> 
>   * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
>     - shard-lnl:          NOTRUN -> [SKIP][147] ([Intel XE#1406] / [Intel XE#2893])
>    [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
>     - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
>    [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
>     - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
>    [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
>     - shard-lnl:          NOTRUN -> [SKIP][150] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
>    [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
> 
>   * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
>     - shard-bmg:          NOTRUN -> [SKIP][151] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
>    [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
> 
>   * igt@kms_psr@fbc-psr2-primary-render:
>     - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#1406]) +3 other tests skip
>    [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-render.html
> 
>   * igt@kms_psr@fbc-psr2-primary-render@edp-1:
>     - shard-lnl:          NOTRUN -> [SKIP][153] ([Intel XE#1406] / [Intel XE#4609])
>    [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
> 
>   * igt@kms_psr@psr-dpms:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][154] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
>    [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_psr@psr-dpms.html
> 
>   * igt@kms_psr@psr2-dpms:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][155] ([Intel XE#1406] / [Intel XE#4208])
>    [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@psr2-dpms.html
> 
>   * igt@kms_psr@psr2-suspend:
>     - shard-adlp:         NOTRUN -> [SKIP][156] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
>    [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@kms_psr@psr2-suspend.html
>     - shard-bmg:          NOTRUN -> [SKIP][157] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +18 other tests skip
>    [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_psr@psr2-suspend.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>     - shard-bmg:          NOTRUN -> [SKIP][158] ([Intel XE#3414] / [Intel XE#3904])
>    [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full-aspect:
>     - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2413])
>    [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
> 
>   * igt@kms_setmode@clone-exclusive-crtc:
>     - shard-lnl:          NOTRUN -> [SKIP][160] ([Intel XE#1435])
>    [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@kms_setmode@clone-exclusive-crtc.html
> 
>   * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1:
>     - shard-adlp:         [PASS][161] -> [SKIP][162] ([Intel XE#455]) +1 other test skip
>    [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1.html
>    [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_vrr@cmrr@pipe-a-edp-1:
>     - shard-lnl:          [PASS][163] -> [FAIL][164] ([Intel XE#4459]) +1 other test fail
>    [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
>    [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
> 
>   * igt@kms_vrr@flipline:
>     - shard-lnl:          [PASS][165] -> [FAIL][166] ([Intel XE#4227]) +1 other test fail
>    [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@flipline.html
>    [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_vrr@flipline.html
> 
>   * igt@kms_vrr@seamless-rr-switch-virtual:
>     - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#1499]) +2 other tests skip
>    [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
> 
>   * igt@xe_ccs@ctrl-surf-copy-new-ctx:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][168] ([Intel XE#4208]) +103 other tests skip
>    [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
>     - shard-adlp:         NOTRUN -> [SKIP][169] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
>    [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
> 
>   * igt@xe_compute@ccs-mode-basic:
>     - shard-bmg:          NOTRUN -> [FAIL][170] ([Intel XE#5794])
>    [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
> 
>   * igt@xe_eudebug@basic-vm-access-userptr-faultable:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#4837]) +4 other tests skip
>    [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
>     - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#4837]) +4 other tests skip
>    [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
> 
>   * igt@xe_eudebug@discovery-empty:
>     - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#4837]) +15 other tests skip
>    [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_eudebug@discovery-empty.html
> 
>   * igt@xe_eudebug@vm-bind-clear:
>     - shard-adlp:         NOTRUN -> [SKIP][174] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
>    [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@xe_eudebug@vm-bind-clear.html
> 
>   * igt@xe_eudebug_sriov@deny-eudebug:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#4518])
>    [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_eudebug_sriov@deny-eudebug.html
>     - shard-lnl:          NOTRUN -> [SKIP][176] ([Intel XE#4518])
>    [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html
>     - shard-bmg:          NOTRUN -> [SKIP][177] ([Intel XE#5793])
>    [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_eudebug_sriov@deny-eudebug.html
> 
>   * igt@xe_evict@evict-small-multi-vm:
>     - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#688])
>    [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_evict@evict-small-multi-vm.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
>     - shard-bmg:          NOTRUN -> [SKIP][179] ([Intel XE#2322]) +10 other tests skip
>    [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
>     - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#1392]) +5 other tests skip
>    [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
>     - shard-dg2-set2:     [PASS][181] -> [SKIP][182] ([Intel XE#1392]) +1 other test skip
>    [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
>    [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
> 
>   * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
>     - shard-adlp:         NOTRUN -> [SKIP][183] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
>    [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
> 
>   * igt@xe_exec_fault_mode@many-userptr-invalidate-race:
>     - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#288] / [Intel XE#5561]) +3 other tests skip
>    [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
> 
>   * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][185] ([Intel XE#288]) +14 other tests skip
>    [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
> 
>   * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][186] ([Intel XE#2360])
>    [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
> 
>   * igt@xe_exec_reset@parallel-gt-reset:
>     - shard-adlp:         [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3876])
>    [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
>    [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][189] ([Intel XE#4915]) +134 other tests skip
>    [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge:
>     - shard-lnl:          NOTRUN -> [SKIP][190] ([Intel XE#4943]) +9 other tests skip
>    [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
>     - shard-adlp:         NOTRUN -> [SKIP][191] ([Intel XE#4915]) +66 other tests skip
>    [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
>     - shard-bmg:          NOTRUN -> [SKIP][192] ([Intel XE#4943]) +18 other tests skip
>    [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
> 
>   * igt@xe_module_load@load:
>     - shard-lnl:          ([PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217]) -> ([PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [SKIP][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243]) ([Intel XE#378])
>    [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
>    [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
>    [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
>    [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
>    [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
>    [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
>    [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
>    [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
>    [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
>    [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
>    [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
>    [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
>    [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
>    [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
>    [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
>    [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
>    [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
>    [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
>    [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
>    [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
>    [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
>    [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
>    [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
>    [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
>    [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
>    [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
>    [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
>    [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
>    [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
>    [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
>    [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
>    [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
>    [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
>    [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
>    [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-3/igt@xe_module_load@load.html
>    [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
>    [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
>    [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
>    [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
>    [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
>    [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-4/igt@xe_module_load@load.html
>    [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
>    [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
>    [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_module_load@load.html
>    [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
>    [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
>    [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@xe_module_load@load.html
>    [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-8/igt@xe_module_load@load.html
>    [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
>    [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_module_load@load.html
>    [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@xe_module_load@load.html
>     - shard-bmg:          ([PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265]) -> ([SKIP][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289]) ([Intel XE#2457])
>    [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
>    [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
>    [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-1/igt@xe_module_load@load.html
>    [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
>    [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
>    [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
>    [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
>    [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
>    [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
>    [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
>    [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
>    [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
>    [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
>    [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
>    [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
>    [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
>    [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
>    [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
>    [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
>    [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
>    [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
>    [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
>    [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
>    [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
>    [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
>    [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
>    [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_module_load@load.html
>    [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
>    [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-4/igt@xe_module_load@load.html
>    [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
>    [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
>    [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-2/igt@xe_module_load@load.html
>    [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
>    [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
>    [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_module_load@load.html
>    [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
>    [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
>    [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
>    [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_module_load@load.html
>    [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
>    [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_module_load@load.html
>    [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_module_load@load.html
>    [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
>    [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
>    [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@xe_module_load@load.html
>    [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-1/igt@xe_module_load@load.html
>     - shard-dg2-set2:     ([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], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [SKIP][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340]) ([Intel XE#378])
>    [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_module_load@load.html
>    [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
>    [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
>    [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
>    [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
>    [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_module_load@load.html
>    [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
>    [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
>    [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
>    [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
>    [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
>    [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
>    [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
>    [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
>    [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
>    [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
>    [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
>    [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
>    [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
>    [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
>    [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
>    [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
>    [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
>    [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
>    [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_module_load@load.html
>    [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_module_load@load.html
>    [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@xe_module_load@load.html
>    [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
>    [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_module_load@load.html
>    [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
>    [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html
>    [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
>    [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_module_load@load.html
>    [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html
>    [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@load.html
>    [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_module_load@load.html
>    [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
>    [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_module_load@load.html
>    [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_module_load@load.html
>    [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_module_load@load.html
> 
>   * igt@xe_module_load@reload:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][341] ([Intel XE#4208])
>    [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_module_load@reload.html
> 
>   * igt@xe_oa@buffer-fill:
>     - shard-adlp:         NOTRUN -> [SKIP][342] ([Intel XE#3573]) +2 other tests skip
>    [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@xe_oa@buffer-fill.html
> 
>   * igt@xe_oa@syncs-ufence-wait-cfg:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][343] ([Intel XE#3573]) +1 other test skip
>    [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_oa@syncs-ufence-wait-cfg.html
> 
>   * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
>     - shard-dg2-set2:     NOTRUN -> [FAIL][344] ([Intel XE#1173]) +1 other test fail
>    [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
> 
>   * igt@xe_pm@d3cold-basic:
>     - shard-bmg:          NOTRUN -> [SKIP][345] ([Intel XE#2284])
>    [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_pm@d3cold-basic.html
> 
>   * igt@xe_pm@s3-mocs:
>     - shard-lnl:          NOTRUN -> [SKIP][346] ([Intel XE#584])
>    [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_pm@s3-mocs.html
> 
>   * igt@xe_pmu@fn-engine-activity-sched-if-idle:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][347] ([Intel XE#4650])
>    [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
> 
>   * igt@xe_pxp@display-black-pxp-fb:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][348] ([Intel XE#4733]) +2 other tests skip
>    [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@xe_pxp@display-black-pxp-fb.html
> 
>   * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
>     - shard-bmg:          NOTRUN -> [SKIP][349] ([Intel XE#4733]) +2 other tests skip
>    [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
> 
>   * igt@xe_query@multigpu-query-invalid-size:
>     - shard-bmg:          NOTRUN -> [SKIP][350] ([Intel XE#944])
>    [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@xe_query@multigpu-query-invalid-size.html
> 
>   * igt@xe_query@multigpu-query-mem-usage:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][351] ([Intel XE#944])
>    [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html
> 
>   * igt@xe_sriov_auto_provisioning@exclusive-ranges:
>     - shard-lnl:          NOTRUN -> [SKIP][352] ([Intel XE#4130])
>    [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-1/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
> 
>   * igt@xe_sriov_scheduling@equal-throughput:
>     - shard-dg2-set2:     NOTRUN -> [SKIP][353] ([Intel XE#4351])
>    [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_sriov_scheduling@equal-throughput.html
>     - shard-lnl:          NOTRUN -> [SKIP][354] ([Intel XE#4351])
>    [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@fbdev@unaligned-write:
>     - shard-dg2-set2:     [SKIP][355] ([Intel XE#2134]) -> [PASS][356] +1 other test pass
>    [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@fbdev@unaligned-write.html
>    [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@fbdev@unaligned-write.html
> 
>   * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
>     - shard-adlp:         [DMESG-WARN][357] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][358] +3 other tests pass
>    [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
>    [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
> 
>   * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
>     - shard-adlp:         [FAIL][359] ([Intel XE#3884]) -> [PASS][360] +1 other test pass
>    [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
>    [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
> 
>   * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
>     - shard-adlp:         [DMESG-FAIL][361] ([Intel XE#4543]) -> [PASS][362] +8 other tests pass
>    [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
>    [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-bmg:          [INCOMPLETE][363] ([Intel XE#3862]) -> [PASS][364] +1 other test pass
>    [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>    [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2:
>     - shard-dg2-set2:     [INCOMPLETE][365] ([Intel XE#3862]) -> [PASS][366] +1 other test pass
>    [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html
>    [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-2.html
> 
>   * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
>     - shard-dg2-set2:     [SKIP][367] ([Intel XE#4208] / [i915#2575]) -> [PASS][368] +114 other tests pass
>    [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
>    [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
> 
>   * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>     - shard-bmg:          [DMESG-WARN][369] ([Intel XE#5354]) -> [PASS][370]
>    [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
>    [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
> 
>   * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>     - shard-bmg:          [SKIP][371] ([Intel XE#2291]) -> [PASS][372] +1 other test pass
>    [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
>    [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
> 
>   * igt@kms_dp_aux_dev:
>     - shard-bmg:          [SKIP][373] ([Intel XE#3009]) -> [PASS][374]
>    [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_dp_aux_dev.html
>    [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_dp_aux_dev.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank:
>     - shard-bmg:          [SKIP][375] ([Intel XE#2316]) -> [PASS][376] +1 other test pass
>    [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
>    [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible:
>     - shard-lnl:          [FAIL][377] ([Intel XE#301]) -> [PASS][378] +1 other test pass
>    [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
>    [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-adlp:         [DMESG-WARN][379] ([Intel XE#4543]) -> [PASS][380] +20 other tests pass
>    [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
>     - shard-dg2-set2:     [SKIP][381] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][382] +13 other tests pass
>    [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
>    [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
> 
>   * igt@kms_hdr@invalid-hdr:
>     - shard-bmg:          [SKIP][383] ([Intel XE#1503]) -> [PASS][384] +1 other test pass
>    [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
>    [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
> 
>   * igt@kms_pm_dc@dc6-psr:
>     - shard-lnl:          [FAIL][385] ([Intel XE#718]) -> [PASS][386]
>    [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
>    [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
> 
>   * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>     - shard-bmg:          [SKIP][387] ([Intel XE#1435]) -> [PASS][388]
>    [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
>    [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
> 
>   * igt@xe_exec_basic@many-null-rebind:
>     - shard-dg2-set2:     [SKIP][389] ([Intel XE#4208]) -> [PASS][390] +241 other tests pass
>    [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
>    [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
> 
>   * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
>     - shard-dg2-set2:     [SKIP][391] ([Intel XE#1392]) -> [PASS][392] +2 other tests pass
>    [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
>    [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
> 
>   * {igt@xe_exec_system_allocator@many-stride-malloc-prefetch}:
>     - shard-bmg:          [WARN][393] ([Intel XE#5786]) -> [PASS][394]
>    [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
>    [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
> 
>   * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
>     - shard-bmg:          [FAIL][395] -> [PASS][396] +2 other tests pass
>    [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
>    [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
> 
>   
> #### Warnings ####
> 
>   * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>     - shard-dg2-set2:     [SKIP][397] ([Intel XE#623]) -> [SKIP][398] ([Intel XE#4208] / [i915#2575])
>    [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>    [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> 
>   * igt@kms_big_fb@linear-16bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][399] ([Intel XE#316]) -> [SKIP][400] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
>    [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html
>    [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
> 
>   * igt@kms_big_fb@linear-32bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][401] ([Intel XE#4208]) -> [SKIP][402] ([Intel XE#316])
>    [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
>    [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-90.html
> 
>   * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>     - shard-dg2-set2:     [SKIP][403] ([Intel XE#316]) -> [SKIP][404] ([Intel XE#4208]) +2 other tests skip
>    [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
>    [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
> 
>   * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][405] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][406] ([Intel XE#316])
>    [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
>    [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
>     - shard-dg2-set2:     [SKIP][407] ([Intel XE#1124]) -> [SKIP][408] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
>    [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
>    [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
> 
>   * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>     - shard-dg2-set2:     [SKIP][409] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][410] ([Intel XE#607])
>    [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
>    [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
> 
>   * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
>     - shard-dg2-set2:     [SKIP][411] ([Intel XE#4208]) -> [SKIP][412] ([Intel XE#1124]) +9 other tests skip
>    [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
>    [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>     - shard-dg2-set2:     [SKIP][413] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][414] ([Intel XE#1124]) +4 other tests skip
>    [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
>    [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>     - shard-dg2-set2:     [SKIP][415] ([Intel XE#1124]) -> [SKIP][416] ([Intel XE#4208]) +4 other tests skip
>    [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>    [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> 
>   * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
>     - shard-dg2-set2:     [SKIP][417] ([Intel XE#2191]) -> [SKIP][418] ([Intel XE#4208] / [i915#2575])
>    [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
>    [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
> 
>   * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>     - shard-dg2-set2:     [SKIP][419] ([Intel XE#4208] / [i915#2575]) -> [SKIP][420] ([Intel XE#2191]) +1 other test skip
>    [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
>    [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
> 
>   * igt@kms_bw@linear-tiling-2-displays-2160x1440p:
>     - shard-dg2-set2:     [SKIP][421] ([Intel XE#367]) -> [SKIP][422] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
>    [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
>    [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
> 
>   * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
>     - shard-dg2-set2:     [SKIP][423] ([Intel XE#4208] / [i915#2575]) -> [SKIP][424] ([Intel XE#367]) +3 other tests skip
>    [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
>    [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
> 
>   * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
>     - shard-dg2-set2:     [SKIP][425] ([Intel XE#4208]) -> [SKIP][426] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
>    [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
>    [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
> 
>   * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
>     - shard-dg2-set2:     [SKIP][427] ([Intel XE#2907]) -> [SKIP][428] ([Intel XE#4208])
>    [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
>    [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
>     - shard-dg2-set2:     [SKIP][429] ([Intel XE#4208]) -> [SKIP][430] ([Intel XE#2907]) +2 other tests skip
>    [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
>    [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
>     - shard-dg2-set2:     [SKIP][431] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][432] ([Intel XE#4208]) +11 other tests skip
>    [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
>    [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
> 
>   * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
>     - shard-dg2-set2:     [SKIP][433] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][434] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
>    [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
>    [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
> 
>   * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>     - shard-dg2-set2:     [SKIP][435] ([Intel XE#4208]) -> [SKIP][436] ([Intel XE#3442]) +1 other test skip
>    [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
>    [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>     - shard-dg2-set2:     [INCOMPLETE][437] ([Intel XE#1727] / [Intel XE#3113]) -> [SKIP][438] ([Intel XE#2351] / [Intel XE#4208])
>    [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
>    [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
>     - shard-dg2-set2:     [INCOMPLETE][439] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [SKIP][440] ([Intel XE#4208])
>    [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>    [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> 
>   * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>     - shard-dg2-set2:     [INCOMPLETE][441] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [SKIP][442] ([Intel XE#4208])
>    [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>    [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> 
>   * igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
>     - shard-dg2-set2:     [SKIP][443] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][444] ([Intel XE#2351] / [Intel XE#4208])
>    [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
>    [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
> 
>   * igt@kms_chamelium_color@ctm-limited-range:
>     - shard-dg2-set2:     [SKIP][445] ([Intel XE#4208] / [i915#2575]) -> [SKIP][446] ([Intel XE#306])
>    [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
>    [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
> 
>   * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
>     - shard-dg2-set2:     [SKIP][447] ([Intel XE#373]) -> [SKIP][448] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
>    [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
>    [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
> 
>   * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>     - shard-dg2-set2:     [SKIP][449] ([Intel XE#4208] / [i915#2575]) -> [SKIP][450] ([Intel XE#373]) +10 other tests skip
>    [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>    [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
> 
>   * igt@kms_content_protection@atomic-dpms:
>     - shard-dg2-set2:     [FAIL][451] ([Intel XE#1178]) -> [SKIP][452] ([Intel XE#4208] / [i915#2575])
>    [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
>    [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
> 
>   * igt@kms_content_protection@dp-mst-type-0:
>     - shard-dg2-set2:     [SKIP][453] ([Intel XE#307]) -> [SKIP][454] ([Intel XE#4208] / [i915#2575])
>    [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html
>    [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
> 
>   * igt@kms_content_protection@legacy:
>     - shard-bmg:          [FAIL][455] ([Intel XE#1178]) -> [SKIP][456] ([Intel XE#2341])
>    [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_content_protection@legacy.html
>    [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_content_protection@legacy.html
> 
>   * igt@kms_content_protection@lic-type-0:
>     - shard-bmg:          [SKIP][457] ([Intel XE#2341]) -> [FAIL][458] ([Intel XE#1178])
>    [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
>    [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
> 
>   * igt@kms_content_protection@uevent:
>     - shard-dg2-set2:     [SKIP][459] ([Intel XE#4208] / [i915#2575]) -> [FAIL][460] ([Intel XE#1188])
>    [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_content_protection@uevent.html
>    [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_content_protection@uevent.html
> 
>   * igt@kms_cursor_crc@cursor-offscreen-512x170:
>     - shard-dg2-set2:     [SKIP][461] ([Intel XE#308]) -> [SKIP][462] ([Intel XE#4208] / [i915#2575]) +1 other test skip
>    [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
>    [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
> 
>   * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
>     - shard-dg2-set2:     [SKIP][463] ([Intel XE#4208] / [i915#2575]) -> [SKIP][464] ([Intel XE#323])
>    [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>    [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> 
>   * igt@kms_dp_link_training@uhbr-sst:
>     - shard-dg2-set2:     [SKIP][465] ([Intel XE#4208]) -> [SKIP][466] ([Intel XE#4356]) +1 other test skip
>    [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
>    [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_dp_link_training@uhbr-sst.html
> 
>   * igt@kms_dp_linktrain_fallback@dsc-fallback:
>     - shard-dg2-set2:     [SKIP][467] ([Intel XE#4331]) -> [SKIP][468] ([Intel XE#4208])
>    [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_dp_linktrain_fallback@dsc-fallback.html
>    [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_dp_linktrain_fallback@dsc-fallback.html
> 
>   * igt@kms_dsc@dsc-with-bpc:
>     - shard-dg2-set2:     [SKIP][469] ([Intel XE#455]) -> [SKIP][470] ([Intel XE#4208]) +2 other tests skip
>    [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_dsc@dsc-with-bpc.html
>    [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
> 
>   * igt@kms_fbcon_fbt@psr-suspend:
>     - shard-dg2-set2:     [SKIP][471] ([Intel XE#776]) -> [SKIP][472] ([Intel XE#4208])
>    [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
>    [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
> 
>   * igt@kms_feature_discovery@display-3x:
>     - shard-dg2-set2:     [SKIP][473] ([Intel XE#4208] / [i915#2575]) -> [SKIP][474] ([Intel XE#703])
>    [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
>    [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
> 
>   * igt@kms_feature_discovery@psr1:
>     - shard-dg2-set2:     [SKIP][475] ([Intel XE#4208] / [i915#2575]) -> [SKIP][476] ([Intel XE#1135]) +1 other test skip
>    [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@psr1.html
>    [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_feature_discovery@psr1.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
>     - shard-adlp:         [DMESG-WARN][477] ([Intel XE#4543]) -> [DMESG-FAIL][478] ([Intel XE#4543]) +1 other test dmesg-fail
>    [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
>    [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
> 
>   * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
>     - shard-adlp:         [DMESG-WARN][479] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][480] ([Intel XE#4543]) +1 other test dmesg-warn
>    [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
>    [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
> 
>   * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
>     - shard-dg2-set2:     [SKIP][481] ([Intel XE#455]) -> [SKIP][482] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
>    [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
>    [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>     - shard-dg2-set2:     [SKIP][483] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][484] ([Intel XE#455]) +2 other tests skip
>    [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
>    [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> 
>   * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
>     - shard-dg2-set2:     [SKIP][485] ([Intel XE#4208]) -> [SKIP][486] ([Intel XE#455]) +6 other tests skip
>    [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
>    [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
>     - shard-dg2-set2:     [SKIP][487] ([Intel XE#651]) -> [SKIP][488] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
>    [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
>    [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
> 
>   * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
>     - shard-bmg:          [SKIP][489] ([Intel XE#2311]) -> [SKIP][490] ([Intel XE#2312]) +11 other tests skip
>    [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>    [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>     - shard-bmg:          [SKIP][491] ([Intel XE#5390]) -> [SKIP][492] ([Intel XE#2312]) +4 other tests skip
>    [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>    [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>     - shard-bmg:          [SKIP][493] ([Intel XE#2312]) -> [SKIP][494] ([Intel XE#5390]) +1 other test skip
>    [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
>    [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
>     - shard-dg2-set2:     [SKIP][495] ([Intel XE#4208]) -> [SKIP][496] ([Intel XE#651]) +24 other tests skip
>    [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
>    [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     [SKIP][497] ([Intel XE#651]) -> [SKIP][498] ([Intel XE#4208]) +13 other tests skip
>    [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
>    [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
>     - shard-bmg:          [SKIP][499] ([Intel XE#2312]) -> [SKIP][500] ([Intel XE#2311]) +12 other tests skip
>    [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
>    [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
>     - shard-dg2-set2:     [SKIP][501] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][502] ([Intel XE#651]) +10 other tests skip
>    [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
>    [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
>     - shard-dg2-set2:     [SKIP][503] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][504] ([Intel XE#658]) +1 other test skip
>    [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
>    [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
>     - shard-bmg:          [SKIP][505] ([Intel XE#2312]) -> [SKIP][506] ([Intel XE#2313]) +8 other tests skip
>    [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
>    [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
>     - shard-bmg:          [SKIP][507] ([Intel XE#2313]) -> [SKIP][508] ([Intel XE#2312]) +8 other tests skip
>    [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
>    [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
>     - shard-dg2-set2:     [SKIP][509] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][510] ([Intel XE#653]) +8 other tests skip
>    [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
>    [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
> 
>   * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
>     - shard-dg2-set2:     [SKIP][511] ([Intel XE#653]) -> [SKIP][512] ([Intel XE#4208]) +19 other tests skip
>    [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
>    [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
>     - shard-dg2-set2:     [SKIP][513] ([Intel XE#4208]) -> [SKIP][514] ([Intel XE#653]) +28 other tests skip
>    [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
>    [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
>     - shard-dg2-set2:     [SKIP][515] ([Intel XE#653]) -> [SKIP][516] ([Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
>    [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
>    [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
> 
>   * igt@kms_hdr@brightness-with-hdr:
>     - shard-bmg:          [SKIP][517] ([Intel XE#3544]) -> [SKIP][518] ([Intel XE#3374] / [Intel XE#3544])
>    [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
>    [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
> 
>   * igt@kms_joiner@basic-big-joiner:
>     - shard-dg2-set2:     [SKIP][519] ([Intel XE#346]) -> [SKIP][520] ([Intel XE#4208])
>    [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
>    [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
> 
>   * igt@kms_joiner@basic-max-non-joiner:
>     - shard-dg2-set2:     [SKIP][521] ([Intel XE#4298]) -> [SKIP][522] ([Intel XE#4208])
>    [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
>    [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
>     - shard-dg2-set2:     [SKIP][523] ([Intel XE#2925]) -> [SKIP][524] ([Intel XE#4208])
>    [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
>    [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
> 
>   * igt@kms_joiner@invalid-modeset-ultra-joiner:
>     - shard-dg2-set2:     [SKIP][525] ([Intel XE#2927]) -> [SKIP][526] ([Intel XE#4208])
>    [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>    [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
> 
>   * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>     - shard-dg2-set2:     [SKIP][527] ([Intel XE#4208]) -> [SKIP][528] ([Intel XE#2925]) +1 other test skip
>    [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
>    [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
> 
>   * igt@kms_plane_multiple@2x-tiling-y:
>     - shard-bmg:          [SKIP][529] ([Intel XE#5021]) -> [SKIP][530] ([Intel XE#4596])
>    [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
>    [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
> 
>   * igt@kms_pm_backlight@brightness-with-dpms:
>     - shard-dg2-set2:     [SKIP][531] ([Intel XE#2938]) -> [SKIP][532] ([Intel XE#4208])
>    [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
>    [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
> 
>   * igt@kms_pm_dc@dc5-psr:
>     - shard-dg2-set2:     [SKIP][533] ([Intel XE#4208]) -> [SKIP][534] ([Intel XE#1129])
>    [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
>    [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html
> 
>   * igt@kms_pm_dc@dc5-retention-flops:
>     - shard-dg2-set2:     [SKIP][535] ([Intel XE#3309]) -> [SKIP][536] ([Intel XE#4208])
>    [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html
>    [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
> 
>   * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>     - shard-dg2-set2:     [SKIP][537] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][538] ([Intel XE#1406] / [Intel XE#4208]) +9 other tests skip
>    [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
>    [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
> 
>   * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
>     - shard-dg2-set2:     [SKIP][539] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][540] ([Intel XE#1406] / [Intel XE#1489]) +13 other tests skip
>    [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
>    [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
> 
>   * igt@kms_psr@fbc-pr-sprite-render:
>     - shard-dg2-set2:     [SKIP][541] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][542] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
>    [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
>    [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-render.html
> 
>   * igt@kms_psr@fbc-psr-cursor-plane-onoff:
>     - shard-dg2-set2:     [SKIP][543] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][544] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +12 other tests skip
>    [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
>    [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
> 
>   * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
>     - shard-dg2-set2:     [SKIP][545] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][546] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
>    [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
>    [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
> 
>   * igt@kms_psr@psr-primary-page-flip:
>     - shard-dg2-set2:     [SKIP][547] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][548] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
>    [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_psr@psr-primary-page-flip.html
>    [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
> 
>   * igt@kms_rotation_crc@bad-pixel-format:
>     - shard-dg2-set2:     [SKIP][549] ([Intel XE#4208] / [i915#2575]) -> [SKIP][550] ([Intel XE#3414]) +2 other tests skip
>    [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
>    [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
> 
>   * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>     - shard-dg2-set2:     [SKIP][551] ([Intel XE#1127]) -> [SKIP][552] ([Intel XE#4208] / [i915#2575]) +1 other test skip
>    [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
>    [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
> 
>   * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>     - shard-dg2-set2:     [SKIP][553] ([Intel XE#3414]) -> [SKIP][554] ([Intel XE#4208] / [i915#2575])
>    [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
>    [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
> 
>   * igt@kms_scaling_modes@scaling-mode-full:
>     - shard-dg2-set2:     [SKIP][555] ([Intel XE#4208] / [i915#2575]) -> [SKIP][556] ([Intel XE#455]) +11 other tests skip
>    [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html
>    [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full.html
> 
>   * igt@kms_tiled_display@basic-test-pattern:
>     - shard-dg2-set2:     [SKIP][557] ([Intel XE#4208] / [i915#2575]) -> [FAIL][558] ([Intel XE#1729])
>    [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
>    [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
> 
>   * igt@kms_tv_load_detect@load-detect:
>     - shard-dg2-set2:     [SKIP][559] ([Intel XE#330]) -> [SKIP][560] ([Intel XE#4208] / [i915#2575])
>    [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
>    [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
> 
>   * igt@kms_vrr@cmrr:
>     - shard-dg2-set2:     [SKIP][561] ([Intel XE#4208] / [i915#2575]) -> [SKIP][562] ([Intel XE#2168])
>    [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_vrr@cmrr.html
>    [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@kms_vrr@cmrr.html
> 
>   * igt@kms_vrr@flipline:
>     - shard-dg2-set2:     [SKIP][563] ([Intel XE#455]) -> [SKIP][564] ([Intel XE#4208] / [i915#2575]) +7 other tests skip
>    [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_vrr@flipline.html
>    [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@kms_vrr@flipline.html
> 
>   * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
>     - shard-dg2-set2:     [SKIP][565] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][566] ([Intel XE#4208] / [i915#2575])
>    [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
>    [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
> 
>   * igt@xe_compute_preempt@compute-preempt:
>     - shard-dg2-set2:     [SKIP][567] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][568] ([Intel XE#4208])
>    [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
>    [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
> 
>   * igt@xe_copy_basic@mem-copy-linear-0x369:
>     - shard-dg2-set2:     [SKIP][569] ([Intel XE#4208]) -> [SKIP][570] ([Intel XE#1123])
>    [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
>    [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html
> 
>   * igt@xe_copy_basic@mem-copy-linear-0xfd:
>     - shard-dg2-set2:     [SKIP][571] ([Intel XE#1123]) -> [SKIP][572] ([Intel XE#4208])
>    [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
>    [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
> 
>   * igt@xe_copy_basic@mem-set-linear-0x3fff:
>     - shard-dg2-set2:     [SKIP][573] ([Intel XE#1126]) -> [SKIP][574] ([Intel XE#4208])
>    [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x3fff.html
>    [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
> 
>   * igt@xe_copy_basic@mem-set-linear-0xfd:
>     - shard-dg2-set2:     [SKIP][575] ([Intel XE#4208]) -> [SKIP][576] ([Intel XE#1126]) +1 other test skip
>    [575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
>    [576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
> 
>   * igt@xe_eu_stall@non-blocking-re-enable:
>     - shard-dg2-set2:     [SKIP][577] ([Intel XE#5626]) -> [SKIP][578] ([Intel XE#4208]) +1 other test skip
>    [577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_eu_stall@non-blocking-re-enable.html
>    [578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_eu_stall@non-blocking-re-enable.html
> 
>   * igt@xe_eu_stall@unprivileged-access:
>     - shard-dg2-set2:     [SKIP][579] ([Intel XE#4208]) -> [SKIP][580] ([Intel XE#5626]) +1 other test skip
>    [579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eu_stall@unprivileged-access.html
>    [580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_eu_stall@unprivileged-access.html
> 
>   * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
>     - shard-dg2-set2:     [SKIP][581] ([Intel XE#4208]) -> [SKIP][582] ([Intel XE#4837]) +16 other tests skip
>    [581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
>    [582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
> 
>   * igt@xe_eudebug_online@resume-dss:
>     - shard-dg2-set2:     [SKIP][583] ([Intel XE#4837]) -> [SKIP][584] ([Intel XE#4208]) +10 other tests skip
>    [583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_eudebug_online@resume-dss.html
>    [584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_eudebug_online@resume-dss.html
> 
>   * igt@xe_exec_basic@multigpu-no-exec-basic:
>     - shard-dg2-set2:     [SKIP][585] ([Intel XE#4208]) -> [SKIP][586] ([Intel XE#1392]) +1 other test skip
>    [585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html
>    [586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic.html
> 
>   * igt@xe_exec_fault_mode@many-execqueues-basic-imm:
>     - shard-dg2-set2:     [SKIP][587] ([Intel XE#4208]) -> [SKIP][588] ([Intel XE#288]) +28 other tests skip
>    [587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
>    [588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
> 
>   * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
>     - shard-dg2-set2:     [SKIP][589] ([Intel XE#288]) -> [SKIP][590] ([Intel XE#4208]) +17 other tests skip
>    [589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
>    [590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
> 
>   * igt@xe_exec_reset@cm-cat-error:
>     - shard-adlp:         [DMESG-FAIL][591] ([Intel XE#3868]) -> [DMESG-WARN][592] ([Intel XE#3868])
>    [591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-3/igt@xe_exec_reset@cm-cat-error.html
>    [592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-adlp-6/igt@xe_exec_reset@cm-cat-error.html
> 
>   * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault:
>     - shard-dg2-set2:     [SKIP][593] ([Intel XE#4915]) -> [SKIP][594] ([Intel XE#4208]) +233 other tests skip
>    [593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html
>    [594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html
> 
>   * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
>     - shard-dg2-set2:     [SKIP][595] ([Intel XE#4208]) -> [SKIP][596] ([Intel XE#4915]) +334 other tests skip
>    [595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
>    [596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
> 
>   * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
>     - shard-dg2-set2:     [DMESG-WARN][597] ([Intel XE#5893]) -> [SKIP][598] ([Intel XE#4208])
>    [597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
>    [598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
> 
>   * igt@xe_mmap@small-bar:
>     - shard-dg2-set2:     [SKIP][599] ([Intel XE#4208]) -> [SKIP][600] ([Intel XE#512])
>    [599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_mmap@small-bar.html
>    [600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_mmap@small-bar.html
> 
>   * igt@xe_oa@closed-fd-and-unmapped-access:
>     - shard-dg2-set2:     [SKIP][601] ([Intel XE#3573]) -> [SKIP][602] ([Intel XE#4208]) +4 other tests skip
>    [601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
>    [602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
> 
>   * igt@xe_oa@mmio-triggered-reports-read:
>     - shard-dg2-set2:     [SKIP][603] ([Intel XE#5103]) -> [SKIP][604] ([Intel XE#4208])
>    [603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html
>    [604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_oa@mmio-triggered-reports-read.html
> 
>   * igt@xe_oa@polling-small-buf:
>     - shard-dg2-set2:     [SKIP][605] ([Intel XE#4208]) -> [SKIP][606] ([Intel XE#3573]) +8 other tests skip
>    [605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@polling-small-buf.html
>    [606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_oa@polling-small-buf.html
> 
>   * igt@xe_pat@pat-index-xe2:
>     - shard-dg2-set2:     [SKIP][607] ([Intel XE#977]) -> [SKIP][608] ([Intel XE#4208])
>    [607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
>    [608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
> 
>   * igt@xe_pat@pat-index-xehpc:
>     - shard-dg2-set2:     [SKIP][609] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][610] ([Intel XE#4208])
>    [609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
>    [610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
> 
>   * igt@xe_pat@pat-index-xelpg:
>     - shard-dg2-set2:     [SKIP][611] ([Intel XE#4208]) -> [SKIP][612] ([Intel XE#979])
>    [611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
>    [612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html
> 
>   * igt@xe_peer2peer@read:
>     - shard-dg2-set2:     [SKIP][613] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][614] ([Intel XE#1173]) +1 other test fail
>    [613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_peer2peer@read.html
>    [614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_peer2peer@read.html
> 
>   * igt@xe_pm@d3cold-mmap-system:
>     - shard-dg2-set2:     [SKIP][615] ([Intel XE#4208]) -> [SKIP][616] ([Intel XE#2284] / [Intel XE#366])
>    [615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
>    [616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_pm@d3cold-mmap-system.html
> 
>   * igt@xe_pm@d3hot-i2c:
>     - shard-dg2-set2:     [SKIP][617] ([Intel XE#5742]) -> [SKIP][618] ([Intel XE#4208])
>    [617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_pm@d3hot-i2c.html
>    [618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pm@d3hot-i2c.html
> 
>   * igt@xe_pmu@all-fn-engine-activity-load:
>     - shard-dg2-set2:     [SKIP][619] ([Intel XE#4208]) -> [SKIP][620] ([Intel XE#4650])
>    [619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pmu@all-fn-engine-activity-load.html
>    [620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_pmu@all-fn-engine-activity-load.html
> 
>   * igt@xe_pxp@pxp-stale-queue-post-suspend:
>     - shard-dg2-set2:     [SKIP][621] ([Intel XE#4208]) -> [SKIP][622] ([Intel XE#4733]) +1 other test skip
>    [621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pxp@pxp-stale-queue-post-suspend.html
>    [622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-433/igt@xe_pxp@pxp-stale-queue-post-suspend.html
> 
>   * igt@xe_pxp@pxp-termination-key-update-post-suspend:
>     - shard-dg2-set2:     [SKIP][623] ([Intel XE#4733]) -> [SKIP][624] ([Intel XE#4208]) +1 other test skip
>    [623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
>    [624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
> 
>   * igt@xe_query@multigpu-query-oa-units:
>     - shard-dg2-set2:     [SKIP][625] ([Intel XE#4208]) -> [SKIP][626] ([Intel XE#944]) +2 other tests skip
>    [625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
>    [626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
> 
>   * igt@xe_query@multigpu-query-uc-fw-version-guc:
>     - shard-dg2-set2:     [SKIP][627] ([Intel XE#944]) -> [SKIP][628] ([Intel XE#4208]) +2 other tests skip
>    [627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-guc.html
>    [628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html
> 
>   * igt@xe_render_copy@render-stress-2-copies:
>     - shard-dg2-set2:     [SKIP][629] ([Intel XE#4814]) -> [SKIP][630] ([Intel XE#4208])
>    [629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html
>    [630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html
> 
>   * igt@xe_render_copy@render-stress-4-copies:
>     - shard-dg2-set2:     [SKIP][631] ([Intel XE#4208]) -> [SKIP][632] ([Intel XE#4814])
>    [631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_render_copy@render-stress-4-copies.html
>    [632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html
> 
>   * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
>     - shard-dg2-set2:     [SKIP][633] ([Intel XE#4208]) -> [SKIP][634] ([Intel XE#4130])
>    [633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
>    [634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
> 
>   * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
>     - shard-dg2-set2:     [SKIP][635] ([Intel XE#4130]) -> [SKIP][636] ([Intel XE#4208])
>    [635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
>    [636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
> 
>   * igt@xe_sriov_flr@flr-vfs-parallel:
>     - shard-dg2-set2:     [SKIP][637] ([Intel XE#4208]) -> [SKIP][638] ([Intel XE#4273])
>    [637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_flr@flr-vfs-parallel.html
>    [638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-463/igt@xe_sriov_flr@flr-vfs-parallel.html
> 
>   * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
>     - shard-dg2-set2:     [SKIP][639] ([Intel XE#4208]) -> [SKIP][640] ([Intel XE#4351])
>    [639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
>    [640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/shard-dg2-466/igt@xe_sriov_scheduling@nonpreempt-engine-resets.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#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
>   [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
>   [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
>   [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
>   [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
>   [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
>   [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
>   [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
>   [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
>   [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
>   [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
>   [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
>   [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
>   [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
>   [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#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
>   [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
>   [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
>   [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
>   [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
>   [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
>   [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
>   [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
>   [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
>   [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
>   [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
>   [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
>   [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
>   [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
>   [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
>   [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
>   [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
>   [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
>   [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#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
>   [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
>   [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
>   [Intel XE#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#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
>   [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
>   [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
>   [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
>   [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
>   [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
>   [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
>   [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
>   [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
>   [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
>   [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
>   [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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
>   [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
>   [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
>   [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
>   [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
>   [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
>   [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
>   [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
>   [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
>   [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
>   [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
>   [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
>   [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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
>   [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
>   [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
>   [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
>   [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
>   [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
>   [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
>   [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
>   [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
>   [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
>   [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#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
>   [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
>   [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
>   [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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
>   [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#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
>   [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
>   [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
>   [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
>   [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
>   [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
>   [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
>   [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
>   [Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
>   [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
>   [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
>   [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
>   [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#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
>   [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
>   [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#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
>   [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
>   [Intel XE#5794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5794
>   [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
>   [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
>   [Intel XE#5941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5941
>   [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
>   [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
>   [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
>   [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
>   [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
>   [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
>   [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
>   [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
>   [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
>   [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
>   [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
>   [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
>   [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
>   [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
>   [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
>   [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
>   [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
>   [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
>   [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
>   [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_8512 -> IGT_8514
>   * Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-153589v2
> 
>   IGT_8512: 8512
>   IGT_8514: 8514
>   xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
>   xe-pw-153589v2: 153589v2
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153589v2/index.html

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

end of thread, other threads:[~2025-09-03 23:26 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 21:10 [PATCH v4 0/3] Core Xe changes preparing for VF migration Matthew Brost
2025-08-27 21:10 ` [PATCH v4 1/3] drm/xe: Save off position in ring in which a job was programmed Matthew Brost
2025-08-29 14:55   ` Lis, Tomasz
2025-08-27 21:10 ` [PATCH v4 2/3] drm/xe/guc: Track pending-enable source in submission state Matthew Brost
2025-08-29 14:56   ` Lis, Tomasz
2025-08-27 21:10 ` [PATCH v4 3/3] drm/xe: Track LR jobs in DRM scheduler pending list Matthew Brost
2025-08-29 14:56   ` Lis, Tomasz
2025-08-27 22:50 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration Patchwork
2025-08-27 23:28 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-28  0:34 ` ✗ Xe.CI.Full: failure " Patchwork
2025-08-28 20:03 ` ✓ CI.KUnit: success for Core Xe changes preparing for VF migration (rev2) Patchwork
2025-08-28 21:09 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-29  5:06 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-03 23:26   ` Matthew Brost

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).