* [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT.
@ 2026-07-06 11:48 Maarten Lankhorst
2026-07-06 11:48 ` [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() Maarten Lankhorst
` (10 more replies)
0 siblings, 11 replies; 18+ messages in thread
From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw)
To: intel-gfx; +Cc: dri-devel, Maarten Lankhorst, Sebastian Andrzej Siewior
All fixes to make the core i915 module (without display) working correctly on
PREEMPT_RT.
Some fixes are still needed, as the selftests still fail. But otherwise the
test results were looking good on PREEMPT_RT.
It looks like the patch that added a spinlock caused a regression on !PREEMPT_RT,
and may even have caused similar test failures on PREEMPT_RT, so to fix it
I removed RCU entirely, and converted to a locked implementation instead.
This time at least, i915 live selftests pass on !PREEMPRT_RT for at least 1 machine
with same config as CI.
Changes since v3:
- Fix some issues in last patch found by sashiko.
Changes since v2:
- Remove the extra signaler_active lock, it broke because
it didn't protect anything, instead use signalers_lock.
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Maarten Lankhorst (3):
drm/i915/gt: Fix selftests on PREEMPT_RT
drm/i915/gt: Set stop_timeout() correctly on PREEMPT-RT
drm/i915: Use sleeping selftests for igt_atomic on PREEMPT_RT
Sebastian Andrzej Siewior (4):
drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() +
spin_lock()
drm/i915: Drop the irqs_disabled() check
drm/i915/guc: Consider also RCU depth in busy loop.
drm/i915/gt: Use signalers_lock to prevent starvation of irq_work.
drivers/gpu/drm/i915/gt/intel_breadcrumbs.c | 172 +++++++++++-------
.../gpu/drm/i915/gt/intel_breadcrumbs_types.h | 1 -
drivers/gpu/drm/i915/gt/intel_context.c | 1 +
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 2 +-
.../drm/i915/gt/intel_execlists_submission.c | 17 +-
drivers/gpu/drm/i915/gt/selftest_engine_pm.c | 8 +-
drivers/gpu/drm/i915/gt/uc/intel_guc.h | 2 +-
drivers/gpu/drm/i915/i915_request.c | 2 -
drivers/gpu/drm/i915/selftests/igt_atomic.c | 7 +
9 files changed, 130 insertions(+), 82 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 18+ messages in thread* [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 12:03 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 2/7] drm/i915: Drop the irqs_disabled() check Maarten Lankhorst ` (9 subsequent siblings) 10 siblings, 1 reply; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx Cc: dri-devel, Sebastian Andrzej Siewior, Clark Williams, Maarten Lankhorst, Maarten Lankhorst From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> execlists_dequeue() is invoked from a function which uses local_irq_disable() to disable interrupts so the spin_lock() behaves like spin_lock_irq(). This breaks PREEMPT_RT because local_irq_disable() + spin_lock() is not the same as spin_lock_irq(). execlists_dequeue_irq() and execlists_dequeue() has each one caller only. If intel_engine_cs::active::lock is acquired and released with the _irq suffix then it behaves almost as if execlists_dequeue() would be invoked with disabled interrupts. The difference is the last part of the function which is then invoked with enabled interrupts. I can't tell if this makes a difference. From looking at it, it might work to move the last unlock at the end of the function as I didn't find anything that would acquire the lock again. Reported-by: Clark Williams <williams@redhat.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- .../drm/i915/gt/intel_execlists_submission.c | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c index e693b0c9d2a3e..841f719326756 100644 --- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c +++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c @@ -1300,7 +1300,7 @@ static void execlists_dequeue(struct intel_engine_cs *engine) * and context switches) submission. */ - spin_lock(&sched_engine->lock); + spin_lock_irq(&sched_engine->lock); /* * If the queue is higher priority than the last @@ -1400,7 +1400,7 @@ static void execlists_dequeue(struct intel_engine_cs *engine) * Even if ELSP[1] is occupied and not worthy * of timeslices, our queue might be. */ - spin_unlock(&sched_engine->lock); + spin_unlock_irq(&sched_engine->lock); return; } } @@ -1426,7 +1426,7 @@ static void execlists_dequeue(struct intel_engine_cs *engine) if (last && !can_merge_rq(last, rq)) { spin_unlock(&ve->base.sched_engine->lock); - spin_unlock(&engine->sched_engine->lock); + spin_unlock_irq(&engine->sched_engine->lock); return; /* leave this for another sibling */ } @@ -1588,7 +1588,7 @@ static void execlists_dequeue(struct intel_engine_cs *engine) */ sched_engine->queue_priority_hint = queue_prio(sched_engine); i915_sched_engine_reset_on_empty(sched_engine); - spin_unlock(&sched_engine->lock); + spin_unlock_irq(&sched_engine->lock); /* * We can skip poking the HW if we ended up with exactly the same set @@ -1614,13 +1614,6 @@ static void execlists_dequeue(struct intel_engine_cs *engine) } } -static void execlists_dequeue_irq(struct intel_engine_cs *engine) -{ - local_irq_disable(); /* Suspend interrupts across request submission */ - execlists_dequeue(engine); - local_irq_enable(); /* flush irq_work (e.g. breadcrumb enabling) */ -} - static void clear_ports(struct i915_request **ports, int count) { memset_p((void **)ports, NULL, count); @@ -2475,7 +2468,7 @@ static void execlists_submission_tasklet(struct tasklet_struct *t) } if (!engine->execlists.pending[0]) { - execlists_dequeue_irq(engine); + execlists_dequeue(engine); start_timeslice(engine); } -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() 2026-07-06 11:48 ` [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() Maarten Lankhorst @ 2026-07-06 12:03 ` sashiko-bot 0 siblings, 0 replies; 18+ messages in thread From: sashiko-bot @ 2026-07-06 12:03 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [High] Hardware MMIO submission sequence in `execlists_submit_ports()` is executed with interrupts and preemption enabled, violating the requirement for atomic hardware submission. -- commit a1c2160ec1a5e4791ddd349b07f9fe856a1bb2e5 Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de> drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() This commit replaces local_irq_disable() and spin_lock() with spin_lock_irq() to improve PREEMPT_RT compatibility, and removes the execlists_dequeue_irq() wrapper. > diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > index 1359fc9cb88ef..e11db81dca9c5 100644 > --- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > +++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c [ ... ] > @@ -1588,7 +1588,7 @@ static void execlists_dequeue(struct intel_engine_cs *engine) > */ > sched_engine->queue_priority_hint = queue_prio(sched_engine); > i915_sched_engine_reset_on_empty(sched_engine); > - spin_unlock(&sched_engine->lock); > + spin_unlock_irq(&sched_engine->lock); [Severity: High] Is it safe to unconditionally re-enable interrupts and preemption here before the hardware submission? Looking at execlists_dequeue(), shortly after this unlock the code calls execlists_submit_ports(). The Execlist Submit Port (ELSP) mechanism typically requires consecutive MMIO writes to submit hardware contexts. Previously, the entire function was wrapped in local_irq_disable() via execlists_dequeue_irq(). With spin_unlock_irq() completely enabling interrupts (and preemption on PREEMPT_RT) prior to the submission, could a hard interrupt or task preemption delay the sequence of MMIO writes? This seems like it might lead to partial submissions, hardware timeouts, or GPU hangs if the hardware submission sequence is no longer atomic. -- Sashiko AI review · https://sashiko.dev/#/patchset/20260706114823.752313-1-dev@lankhorst.se?part=1 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v4 2/7] drm/i915: Drop the irqs_disabled() check 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop Maarten Lankhorst ` (8 subsequent siblings) 10 siblings, 0 replies; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx Cc: dri-devel, Sebastian Andrzej Siewior, Maarten Lankhorst, Tvrtko Ursulin, Maarten Lankhorst From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> The !irqs_disabled() check triggers on PREEMPT_RT even with i915_sched_engine::lock acquired. The reason is the lock is transformed into a sleeping lock on PREEMPT_RT and does not disable interrupts. There is no need to check for disabled interrupts. The lockdep annotation below already check if the lock has been acquired by the caller and will yell if the interrupts are not disabled. Remove the !irqs_disabled() check. Reported-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Acked-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/i915_request.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_request.c b/drivers/gpu/drm/i915/i915_request.c index d2c7b1090df08..f66f8efc70629 100644 --- a/drivers/gpu/drm/i915/i915_request.c +++ b/drivers/gpu/drm/i915/i915_request.c @@ -610,7 +610,6 @@ bool __i915_request_submit(struct i915_request *request) RQ_TRACE(request, "\n"); - GEM_BUG_ON(!irqs_disabled()); lockdep_assert_held(&engine->sched_engine->lock); /* @@ -719,7 +718,6 @@ void __i915_request_unsubmit(struct i915_request *request) */ RQ_TRACE(request, "\n"); - GEM_BUG_ON(!irqs_disabled()); lockdep_assert_held(&engine->sched_engine->lock); /* -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop. 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 2/7] drm/i915: Drop the irqs_disabled() check Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 12:02 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT Maarten Lankhorst ` (7 subsequent siblings) 10 siblings, 1 reply; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx Cc: dri-devel, Sebastian Andrzej Siewior, John B. Wyatt IV, Rodrigo Vivi, Maarten Lankhorst From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> intel_guc_send_busy_loop() looks at in_atomic() and irqs_disabled() to decide if it should busy-spin while waiting or if it may sleep. Both checks will report false on PREEMPT_RT if sleeping spinlocks are acquired leading to RCU splats while the function sleeps. Check also if RCU has been disabled. Reported-by: "John B. Wyatt IV" <jwyatt@redhat.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/gt/uc/intel_guc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc.h b/drivers/gpu/drm/i915/gt/uc/intel_guc.h index 053780f562c1a..b25fa8f4dc4bd 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc.h +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc.h @@ -362,7 +362,7 @@ static inline int intel_guc_send_busy_loop(struct intel_guc *guc, { int err; unsigned int sleep_period_ms = 1; - bool not_atomic = !in_atomic() && !irqs_disabled(); + bool not_atomic = !in_atomic() && !irqs_disabled() && !rcu_preempt_depth(); /* * FIXME: Have caller pass in if we are in an atomic context to avoid -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop. 2026-07-06 11:48 ` [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop Maarten Lankhorst @ 2026-07-06 12:02 ` sashiko-bot 0 siblings, 0 replies; 18+ messages in thread From: sashiko-bot @ 2026-07-06 12:02 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] Looping with IRQs disabled causes soft-deadlocks and CT buffer breakage because the G2H draining tasklet cannot run. -- commit fa66d9f372062707343fef0e57e8f112f58ecabc Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de> drm/i915/guc: Consider also RCU depth in busy loop. This commit updates the not_atomic condition in intel_guc_send_busy_loop to additionally check rcu_preempt_depth. This prevents RCU splats on PREEMPT_RT systems where sleeping spinlocks are acquired, which would cause in_atomic and irqs_disabled to report false. > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc.h b/drivers/gpu/drm/i915/gt/uc/intel_guc.h > index 053780f562c1a..b25fa8f4dc4bd 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc.h > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc.h > @@ -362,7 +362,7 @@ static inline int intel_guc_send_busy_loop(struct intel_guc *guc, > { > int err; > unsigned int sleep_period_ms = 1; > - bool not_atomic = !in_atomic() && !irqs_disabled(); > + bool not_atomic = !in_atomic() && !irqs_disabled() && !rcu_preempt_depth(); [Severity: High] This isn't a bug introduced by this patch, but does spinning with IRQs disabled here cause a soft-deadlock that breaks the GuC CT buffer? If the G2H buffer fills up and intel_guc_send_nb returns -EBUSY, the code enters a busy loop. If the caller acquired spinlocks that disabled IRQs, not_atomic will evaluate to false, causing the loop to use cpu_relax instead of sleeping. Inside this process, has_room_nb is called, which attempts to drain the credits by queuing a tasklet: drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c:has_room_nb() { ... tasklet_hi_schedule(&ct->receive_tasklet); ... } This schedules the tasklet on the local CPU's tasklet list and sets TASKLET_STATE_SCHED. However, because the local CPU is spinning in cpu_relax with IRQs disabled, softirqs will never run. Since the tasklet is pinned to the local deadlocked CPU, other CPUs cannot drain the buffer even if they receive the GuC hard interrupt. The G2H buffer never drains, and after 1.5 seconds, ct_deadlocked returns true, permanently breaking the CT buffer. > > /* > * FIXME: Have caller pass in if we are in an atomic context to avoid > * using in_atomic() as it doesn't work for all configs (e.g. PREEMPT). -- Sashiko AI review · https://sashiko.dev/#/patchset/20260706114823.752313-1-dev@lankhorst.se?part=3 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (2 preceding siblings ...) 2026-07-06 11:48 ` [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 11:56 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 5/7] drm/i915/gt: Set stop_timeout() correctly on PREEMPT-RT Maarten Lankhorst ` (6 subsequent siblings) 10 siblings, 1 reply; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel, Maarten Lankhorst Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/gt/selftest_engine_pm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/selftest_engine_pm.c b/drivers/gpu/drm/i915/gt/selftest_engine_pm.c index 10e556a7eac45..c1eff9edd8a5e 100644 --- a/drivers/gpu/drm/i915/gt/selftest_engine_pm.c +++ b/drivers/gpu/drm/i915/gt/selftest_engine_pm.c @@ -277,11 +277,11 @@ static int live_engine_busy_stats(void *arg) st_engine_heartbeat_disable(engine); ENGINE_TRACE(engine, "measuring idle time\n"); - preempt_disable(); + migrate_disable(); de = intel_engine_get_busy_time(engine, &t[0]); udelay(100); de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); - preempt_enable(); + migrate_enable(); dt = ktime_sub(t[1], t[0]); if (de < 0 || de > 10) { pr_err("%s: reported %lldns [%d%%] busyness while sleeping [for %lldns]\n", @@ -316,11 +316,11 @@ static int live_engine_busy_stats(void *arg) } ENGINE_TRACE(engine, "measuring busy time\n"); - preempt_disable(); + migrate_disable(); de = intel_engine_get_busy_time(engine, &t[0]); mdelay(100); de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); - preempt_enable(); + migrate_enable(); dt = ktime_sub(t[1], t[0]); if (100 * de < 95 * dt || 95 * de > 100 * dt) { pr_err("%s: reported %lldns [%d%%] busyness while spinning [for %lldns]\n", -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT 2026-07-06 11:48 ` [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT Maarten Lankhorst @ 2026-07-06 11:56 ` sashiko-bot 0 siblings, 0 replies; 18+ messages in thread From: sashiko-bot @ 2026-07-06 11:56 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] Incomplete implementation of PREEMPT_RT fixes for i915 selftests, leaving preemption-disabled busy-waits and delays that cause deadlocks and latency spikes. -- commit c008dff1b2cefd9ee50ca924f83ff7c237a6fb3a Author: Maarten Lankhorst <dev@lankhorst.se> drm/i915/gt: Fix selftests on PREEMPT_RT This commit modifies the i915 engine PM selftest to use migrate_disable() instead of preempt_disable() around delay functions. This helps prevent latency issues on PREEMPT_RT kernels. > diff --git a/drivers/gpu/drm/i915/gt/selftest_engine_pm.c b/drivers/gpu/drm/i915/gt/selftest_engine_pm.c > index 10e556a7eac45..c1eff9edd8a5e 100644 > --- a/drivers/gpu/drm/i915/gt/selftest_engine_pm.c > +++ b/drivers/gpu/drm/i915/gt/selftest_engine_pm.c [ ... ] > @@ -316,11 +316,11 @@ static int live_engine_busy_stats(void *arg) > } > > ENGINE_TRACE(engine, "measuring busy time\n"); > - preempt_disable(); > + migrate_disable(); > de = intel_engine_get_busy_time(engine, &t[0]); > mdelay(100); > de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); > - preempt_enable(); > + migrate_enable(); [Severity: High] This isn't a bug introduced by this patch, but since this series addresses PREEMPT_RT issues in i915 selftests, are there similar preemption-disabled delays and waits remaining in other selftests that should be addressed? For example, looking at live_rps_clock_interval() in drivers/gpu/drm/i915/gt/selftest_rps.c, there is a block that disables preemption for at least 1 millisecond: preempt_disable(); cycles_[i] = -intel_uncore_read_fw(gt->uncore, GEN6_RP_CUR_UP_EI); dt_[i] = ktime_get(); udelay(1000); cycles_[i] += intel_uncore_read_fw(gt->uncore, GEN6_RP_CUR_UP_EI); dt_[i] = ktime_sub(ktime_get(), dt_[i]); preempt_enable(); Could this cause a severe latency spike on PREEMPT_RT? Additionally, in drivers/gpu/drm/i915/selftests/i915_request.c, measure_completion() disables preemption while busy-waiting for a callback: preempt_disable(); semaphore_set(sema, i); while (!READ_ONCE(cb.seen)) cpu_relax(); elapsed[i - 1] = ENGINE_READ_FW(ce->engine, RING_TIMESTAMP); preempt_enable(); If the threaded handler that executes this callback is scheduled on the same CPU on a PREEMPT_RT kernel, would this create a hard deadlock since the busy-wait loop will never yield to the handler? > dt = ktime_sub(t[1], t[0]); > if (100 * de < 95 * dt || 95 * de > 100 * dt) { > pr_err("%s: reported %lldns [%d%%] busyness while spinning [for %lldns]\n", -- Sashiko AI review · https://sashiko.dev/#/patchset/20260706114823.752313-1-dev@lankhorst.se?part=4 ^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v4 5/7] drm/i915/gt: Set stop_timeout() correctly on PREEMPT-RT 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (3 preceding siblings ...) 2026-07-06 11:48 ` [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 6/7] drm/i915: Use sleeping selftests for igt_atomic on PREEMPT_RT Maarten Lankhorst ` (5 subsequent siblings) 10 siblings, 0 replies; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel, Maarten Lankhorst Also check if RCU is disabled for PREEMPT-RT, which is the case when local_bh_disable() is called. Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/gt/intel_engine_cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c index c0fd349a4600c..9dd9665128caa 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -1607,7 +1607,7 @@ u64 intel_engine_get_last_batch_head(const struct intel_engine_cs *engine) static unsigned long stop_timeout(const struct intel_engine_cs *engine) { - if (in_atomic() || irqs_disabled()) /* inside atomic preempt-reset? */ + if (in_atomic() || irqs_disabled() || rcu_preempt_depth()) /* inside atomic preempt-reset? */ return 0; /* -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v4 6/7] drm/i915: Use sleeping selftests for igt_atomic on PREEMPT_RT 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (4 preceding siblings ...) 2026-07-06 11:48 ` [PATCH v4 5/7] drm/i915/gt: Set stop_timeout() correctly on PREEMPT-RT Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work Maarten Lankhorst ` (4 subsequent siblings) 10 siblings, 0 replies; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel, Maarten Lankhorst This makes the i915 selftests slightly happier, especially related to GPU reset. I believe this may be a better approach than trying to convert uncore->lock to raw_spinlock Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/selftests/igt_atomic.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/gpu/drm/i915/selftests/igt_atomic.c b/drivers/gpu/drm/i915/selftests/igt_atomic.c index fb506b6990956..8ae39cf570b76 100644 --- a/drivers/gpu/drm/i915/selftests/igt_atomic.c +++ b/drivers/gpu/drm/i915/selftests/igt_atomic.c @@ -39,7 +39,14 @@ static void __hardirq_end(void) local_irq_enable(); } +static void __maybe_unused __nop(void) +{} + const struct igt_atomic_section igt_atomic_phases[] = { +#if IS_ENABLED(CONFIG_PREEMPT_RT) + { "sleeping", __nop, __nop }, + { }, +#endif { "preempt", __preempt_begin, __preempt_end }, { "softirq", __softirq_begin, __softirq_end }, { "hardirq", __hardirq_begin, __hardirq_end }, -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work. 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (5 preceding siblings ...) 2026-07-06 11:48 ` [PATCH v4 6/7] drm/i915: Use sleeping selftests for igt_atomic on PREEMPT_RT Maarten Lankhorst @ 2026-07-06 11:48 ` Maarten Lankhorst 2026-07-06 12:04 ` sashiko-bot 2026-07-06 12:20 ` [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Sebastian Andrzej Siewior ` (3 subsequent siblings) 10 siblings, 1 reply; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 11:48 UTC (permalink / raw) To: intel-gfx; +Cc: dri-devel, Sebastian Andrzej Siewior, Maarten Lankhorst From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> IRQ-Work (FIFO-1) will be preempted by the threaded-interrupt (FIFO-50) and the interrupt will poll on signaler_active while the irq-work can't make progress. Solve this by adding a global spinlock to prevent starvation and force completion. The existing RCU handling gets in the way on PREEMPT_RT, and would likely require conversion to raw spinlock to take them inside a rcu_read_lock(), so remove RCU as well. Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Maarten Lankhorst <dev@lankhorst.se> --- drivers/gpu/drm/i915/gt/intel_breadcrumbs.c | 172 +++++++++++------- .../gpu/drm/i915/gt/intel_breadcrumbs_types.h | 1 - drivers/gpu/drm/i915/gt/intel_context.c | 1 + 3 files changed, 112 insertions(+), 62 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c b/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c index c10ac0ab3bfa8..0ae7759dc74a3 100644 --- a/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c +++ b/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c @@ -88,24 +88,25 @@ static void add_signaling_context(struct intel_breadcrumbs *b, struct intel_context *ce) { lockdep_assert_held(&ce->signal_lock); + lockdep_assert_held(&b->signalers_lock); - spin_lock(&b->signalers_lock); - list_add_rcu(&ce->signal_link, &b->signalers); - spin_unlock(&b->signalers_lock); + if (list_empty(&ce->signals)) + return; + + intel_context_get(ce); + list_add(&ce->signal_link, &b->signalers); } static bool remove_signaling_context(struct intel_breadcrumbs *b, struct intel_context *ce) { lockdep_assert_held(&ce->signal_lock); + lockdep_assert_held(&b->signalers_lock); - if (!list_empty(&ce->signals)) + if (!list_empty(&ce->signals) || list_empty(&ce->signal_link)) return false; - spin_lock(&b->signalers_lock); - list_del_rcu(&ce->signal_link); - spin_unlock(&b->signalers_lock); - + list_del_init(&ce->signal_link); return true; } @@ -174,7 +175,7 @@ static void signal_irq_work(struct irq_work *work) struct intel_breadcrumbs *b = container_of(work, typeof(*b), irq_work); const ktime_t timestamp = ktime_get(); struct llist_node *signal, *sn; - struct intel_context *ce; + struct intel_context *ce, *next; signal = NULL; if (unlikely(!llist_empty(&b->signaled_requests))) @@ -208,13 +209,13 @@ static void signal_irq_work(struct irq_work *work) if (!signal && READ_ONCE(b->irq_armed) && list_empty(&b->signalers)) intel_breadcrumbs_disarm_irq(b); - rcu_read_lock(); - atomic_inc(&b->signaler_active); - list_for_each_entry_rcu(ce, &b->signalers, signal_link) { + spin_lock(&b->signalers_lock); + list_for_each_entry_safe(ce, next, &b->signalers, signal_link) { struct i915_request *rq; + bool release; - list_for_each_entry_rcu(rq, &ce->signals, signal_link) { - bool release; + spin_lock(&ce->signal_lock); + while ((rq = list_first_entry_or_null(&ce->signals, typeof(*rq), signal_link))) { if (!__i915_request_is_complete(rq)) break; @@ -228,15 +229,9 @@ static void signal_irq_work(struct irq_work *work) * spinlock as the callback chain may end up adding * more signalers to the same context or engine. */ - spin_lock(&ce->signal_lock); - list_del_rcu(&rq->signal_link); - release = remove_signaling_context(b, ce); - spin_unlock(&ce->signal_lock); - if (release) { - if (intel_timeline_is_last(ce->timeline, rq)) - add_retire(b, ce->timeline); - intel_context_put(ce); - } + list_del(&rq->signal_link); + if (list_empty(&ce->signals) && intel_timeline_is_last(ce->timeline, rq)) + add_retire(b, ce->timeline); if (__dma_fence_signal(&rq->fence)) /* We own signal_node now, xfer to local list */ @@ -244,9 +239,13 @@ static void signal_irq_work(struct irq_work *work) else i915_request_put(rq); } + + release = remove_signaling_context(b, ce); + spin_unlock(&ce->signal_lock); + if (release) + intel_context_put(ce); } - atomic_dec(&b->signaler_active); - rcu_read_unlock(); + spin_unlock(&b->signalers_lock); llist_for_each_safe(signal, sn, signal) { struct i915_request *rq = @@ -347,14 +346,15 @@ static void irq_signal_request(struct i915_request *rq, irq_work_queue(&b->irq_work); } -static void insert_breadcrumb(struct i915_request *rq) +static bool insert_breadcrumb(struct i915_request *rq, + struct intel_breadcrumbs *b) { - struct intel_breadcrumbs *b = READ_ONCE(rq->engine)->breadcrumbs; struct intel_context *ce = rq->context; struct list_head *pos; + bool ret; if (test_bit(I915_FENCE_FLAG_SIGNAL, &rq->fence.flags)) - return; + return false; /* * If the request is already completed, we can transfer it @@ -363,14 +363,15 @@ static void insert_breadcrumb(struct i915_request *rq) */ if (__i915_request_is_complete(rq)) { irq_signal_request(rq, b); - return; + return false; } if (list_empty(&ce->signals)) { - intel_context_get(ce); - add_signaling_context(b, ce); + ret = true; pos = &ce->signals; } else { + ret = false; + /* * We keep the seqno in retirement order, so we can break * inside intel_engine_signal_breadcrumbs as soon as we've @@ -395,23 +396,19 @@ static void insert_breadcrumb(struct i915_request *rq) } i915_request_get(rq); - list_add_rcu(&rq->signal_link, pos); + list_add(&rq->signal_link, pos); GEM_BUG_ON(!check_signal_order(ce, rq)); GEM_BUG_ON(test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &rq->fence.flags)); set_bit(I915_FENCE_FLAG_SIGNAL, &rq->fence.flags); - /* - * Defer enabling the interrupt to after HW submission and recheck - * the request as it may have completed and raised the interrupt as - * we were attaching it into the lists. - */ - if (!READ_ONCE(b->irq_armed) || __i915_request_is_complete(rq)) - irq_work_queue(&b->irq_work); + return ret; } bool i915_request_enable_breadcrumb(struct i915_request *rq) { struct intel_context *ce = rq->context; + struct intel_breadcrumbs *b; + bool add_context = false; /* Serialises with i915_request_retire() using rq->lock */ if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &rq->fence.flags)) @@ -427,30 +424,87 @@ bool i915_request_enable_breadcrumb(struct i915_request *rq) return true; spin_lock(&ce->signal_lock); + b = READ_ONCE(rq->engine)->breadcrumbs; + if (test_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags)) - insert_breadcrumb(rq); + add_context = insert_breadcrumb(rq, b); + + if (add_context && spin_trylock(&b->signalers_lock)) { + add_signaling_context(b, ce); + spin_unlock(&b->signalers_lock); + add_context = false; + } spin_unlock(&ce->signal_lock); + if (add_context) { + /* + * Fast trylock didn't work, use slow locking. + * + * Dropping the lock to solve the inversion is safe, since + * no race is possible against remove_signaling_context() + * without being added as signaling context. + */ + spin_lock(&b->signalers_lock); + spin_lock(&ce->signal_lock); + add_signaling_context(b, ce); + spin_unlock(&ce->signal_lock); + spin_unlock(&b->signalers_lock); + } + + /* + * Defer enabling the interrupt to after HW submission and recheck + * the request as it may have completed and raised the interrupt as + * we were attaching it into the lists. + */ + if (!READ_ONCE(b->irq_armed) || __i915_request_is_complete(rq)) + irq_work_queue(&b->irq_work); + return true; } + +static void unlock_context_remove_signaling(struct intel_context *ce, + struct intel_breadcrumbs *b, + unsigned long flags) +{ + bool release = false, retry = false; + + if (list_empty(&ce->signals)) { + if (spin_trylock(&b->signalers_lock)) { + release = remove_signaling_context(b, ce); + spin_unlock(&b->signalers_lock); + } else { + retry = true; + } + } + spin_unlock_irqrestore(&ce->signal_lock, flags); + + if (retry) { + spin_lock_irqsave(&b->signalers_lock, flags); + spin_lock(&ce->signal_lock); + release = remove_signaling_context(b, ce); + spin_unlock(&ce->signal_lock); + spin_unlock_irqrestore(&b->signalers_lock, flags); + } + + if (release) + intel_context_put(ce); +} + void i915_request_cancel_breadcrumb(struct i915_request *rq) { struct intel_breadcrumbs *b = READ_ONCE(rq->engine)->breadcrumbs; struct intel_context *ce = rq->context; - bool release; + unsigned long flags; - spin_lock(&ce->signal_lock); + spin_lock_irqsave(&ce->signal_lock, flags); if (!test_and_clear_bit(I915_FENCE_FLAG_SIGNAL, &rq->fence.flags)) { - spin_unlock(&ce->signal_lock); + spin_unlock_irqrestore(&ce->signal_lock, flags); return; } - list_del_rcu(&rq->signal_link); - release = remove_signaling_context(b, ce); - spin_unlock(&ce->signal_lock); - if (release) - intel_context_put(ce); + list_del(&rq->signal_link); + unlock_context_remove_signaling(ce, b, flags); if (__i915_request_is_complete(rq)) irq_signal_request(rq, b); @@ -462,7 +516,6 @@ void intel_context_remove_breadcrumbs(struct intel_context *ce, struct intel_breadcrumbs *b) { struct i915_request *rq, *rn; - bool release = false; unsigned long flags; spin_lock_irqsave(&ce->signal_lock, flags); @@ -476,39 +529,36 @@ void intel_context_remove_breadcrumbs(struct intel_context *ce, &rq->fence.flags)) continue; - list_del_rcu(&rq->signal_link); + list_del(&rq->signal_link); irq_signal_request(rq, b); i915_request_put(rq); } - release = remove_signaling_context(b, ce); unlock: - spin_unlock_irqrestore(&ce->signal_lock, flags); - if (release) - intel_context_put(ce); - - while (atomic_read(&b->signaler_active)) - cpu_relax(); + unlock_context_remove_signaling(ce, b, flags); } static void print_signals(struct intel_breadcrumbs *b, struct drm_printer *p) { struct intel_context *ce; struct i915_request *rq; + unsigned long flags; drm_printf(p, "Signals:\n"); - rcu_read_lock(); - list_for_each_entry_rcu(ce, &b->signalers, signal_link) { - list_for_each_entry_rcu(rq, &ce->signals, signal_link) + spin_lock_irqsave(&b->signalers_lock, flags); + list_for_each_entry(ce, &b->signalers, signal_link) { + spin_lock(&ce->signal_lock); + list_for_each_entry(rq, &ce->signals, signal_link) drm_printf(p, "\t[%llx:%llx%s] @ %dms\n", rq->fence.context, rq->fence.seqno, __i915_request_is_complete(rq) ? "!" : __i915_request_has_started(rq) ? "*" : "", jiffies_to_msecs(jiffies - rq->emitted_jiffies)); + spin_unlock(&ce->signal_lock); } - rcu_read_unlock(); + spin_unlock_irqrestore(&b->signalers_lock, flags); } void intel_engine_print_breadcrumbs(struct intel_engine_cs *engine, diff --git a/drivers/gpu/drm/i915/gt/intel_breadcrumbs_types.h b/drivers/gpu/drm/i915/gt/intel_breadcrumbs_types.h index bdf09fd67b6e7..648e5600587b4 100644 --- a/drivers/gpu/drm/i915/gt/intel_breadcrumbs_types.h +++ b/drivers/gpu/drm/i915/gt/intel_breadcrumbs_types.h @@ -39,7 +39,6 @@ struct intel_breadcrumbs { spinlock_t signalers_lock; /* protects the list of signalers */ struct list_head signalers; struct llist_head signaled_requests; - atomic_t signaler_active; spinlock_t irq_lock; /* protects the interrupt from hardirq context */ struct irq_work irq_work; /* for use from inside irq_lock */ diff --git a/drivers/gpu/drm/i915/gt/intel_context.c b/drivers/gpu/drm/i915/gt/intel_context.c index b1b8695ba7c97..b938ff5be7b80 100644 --- a/drivers/gpu/drm/i915/gt/intel_context.c +++ b/drivers/gpu/drm/i915/gt/intel_context.c @@ -409,6 +409,7 @@ intel_context_init(struct intel_context *ce, struct intel_engine_cs *engine) /* NB ce->signal_link/lock is used under RCU */ spin_lock_init(&ce->signal_lock); INIT_LIST_HEAD(&ce->signals); + INIT_LIST_HEAD(&ce->signal_link); mutex_init(&ce->pin_mutex); -- 2.53.0 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work. 2026-07-06 11:48 ` [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work Maarten Lankhorst @ 2026-07-06 12:04 ` sashiko-bot 0 siblings, 0 replies; 18+ messages in thread From: sashiko-bot @ 2026-07-06 12:04 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: dri-devel Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: - [Critical] Dropping `ce->signal_lock` to avoid lock inversion in `i915_request_enable_breadcrumb` allows concurrent threads to double-add a context to the `b->signalers` list, corrupting the list and leaking `intel_context` references. -- commit 51101492996df475bcd91b7f36bd0af9680441f1 Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de> drm/i915/gt: Use signalers_lock to prevent starvation of irq_work. This patch adds a global spinlock to prevent starvation of irq_work by the threaded interrupt and removes the existing RCU handling. > diff --git a/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c b/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c > index c10ac0ab3bfa8..0ae7759dc74a3 100644 > --- a/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c > +++ b/drivers/gpu/drm/i915/gt/intel_breadcrumbs.c > @@ -88,24 +88,25 @@ static void add_signaling_context(struct intel_breadcrumbs *b, > struct intel_context *ce) > { > lockdep_assert_held(&ce->signal_lock); > + lockdep_assert_held(&b->signalers_lock); > > - spin_lock(&b->signalers_lock); > - list_add_rcu(&ce->signal_link, &b->signalers); > - spin_unlock(&b->signalers_lock); > + if (list_empty(&ce->signals)) > + return; > + > + intel_context_get(ce); > + list_add(&ce->signal_link, &b->signalers); > } [Severity: Critical] Could this unconditionally corrupt the signalers list? If add_signaling_context() is called concurrently for the same context, it will call list_add() without verifying whether ce->signal_link is already linked, leading to list corruption and a leak of intel_context objects. [ ... ] > @@ -427,30 +424,87 @@ bool i915_request_enable_breadcrumb(struct i915_request *rq) > return true; > > spin_lock(&ce->signal_lock); > + b = READ_ONCE(rq->engine)->breadcrumbs; > + > if (test_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags)) > - insert_breadcrumb(rq); > + add_context = insert_breadcrumb(rq, b); > + > + if (add_context && spin_trylock(&b->signalers_lock)) { > + add_signaling_context(b, ce); > + spin_unlock(&b->signalers_lock); > + add_context = false; > + } > spin_unlock(&ce->signal_lock); > > + if (add_context) { > + /* > + * Fast trylock didn't work, use slow locking. > + * > + * Dropping the lock to solve the inversion is safe, since > + * no race is possible against remove_signaling_context() > + * without being added as signaling context. > + */ > + spin_lock(&b->signalers_lock); > + spin_lock(&ce->signal_lock); > + add_signaling_context(b, ce); > + spin_unlock(&ce->signal_lock); > + spin_unlock(&b->signalers_lock); > + } [Severity: Critical] Does dropping ce->signal_lock here create a race condition that leads to the double-add in add_signaling_context()? If multiple threads attempt to enable breadcrumbs for the same context and fail the fast trylock, they will drop ce->signal_lock and enter the slow path. This can allow a sequence where: Thread 1 calls i915_request_enable_breadcrumb() for rq1, gets add_context = true, fails the trylock, drops ce->signal_lock, and waits on the slow path. Thread 2 cancels rq1, making ce->signals empty again. Thread 3 calls i915_request_enable_breadcrumb() for rq3. Because ce->signals is empty, it also gets add_context = true. It fails the trylock, drops the lock, and waits on the slow path. Thread 1 and Thread 3 sequentially acquire the locks in the slow path and both call add_signaling_context(). Since Thread 3 added rq3, ce->signals is not empty. Both threads will then execute intel_context_get() and list_add() unconditionally, permanently corrupting the doubly-linked list. Should add_signaling_context() verify that list_empty(&ce->signal_link) is true before calling list_add() to prevent this regression? -- Sashiko AI review · https://sashiko.dev/#/patchset/20260706114823.752313-1-dev@lankhorst.se?part=7 ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT. 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (6 preceding siblings ...) 2026-07-06 11:48 ` [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work Maarten Lankhorst @ 2026-07-06 12:20 ` Sebastian Andrzej Siewior 2026-07-06 12:51 ` Maarten Lankhorst 2026-07-06 14:49 ` ✗ i915.CI.BAT: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev4) Patchwork ` (2 subsequent siblings) 10 siblings, 1 reply; 18+ messages in thread From: Sebastian Andrzej Siewior @ 2026-07-06 12:20 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: intel-gfx, dri-devel On 2026-07-06 13:48:16 [+0200], Maarten Lankhorst wrote: > All fixes to make the core i915 module (without display) working correctly on > PREEMPT_RT. > > Some fixes are still needed, as the selftests still fail. But otherwise the > test results were looking good on PREEMPT_RT. > > It looks like the patch that added a spinlock caused a regression on !PREEMPT_RT, > and may even have caused similar test failures on PREEMPT_RT, so to fix it > I removed RCU entirely, and converted to a locked implementation instead. > > This time at least, i915 live selftests pass on !PREEMPRT_RT for at least 1 machine > with same config as CI. I saw the version counter overflowed and is at 4 here. I appreciate all the work. May I ask how are things? Sebastian ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT. 2026-07-06 12:20 ` [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Sebastian Andrzej Siewior @ 2026-07-06 12:51 ` Maarten Lankhorst 0 siblings, 0 replies; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-06 12:51 UTC (permalink / raw) To: Sebastian Andrzej Siewior; +Cc: intel-gfx, dri-devel Hey, On 7/6/26 14:20, Sebastian Andrzej Siewior wrote: > On 2026-07-06 13:48:16 [+0200], Maarten Lankhorst wrote: >> All fixes to make the core i915 module (without display) working correctly on >> PREEMPT_RT. >> >> Some fixes are still needed, as the selftests still fail. But otherwise the >> test results were looking good on PREEMPT_RT. >> >> It looks like the patch that added a spinlock caused a regression on !PREEMPT_RT, >> and may even have caused similar test failures on PREEMPT_RT, so to fix it >> I removed RCU entirely, and converted to a locked implementation instead. >> >> This time at least, i915 live selftests pass on !PREEMPRT_RT for at least 1 machine >> with same config as CI. > > I saw the version counter overflowed and is at 4 here. I appreciate all > the work. May I ask how are things? I'm fixing the bugs in core i915 with this specific PREEMPT_RT series, and left out the display changes. This showed that the failures in i915's selftests were at least partially related to the PREEMPT_RT changes in the last patch. Hopefully v4 passes CI and if you want, you can review those changes so they can be merged. Looks like sashiko is great at finding concurrency bugs, changing from RCU back to a normal lock is non-trivial. It unfortunately found 1 more in add_signaling_context for a missing !list_empty(&ce->signal_link), but should be safe to review regardless. Kind regards, ~Maarten ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ i915.CI.BAT: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev4) 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (7 preceding siblings ...) 2026-07-06 12:20 ` [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Sebastian Andrzej Siewior @ 2026-07-06 14:49 ` Patchwork 2026-07-07 2:39 ` ✓ i915.CI.BAT: success for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) Patchwork 2026-07-07 9:58 ` ✗ i915.CI.Full: failure " Patchwork 10 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2026-07-06 14:49 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2405 bytes --] == Series Details == Series: drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev4) URL : https://patchwork.freedesktop.org/series/169677/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18765 -> Patchwork_169677v4 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_169677v4 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_169677v4, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v4/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_169677v4: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@ring_submission: - bat-arlh-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18765/bat-arlh-2/igt@i915_selftest@live@ring_submission.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v4/bat-arlh-2/igt@i915_selftest@live@ring_submission.html Known issues ------------ Here are the changes found in Patchwork_169677v4 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-2: [PASS][3] -> [INCOMPLETE][4] ([i915#16547]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18765/bat-arlh-2/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v4/bat-arlh-2/igt@i915_selftest@live.html [i915#16547]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16547 Build changes ------------- * Linux: CI_DRM_18765 -> Patchwork_169677v4 CI-20190529: 20190529 CI_DRM_18765: 9179ea89567d036ecc9013cc27af4a367aeb14b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8990: 8990 Patchwork_169677v4: 9179ea89567d036ecc9013cc27af4a367aeb14b9 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v4/index.html [-- Attachment #2: Type: text/html, Size: 3031 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (8 preceding siblings ...) 2026-07-06 14:49 ` ✗ i915.CI.BAT: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev4) Patchwork @ 2026-07-07 2:39 ` Patchwork 2026-07-07 9:58 ` ✗ i915.CI.Full: failure " Patchwork 10 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2026-07-07 2:39 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1036 bytes --] == Series Details == Series: drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) URL : https://patchwork.freedesktop.org/series/169677/ State : success == Summary == CI Bug Log - changes from CI_DRM_18772 -> Patchwork_169677v5 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Changes ------- No changes found Build changes ------------- * Linux: CI_DRM_18772 -> Patchwork_169677v5 CI-20190529: 20190529 CI_DRM_18772: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8990: 8990 Patchwork_169677v5: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/index.html [-- Attachment #2: Type: text/html, Size: 1601 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst ` (9 preceding siblings ...) 2026-07-07 2:39 ` ✓ i915.CI.BAT: success for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) Patchwork @ 2026-07-07 9:58 ` Patchwork 2026-07-08 15:54 ` Maarten Lankhorst 10 siblings, 1 reply; 18+ messages in thread From: Patchwork @ 2026-07-07 9:58 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 129248 bytes --] == Series Details == Series: drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) URL : https://patchwork.freedesktop.org/series/169677/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18772_full -> Patchwork_169677v5_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_169677v5_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_169677v5_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 (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_169677v5_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_persistence@smoketest: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_ctx_persistence@smoketest.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_ctx_persistence@smoketest.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk2/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html Known issues ------------ Here are the changes found in Patchwork_169677v5_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@dmabuf@all-tests: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#15931]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@dmabuf@all-tests.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#15678]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#13008]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#13356] / [i915#16348]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#4525]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#6334]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_endless@dispatch@ccs0: - shard-dg2: [PASS][24] -> [TIMEOUT][25] ([i915#3778] / [i915#7016]) +1 other test timeout [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@gem_exec_endless@dispatch@ccs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@gem_exec_endless@dispatch@ccs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-concurrent0: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#14544] / [i915#3281]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_suspend@basic-s3: - shard-glk11: NOTRUN -> [INCOMPLETE][31] ([i915#13196] / [i915#13356]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][33] ([i915#4613]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#284]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4077]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@bad-object: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4083]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3282]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#13398]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_render_copy@yf-tiled: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5190] / [i915#8428]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_render_copy@yf-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4885]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][46] -> [ABORT][47] ([i915#15131]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-8/igt@gem_softpin@noreloc-s3.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#15657]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#3297]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#4880]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281] / [i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][55] +69 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#2527] / [i915#2856]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#2527]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#2527]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#2856]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#11527]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html * igt@i915_drm_fdinfo@busy-idle@vecs0: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#14073]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@i915_drm_fdinfo@busy-idle@vecs0.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#14118]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#8399]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#8399]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#6590]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#14498]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglu: [PASS][68] -> [FAIL][69] ([i915#16543]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-3/igt@i915_pm_rpm@system-suspend-execbuf.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#6245]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#16109]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#5723]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: NOTRUN -> [INCOMPLETE][73] ([i915#16182] / [i915#4817]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-rkl: [PASS][74] -> [INCOMPLETE][75] ([i915#4817]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@i915_suspend@forcewake.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#7707]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4212]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#12454] / [i915#12712]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#9531]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#1769] / [i915#3555]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][81] ([i915#1769]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1769] / [i915#3555]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#5286]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4538] / [i915#5286]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#5286]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#5286]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#15733] / [i915#5138]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3828]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][90] +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3638]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4538] / [i915#5190]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#12313]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#6095]) +131 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#12313]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#6095]) +34 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#10307] / [i915#6095]) +90 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6095]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#14098] / [i915#6095]) +39 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#15582]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#12313]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6095]) +19 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#6095]) +61 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#14544] / [i915#3742]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#3742]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#11151]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#11151]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#16471]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#16471]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11151] / [i915#7828]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#11151] / [i915#7828]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-rkl: NOTRUN -> [SKIP][115] ([i915#11151] / [i915#14544] / [i915#7828]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#11151] / [i915#7828]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#15865]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#15330]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#15330] / [i915#3116]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#15865]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#15865]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#15865]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#13049]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#3555]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][126] -> [FAIL][127] ([i915#13566]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#13049]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#13566]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-5/igt@kms_cursor_crc@cursor-random-64x21.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-4/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#13049] / [i915#3359]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#13049]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#13049]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][134] ([i915#13566]) +2 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#4103]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#13046] / [i915#5354]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][137] ([i915#15804]) +1 other test fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-dg1: [PASS][138] -> [FAIL][139] ([i915#15999]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-15/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#9067]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4103]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#13691]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#3555] / [i915#3804]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555] / [i915#3804]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3804]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14544] / [i915#3804]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [PASS][147] -> [SKIP][148] ([i915#3555]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#13749]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#13707]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#16361]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#16361]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#16361]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#16361]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#16084]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#16081]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#16081]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#658]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#3637] / [i915#9934]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3637] / [i915#9934]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#9934]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#9934]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-glk: [PASS][163] -> [FAIL][164] ([i915#10826]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_flip@flip-vs-absolute-wf_vblank.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk2/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][165] ([i915#16276] / [i915#6113]) +1 other test incomplete [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#15643]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#15643]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#15643]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#15643]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#15643] / [i915#5190]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][171] -> [SKIP][172] ([i915#15672]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][173] +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#15989]) +9 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#15989]) +15 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][176] +67 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#15991]) +19 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt: - shard-glk: [PASS][178] -> [SKIP][179] +8 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][180] +118 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#15990] / [i915#8708]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#14544]) +7 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#1825]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][184] +62 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][185] +237 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#15102]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#15102]) +16 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][188] +50 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#15102]) +25 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#15989]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#15989]) +16 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#15990]) +13 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-rkl: [PASS][193] -> [SKIP][194] ([i915#15989]) +15 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][195] -> [SKIP][196] ([i915#15989]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#15989]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#15104] / [i915#15990]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#15102] / [i915#3023]) +10 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#15102]) +14 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#15990] / [i915#8708]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15991] / [i915#5354]) +16 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#15102]) +31 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#15990]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#16518] / [i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#16518] / [i915#3555] / [i915#8228]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: NOTRUN -> [ABORT][212] ([i915#15132]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#15460]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#15459]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#15458]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#13688]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#15458]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#6301]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#13409] / [i915#13476]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#14712]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#15709]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#16386]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#15709]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15709]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#15709]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#16386]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-4: - shard-glk11: NOTRUN -> [SKIP][227] +72 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-4.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#16112]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][229] ([i915#10647] / [i915#12169]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][230] ([i915#10647]) +3 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@overlay: - shard-rkl: [PASS][231] -> [FAIL][232] ([i915#15912]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane_cursor@overlay.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128: - shard-rkl: NOTRUN -> [FAIL][233] ([i915#15913]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64: - shard-rkl: NOTRUN -> [FAIL][234] ([i915#15912]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64.html * igt@kms_plane_lowres@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#13958]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#14259]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#13046] / [i915#5354] / [i915#9423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#6953] / [i915#9423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15329]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#15329] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#15329]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#15329]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#12343]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#12343] / [i915#9812]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#15948]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3828]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4077]) +6 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][250] -> [SKIP][251] ([i915#15073]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#15073]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#15073]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg1: [PASS][255] -> [SKIP][256] ([i915#15073]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk11: NOTRUN -> [INCOMPLETE][257] ([i915#10553]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html - shard-rkl: [PASS][258] -> [INCOMPLETE][259] ([i915#14419]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#6524]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#6524]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#6524] / [i915#6805]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#6524]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#11520]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][267] ([i915#11520]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][268] ([i915#11520]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html - shard-snb: NOTRUN -> [SKIP][269] ([i915#11520]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#11520]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][271] ([i915#11520]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#11520]) +5 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#9683]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-no-drrs: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +12 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9732]) +14 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#15949]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][281] ([i915#15492] / [i915#16184]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12755] / [i915#15867] / [i915#5190]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5190]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][286] ([i915#13179]) +1 other test abort [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@kms_selftest@drm_framebuffer.html - shard-glk10: NOTRUN -> [ABORT][287] ([i915#13179]) +1 other test abort [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#8623]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][289] ([i915#12276]) +1 other test incomplete [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][290] ([i915#12276]) +1 other test incomplete [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#9906]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][292] ([i915#9906]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#3555]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#11920]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#2436]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [PASS][297] -> [FAIL][298] ([i915#4349]) +2 other tests fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-1/igt@perf_pmu@busy-double-start.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-6/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [ABORT][299] ([i915#13029] / [i915#15778]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#8516]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_udl@share-import: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#16420]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@prime_udl@share-import.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#3291] / [i915#3708]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#16066]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#16066]) +9 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#9917]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][306] ([i915#13356] / [i915#16348]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_capture@pi: - shard-dg1: [ABORT][308] ([i915#13562]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@gem_exec_capture@pi.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_capture@pi.html * igt@gem_exec_capture@pi@rcs0: - shard-dg1: [ABORT][310] -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@gem_exec_capture@pi@rcs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_capture@pi@rcs0.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][312] ([i915#13356] / [i915#13820]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][314] ([i915#13566]) -> [PASS][315] +2 other tests pass [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][316] ([i915#13566]) -> [PASS][317] +1 other test pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_flip@blocking-wf_vblank: - shard-dg1: [DMESG-WARN][318] ([i915#4423]) -> [PASS][319] +2 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-16/igt@kms_flip@blocking-wf_vblank.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-19/igt@kms_flip@blocking-wf_vblank.html * igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][320] ([i915#15989]) -> [PASS][321] +9 other tests pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt: - shard-glk: [SKIP][322] -> [PASS][323] +3 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@static-swap: - shard-rkl: [SKIP][324] ([i915#3555] / [i915#8228]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_hdr@static-swap.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_hdr@static-swap.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [INCOMPLETE][326] ([i915#12756] / [i915#13476]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][328] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][330] ([i915#15073]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][332] ([i915#15073]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][334] ([i915#15073]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][336] ([i915#12276]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][338] ([i915#11078] / [i915#14544]) -> [SKIP][339] ([i915#11078]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@device_reset@cold-reset-bound.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@device_reset@cold-reset-bound.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][340] ([i915#14544] / [i915#4525]) -> [SKIP][341] ([i915#4525]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][342] ([i915#14544] / [i915#6334]) -> [SKIP][343] ([i915#6334]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-rkl: [SKIP][344] ([i915#3281]) -> [SKIP][345] ([i915#14544] / [i915#3281]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: [SKIP][346] ([i915#14544] / [i915#3281]) -> [SKIP][347] ([i915#3281]) +5 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][348] ([i915#14544] / [i915#4613]) -> [SKIP][349] ([i915#4613]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: [SKIP][350] ([i915#4613]) -> [SKIP][351] ([i915#14544] / [i915#4613]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][352] ([i915#14544] / [i915#3282]) -> [SKIP][353] ([i915#3282]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-rkl: [SKIP][354] ([i915#3282]) -> [SKIP][355] ([i915#14544] / [i915#3282]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_readwrite@new-obj.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_readwrite@new-obj.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][356] ([i915#14544] / [i915#3297]) -> [SKIP][357] ([i915#3297]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: [SKIP][358] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][359] ([i915#3281] / [i915#3297]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_userptr_blits@relocations.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][360] ([i915#3297]) -> [SKIP][361] ([i915#14544] / [i915#3297]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: [SKIP][362] ([i915#2527]) -> [SKIP][363] ([i915#14544] / [i915#2527]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gen9_exec_parse@basic-rejected.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][364] ([i915#14544] / [i915#2527]) -> [SKIP][365] ([i915#2527]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gen9_exec_parse@bb-start-out.html * igt@i915_query@query-topology-known-pci-ids: - shard-rkl: [SKIP][366] ([i915#14544] / [i915#16109]) -> [SKIP][367] ([i915#16109]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][368] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][369] ([i915#1769] / [i915#3555]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][370] ([i915#5286]) -> [SKIP][371] ([i915#14544] / [i915#5286]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#5286]) -> [SKIP][373] ([i915#5286]) +2 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][374] ([i915#14544] / [i915#3638]) -> [SKIP][375] ([i915#3638]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][376] ([i915#3638]) -> [SKIP][377] ([i915#14544] / [i915#3638]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][378] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][379] ([i915#14098] / [i915#6095]) +7 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][380] ([i915#14544] / [i915#6095]) -> [SKIP][381] ([i915#6095]) +5 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][382] ([i915#12313] / [i915#14544]) -> [SKIP][383] ([i915#12313]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][384] ([i915#14098] / [i915#6095]) -> [SKIP][385] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][386] ([i915#6095]) -> [SKIP][387] ([i915#14544] / [i915#6095]) +3 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][388] ([i915#12805] / [i915#14544]) -> [SKIP][389] ([i915#12805]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][390] ([i915#15582]) -> [INCOMPLETE][391] ([i915#14694] / [i915#15582]) +1 other test incomplete [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][392] ([i915#12313]) -> [SKIP][393] ([i915#12313] / [i915#14544]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3742]) -> [SKIP][395] ([i915#3742]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-dg1: [SKIP][396] ([i915#11151]) -> [SKIP][397] ([i915#11151] / [i915#4423]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_chamelium_audio@dp-audio-after-suspend.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#16471]) -> [SKIP][399] ([i915#16471]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][400] ([i915#11151] / [i915#7828]) -> [SKIP][401] ([i915#11151] / [i915#14544] / [i915#7828]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][402] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][403] ([i915#11151] / [i915#7828]) +3 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][404] ([i915#7173]) -> [SKIP][405] ([i915#15865]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_content_protection@legacy.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][406] ([i915#15865]) -> [SKIP][407] ([i915#14544] / [i915#15865]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_content_protection@uevent-hdcp14.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][408] ([i915#13049] / [i915#14544]) -> [SKIP][409] ([i915#13049]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: [SKIP][410] ([i915#13049] / [i915#3359]) -> [SKIP][411] ([i915#13049]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x512.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg1: [SKIP][412] -> [SKIP][413] ([i915#4423]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][414] ([i915#13691] / [i915#14544]) -> [SKIP][415] ([i915#13691]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev@basic: - shard-rkl: [SKIP][416] ([i915#1257] / [i915#14544]) -> [SKIP][417] ([i915#1257]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_dp_aux_dev@basic.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_dp_aux_dev@basic.html * igt@kms_dsc@dsc-with-formats-ultrajoiner: - shard-rkl: [SKIP][418] ([i915#16361]) -> [SKIP][419] ([i915#14544] / [i915#16361]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_dsc@dsc-with-formats-ultrajoiner.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dsc@dsc-with-formats-ultrajoiner.html * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#16361]) -> [SKIP][421] ([i915#16361]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#16081]) -> [SKIP][423] ([i915#16081]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg1: [SKIP][424] ([i915#4423] / [i915#658]) -> [SKIP][425] ([i915#658]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-16/igt@kms_feature_discovery@psr1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][426] ([i915#14544] / [i915#9934]) -> [SKIP][427] ([i915#9934]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][428] ([i915#9934]) -> [SKIP][429] ([i915#14544] / [i915#9934]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_flip@2x-blocking-wf_vblank.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#15643]) -> [SKIP][431] ([i915#15643]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile: - shard-rkl: [SKIP][432] ([i915#15643]) -> [SKIP][433] ([i915#14544] / [i915#15643]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#1825]) -> [SKIP][435] ([i915#1825]) +4 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][436] ([i915#1825]) -> [SKIP][437] ([i915#14544] / [i915#1825]) +4 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][438] ([i915#15989]) -> [SKIP][439] ([i915#15989] / [i915#4423]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][441] ([i915#15102] / [i915#3023]) +12 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][442] ([i915#15102]) -> [SKIP][443] ([i915#14544] / [i915#15102]) +5 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][444] -> [SKIP][445] ([i915#14544]) +18 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#9766]) -> [SKIP][447] ([i915#9766]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][448] ([i915#15102] / [i915#3023]) -> [SKIP][449] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][450] ([i915#15102]) -> [SKIP][451] ([i915#10433] / [i915#15102]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: [SKIP][452] ([i915#14544]) -> [SKIP][453] +55 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-slowdraw: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#15102]) -> [SKIP][455] ([i915#15102]) +15 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][456] ([i915#3555] / [i915#8228]) -> [ABORT][457] ([i915#15132]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#15458]) -> [SKIP][459] ([i915#15458]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#15709]) -> [SKIP][461] ([i915#15709]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane_lowres@tiling-4: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3555]) -> [SKIP][463] ([i915#3555]) +2 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#15739]) -> [SKIP][465] ([i915#15739]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][466] ([i915#11520] / [i915#14544]) -> [SKIP][467] ([i915#11520]) +2 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][468] ([i915#11520]) -> [SKIP][469] ([i915#11520] / [i915#14544]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-rkl: [SKIP][470] ([i915#1072] / [i915#9732]) -> [SKIP][471] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_psr@fbc-psr-sprite-plane-move.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][472] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][473] ([i915#1072] / [i915#9732]) +12 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg1: [SKIP][474] ([i915#1072] / [i915#9732]) -> [SKIP][475] ([i915#1072] / [i915#4423] / [i915#9732]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-17/igt@kms_psr@pr-cursor-plane-onoff.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-16/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: [SKIP][476] ([i915#15867]) -> [SKIP][477] ([i915#12755] / [i915#15867]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#5289]) -> [SKIP][479] ([i915#5289]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][480] ([i915#11920] / [i915#14544]) -> [SKIP][481] ([i915#11920]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_vrr@lobf.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_vrr@lobf.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#2436]) -> [SKIP][483] ([i915#2436]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][484] ([i915#9100]) -> [FAIL][485] ([i915#3089]) +1 other test fail [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#3708]) -> [SKIP][487] ([i915#3708]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#9917]) -> [SKIP][489] ([i915#9917]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16543 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3089]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3089 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_18772 -> Patchwork_169677v5 CI-20190529: 20190529 CI_DRM_18772: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8990: 8990 Patchwork_169677v5: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/index.html [-- Attachment #2: Type: text/html, Size: 170537 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: ✗ i915.CI.Full: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) 2026-07-07 9:58 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-07-08 15:54 ` Maarten Lankhorst 0 siblings, 0 replies; 18+ messages in thread From: Maarten Lankhorst @ 2026-07-08 15:54 UTC (permalink / raw) To: intel-gfx Hello, On 7/7/26 11:58, Patchwork wrote: > *Patch Details* > *Series:* drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) > *URL:* https://patchwork.freedesktop.org/series/169677/ <https://patchwork.freedesktop.org/series/169677/> > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/index.html <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/index.html> > > > CI Bug Log - changes from CI_DRM_18772_full -> Patchwork_169677v5_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_169677v5_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_169677v5_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 (10 -> 10) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in Patchwork_169677v5_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_ctx_persistence@smoketest: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_ctx_persistence@smoketest.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_ctx_persistence@smoketest.html> > * It's been hard to reproduce this specific bug, but when I look at https://gitlab.freedesktop.org/search?group_id=402251&scope=work_items&search=gem_ctx_persistence+incomplete it seems to be a pre-existing bug. I believe the locking changes cause us to receive useful logs instead. > igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk2/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html> > > > Known issues > > Here are the changes found in Patchwork_169677v5_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@object-reloc-keep-cache: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > * > > igt@dmabuf@all-tests: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@dmabuf@all-tests.html> (i915#15931 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931>) > * > > igt@drm_buddy@drm_buddy: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@drm_buddy@drm_buddy.html> (i915#15678 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678>) > * > > igt@gem_basic@multigpu-create-close: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_basic@multigpu-create-close.html> (i915#7697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_ccs@block-copy-compressed: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_ccs@block-multicopy-compressed: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_ccs@large-ctrl-surf-copy: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>) > * > > igt@gem_ccs@suspend-resume: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ccs@suspend-resume.html> (i915#9323 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: > > o shard-dg2: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html> (i915#13356 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#16348 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348>) > * > > igt@gem_close_race@multigpu-basic-process: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html> (i915#7697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_create@create-ext-cpu-access-sanity-check: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html> (i915#6335 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) > * > > igt@gem_ctx_persistence@heartbeat-many: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-many.html> (i915#8555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_persistence@legacy-engines-persistence: > > o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html> (i915#1099 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) +1 other test skip > * > > igt@gem_ctx_sseu@engines: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_ctx_sseu@engines.html> (i915#280 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_ctx_sseu@mmap-args: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html> (i915#280 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) +1 other test skip > * > > igt@gem_exec_balancer@parallel: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_exec_balancer@parallel.html> (i915#4525 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +2 other tests skip > * > > igt@gem_exec_balancer@parallel-ordering: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > * > > igt@gem_exec_capture@capture-invisible@lmem0: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_exec_capture@capture-invisible@lmem0.html> (i915#6334 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +2 other tests skip > * > > igt@gem_exec_capture@capture-invisible@smem0: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip > * > > igt@gem_exec_endless@dispatch@ccs0: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@gem_exec_endless@dispatch@ccs0.html> -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@gem_exec_endless@dispatch@ccs0.html> (i915#3778 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778> / i915#7016 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016>) +1 other test timeout > * > > igt@gem_exec_flush@basic-batch-kernel-default-cmd: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (i915#3539 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > * > > igt@gem_exec_reloc@basic-concurrent0: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +1 other test skip > * > > igt@gem_exec_reloc@basic-gtt-cpu-active: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +6 other tests skip > * > > igt@gem_exec_reloc@basic-wc-cpu-noreloc: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > * > > igt@gem_exec_reloc@basic-write-read-noreloc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +8 other tests skip > * > > igt@gem_exec_suspend@basic-s3: > > o shard-glk11: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@gem_exec_suspend@basic-s3.html> (i915#13196 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196> / i915#13356 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) +1 other test incomplete > * > > igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> (i915#4860 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > * > > igt@gem_lmem_swapping@massive: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@gem_lmem_swapping@massive.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@parallel-multi: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip > * > > igt@gem_lmem_swapping@parallel-random: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_lmem_swapping@parallel-random.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip > * > > igt@gem_lmem_swapping@verify-ccs: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip > * > > igt@gem_media_vme: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_media_vme.html> (i915#284 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) > * > > igt@gem_mmap_gtt@cpuset-medium-copy-odd: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@gem_mmap_wc@bad-object: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_mmap_wc@bad-object.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > * > > igt@gem_mmap_wc@write-wc-read-gtt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip > * > > igt@gem_partial_pwrite_pread@reads-snoop: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-snoop.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip > * > > igt@gem_pxp@hw-rejects-pxp-context: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13398 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>) > * > > igt@gem_render_copy@yf-tiled: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_render_copy@yf-tiled.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +2 other tests skip > * > > igt@gem_softpin@evict-snoop-interruptible: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html> (i915#4885 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>) > * > > igt@gem_softpin@noreloc-s3: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-8/igt@gem_softpin@noreloc-s3.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@gem_softpin@noreloc-s3.html> (i915#15131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>) > * > > igt@gem_tiled_pread_basic@basic: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gem_tiled_pread_basic@basic.html> (i915#15657 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657>) > * > > igt@gem_tiled_pread_pwrite: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_tiled_pread_pwrite.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_userptr_blits@access-control: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gem_userptr_blits@access-control.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip > * > > igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) +1 other test skip > * > > igt@gem_userptr_blits@relocations: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@gem_userptr_blits@relocations.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> / i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@unsync-unmap-cycles: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gen9_exec_parse@basic-rejected-ctx-param: > > o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@gen9_exec_parse@basic-rejected-ctx-param.html> +69 other tests skip > * > > igt@gen9_exec_parse@batch-without-end: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@gen9_exec_parse@batch-without-end.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@bb-large: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gen9_exec_parse@bb-large.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@bb-start-cmd: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip > * > > igt@gen9_exec_parse@bb-start-far: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +2 other tests skip > * > > igt@gen9_exec_parse@shadow-peek: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html> (i915#2856 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@i915_drm_fdinfo@busy-idle-check-all@vcs0: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html> (i915#11527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>) +7 other tests skip > * > > igt@i915_drm_fdinfo@busy-idle@vecs0: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@i915_drm_fdinfo@busy-idle@vecs0.html> (i915#14073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +7 other tests skip > * > > igt@i915_drm_fdinfo@virtual-busy-hang: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@i915_drm_fdinfo@virtual-busy-hang.html> (i915#14118 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118>) > * > > igt@i915_pm_freq_api@freq-basic-api: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html> (i915#8399 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip > * > > igt@i915_pm_freq_api@freq-reset-multiple: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) > * > > igt@i915_pm_freq_mult@media-freq@gt0: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) +1 other test skip > * > > igt@i915_pm_rc6_residency@rc6-idle: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#14498 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498>) > * > > igt@i915_pm_rpm@system-suspend-execbuf: > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-3/igt@i915_pm_rpm@system-suspend-execbuf.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#16543 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16543>) > * > > igt@i915_query@hwconfig_table: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@i915_query@hwconfig_table.html> (i915#6245 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) > * > > igt@i915_query@query-topology-known-pci-ids: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html> (i915#16109 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109>) > * > > igt@i915_query@test-query-geometry-subslices: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html> (i915#5723 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) > * > > igt@i915_suspend@fence-restore-untiled: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@i915_suspend@fence-restore-untiled.html> (i915#16182 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182> / i915#4817 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > * > > igt@i915_suspend@forcewake: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@i915_suspend@forcewake.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@i915_suspend@forcewake.html> (i915#4817 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > * > > igt@intel_hwmon@hwmon-read: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@intel_hwmon@hwmon-read.html> (i915#7707 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) > * > > igt@kms_addfb_basic@clobberred-modifier: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html> (i915#4212 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > * > > igt@kms_addfb_basic@invalid-smem-bo-on-discrete: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>) > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>) > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-8bpp-rotate-0: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip > * > > igt@kms_big_fb@4-tiled-8bpp-rotate-90: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +4 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#15733 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733> / i915#5138 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) > * > > igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#3828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) +3 other tests skip > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-270: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> +3 other tests skip > * > > igt@kms_big_fb@x-tiled-32bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> (i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +4 other tests skip > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) > * > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +2 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +131 other tests skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +90 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +8 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#15582 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) +1 other test incomplete > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +19 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +61 other tests skip > * > > igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip > * > > igt@kms_cdclk@mode-transition: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_cdclk@mode-transition.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3742 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_cdclk@mode-transition.html> (i915#3742 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_chamelium_audio@dp-audio-after-suspend: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_audio@dp-audio-after-suspend.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>) > * > > igt@kms_chamelium_audio@hdmi-audio-after-suspend: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>) > * > > igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html> (i915#16471 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471>) > * > > igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html> (i915#16471 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471>) +2 other tests skip > * > > igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip > * > > igt@kms_chamelium_frames@dp-crc-single: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_frames@hdmi-aspect-ratio: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_frames@hdmi-crc-fast: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-storm: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip > * > > igt@kms_content_protection@atomic-dpms: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > * > > igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html> (i915#15330 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#15330 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> / i915#3116 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > * > > igt@kms_content_protection@legacy: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_content_protection@legacy.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) +1 other test skip > * > > igt@kms_content_protection@mei-interface: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_content_protection@mei-interface.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) +2 other tests skip > * > > igt@kms_content_protection@srm: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_content_protection@srm.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) +1 other test skip > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip > * > > igt@kms_cursor_crc@cursor-onscreen-32x32: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +6 other tests skip > * > > igt@kms_cursor_crc@cursor-onscreen-64x21: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html> (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) > * > > igt@kms_cursor_crc@cursor-random-512x170: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-random-64x21: > > o shard-tglu: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-5/igt@kms_cursor_crc@cursor-random-64x21.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-4/igt@kms_cursor_crc@cursor-random-64x21.html> (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049> / i915#3359 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) > * > > igt@kms_cursor_crc@cursor-sliding-512x170: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-sliding-512x512: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html> (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +2 other tests fail > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (i915#13046 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > o shard-glk: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#15804 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804>) +1 other test fail > * > > igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: > > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-15/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html> (i915#15999 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999>) > * > > igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_display_modes@extended-mode-basic.html> (i915#13691 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3804 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3804 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> (i915#3804 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3804 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dither@fb-8bpc-vs-panel-8bpc: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_dp_link_training@non-uhbr-mst: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) > * > > igt@kms_dp_linktrain_fallback@dp-fallback: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#13707 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > * > > igt@kms_dsc@dsc-fractional-bpp: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) +1 other test skip > * > > igt@kms_dsc@dsc-with-output-formats: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) +1 other test skip > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) +1 other test skip > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) +1 other test skip > * > > igt@kms_feature_discovery@chamelium: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_feature_discovery@chamelium.html> (i915#16084 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084>) > * > > igt@kms_feature_discovery@display-2x: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_feature_discovery@display-2x.html> (i915#16081 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081>) > * > > igt@kms_feature_discovery@display-3x: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_feature_discovery@display-3x.html> (i915#16081 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081>) > * > > igt@kms_feature_discovery@psr2: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_feature_discovery@psr2.html> (i915#658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > * > > igt@kms_flip@2x-absolute-wf_vblank: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html> (i915#3637 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip > * > > igt@kms_flip@2x-dpms-vs-vblank-race: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_flip@2x-dpms-vs-vblank-race.html> (i915#3637 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip > * > > igt@kms_flip@2x-flip-vs-panning-vs-hang: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +5 other tests skip > * > > igt@kms_flip@2x-wf_vblank-ts-check-interruptible: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip > * > > igt@kms_flip@flip-vs-absolute-wf_vblank: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_flip@flip-vs-absolute-wf_vblank.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk2/igt@kms_flip@flip-vs-absolute-wf_vblank.html> (i915#10826 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826>) > * > > igt@kms_flip@flip-vs-suspend: > > o shard-rkl: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html> (i915#16276 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276> / i915#6113 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) +1 other test incomplete > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_force_connector_basic@prune-stale-modes: > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html> (i915#15672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> +7 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-pgflip-blt.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +9 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +15 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-pwrite.html> +67 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html> (i915#15991 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991>) +19 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt: > > o shard-glk: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html> +8 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: > > o shard-glk10: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> +118 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990> / i915#8708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +6 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +7 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +3 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> +62 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html> +237 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +5 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +16 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-onoff: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-onoff.html> +50 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +25 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-pwrite: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +5 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +16 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html> (i915#15990 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>) +13 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +15 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +3 other tests skip > * > > igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) +2 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html> (i915#15104 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104> / i915#15990 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +10 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +14 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#15990 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990> / i915#8708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +4 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html> (i915#15991 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991> / i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +16 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +31 other tests skip > * > > igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#15990 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990>) +4 other tests skip > * > > igt@kms_hdr@bpc-switch-dpms: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html> (i915#16518 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@invalid-hdr: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_hdr@invalid-hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@invalid-metadata-sizes: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-toggle-dpms: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html> (i915#16518 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f: > > o shard-rkl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html> (i915#15132 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>) > * > > igt@kms_joiner@basic-big-joiner: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html> (i915#15460 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460>) > * > > igt@kms_joiner@basic-force-big-joiner: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_joiner@basic-force-big-joiner.html> (i915#15459 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > * > > igt@kms_joiner@basic-force-ultra-joiner: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#15458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) > * > > igt@kms_joiner@basic-max-non-joiner: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > * > > igt@kms_joiner@invalid-modeset-ultra-joiner: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (i915#15458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) > * > > igt@kms_panel_fitting@atomic-fastset: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html> (i915#13409 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409> / i915#13476 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>) > * > > igt@kms_pipe_stress@stress-xrgb8888-yftiled: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (i915#14712 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>) > * > > igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html> (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html> (i915#16386 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386>) +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html> (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html> (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +2 other tests skip > * > > igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html> (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) +2 other tests skip > * > > igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html> (i915#16386 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386>) +1 other test skip > * > > igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-4: > > o shard-glk11: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-4.html> +72 other tests skip > * > > igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html> (i915#16112 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112>) > * > > igt@kms_plane_alpha_blend@alpha-opaque-fb: > > o shard-glk10: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> (i915#10647 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> / i915#12169 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) +1 other test fail > * > > igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: > > o shard-glk10: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html> (i915#10647 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +3 other tests fail > * > > igt@kms_plane_cursor@overlay: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane_cursor@overlay.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay.html> (i915#15912 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912>) > * > > igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html> (i915#15913 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913>) +1 other test fail > * > > igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64: > > o shard-rkl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64.html> (i915#15912 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912>) > * > > igt@kms_plane_lowres@tiling-yf: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_plane_lowres@tiling-yf.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_plane_multiple@2x-tiling-4: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html> (i915#13958 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) +1 other test skip > * > > igt@kms_plane_multiple@tiling-y: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html> (i915#14259 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) > * > > igt@kms_plane_scaling@2x-scaler-multi-pipe: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (i915#13046 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354> / i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html> (i915#15329 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +4 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> (i915#15329 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html> (i915#15329 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +6 other tests skip > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html> (i915#15329 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +4 other tests skip > * > > igt@kms_pm_backlight@brightness-with-dpms: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_pm_backlight@brightness-with-dpms.html> (i915#12343 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>) > * > > igt@kms_pm_backlight@fade-with-dpms: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html> (i915#12343 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343> / i915#9812 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) > * > > igt@kms_pm_dc@dc5-psr: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html> (i915#15948 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948>) > * > > igt@kms_pm_dc@dc5-retention-flops: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_pm_rpm@fences-dpms: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_pm_rpm@fences-dpms.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +6 other tests skip > * > > igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-dg2: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip > o shard-dg1: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_pm_rpm@system-suspend-modeset: > > o shard-glk11: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html> (i915#10553 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553>) > o shard-rkl: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html> (i915#14419 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>) > * > > igt@kms_prime@basic-crc-hybrid: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_prime@basic-crc-vgem: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html> (i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: > > o shard-glk11: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-glk10: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip > o shard-snb: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: > > o shard-glk: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip > * > > igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip > * > > igt@kms_psr2_su@page_flip-p010: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr@fbc-psr2-primary-mmap-gtt: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html> (i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip > * > > igt@kms_psr@pr-no-drrs: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr@pr-no-drrs.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip > * > > igt@kms_psr@psr-sprite-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip > * > > igt@kms_psr@psr2-primary-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +12 other tests skip > * > > igt@kms_psr@psr2-sprite-mmap-cpu: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +13 other tests skip > * > > igt@kms_psr@psr2-sprite-mmap-gtt: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> (i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip > * > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#15949 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949>) > * > > igt@kms_rotation_crc@multiplane-rotation: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_rotation_crc@multiplane-rotation.html> (i915#15492 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492> / i915#16184 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184>) > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (i915#12755 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#15867 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: > > o shard-dg1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_scaling_modes@scaling-mode-full: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_scaling_modes@scaling-mode-full.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_selftest@drm_framebuffer: > > o shard-snb: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-snb4/igt@kms_selftest@drm_framebuffer.html> (i915#13179 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other test abort > o shard-glk10: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_selftest@drm_framebuffer.html> (i915#13179 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other test abort > * > > igt@kms_tiled_display@basic-test-pattern-with-chamelium: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) > * > > igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: > > o shard-glk: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html> (i915#12276 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) +1 other test incomplete > * > > igt@kms_vblank@ts-continuation-suspend: > > o shard-glk10: NOTRUN -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html> (i915#12276 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) +1 other test incomplete > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@flip-suspend: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@kms_vrr@flip-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip > * > > igt@kms_vrr@lobf: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@kms_vrr@lobf.html> (i915#11920 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) > * > > igt@kms_vrr@seamless-rr-switch-vrr: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@perf@gen8-unprivileged-single-ctx-counters: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-10/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) > * > > igt@perf_pmu@busy-double-start: > > o shard-mtlp: PASS <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-mtlp-1/igt@perf_pmu@busy-double-start.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-mtlp-6/igt@perf_pmu@busy-double-start.html> (i915#4349 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +2 other tests fail > * > > igt@perf_pmu@module-unload: > > o shard-dg2: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@perf_pmu@module-unload.html> (i915#13029 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> / i915#15778 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > * > > igt@perf_pmu@rc6-all-gts: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html> (i915#8516 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) +1 other test skip > * > > igt@prime_udl@share-import: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@prime_udl@share-import.html> (i915#16420 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420>) > * > > igt@prime_vgem@basic-write: > > o shard-rkl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@prime_vgem@basic-write.html> (i915#3291 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@sriov_basic@bind-unbind-vf@vf-4: > > o shard-tglu: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-10/igt@sriov_basic@bind-unbind-vf@vf-4.html> (i915#16066 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066>) +9 other tests skip > * > > igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: > > o shard-tglu-1: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html> (i915#16066 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066>) +9 other tests skip > * > > igt@sriov_basic@enable-vfs-bind-unbind-each: > > o shard-dg2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > > > Possible fixes > > * > > igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: > > o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> (i915#13356 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#16348 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> > * > > igt@gem_exec_capture@pi: > > o shard-dg1: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@gem_exec_capture@pi.html> (i915#13562 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_capture@pi.html> > * > > igt@gem_exec_capture@pi@rcs0: > > o shard-dg1: ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@gem_exec_capture@pi@rcs0.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-18/igt@gem_exec_capture@pi@rcs0.html> > * > > igt@i915_pm_freq_api@freq-suspend@gt0: > > o shard-dg2: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html> (i915#13356 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#13820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html> +1 other test pass > * > > igt@kms_cursor_crc@cursor-onscreen-128x42: > > o shard-rkl: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html> (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html> +2 other tests pass > * > > igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: > > o shard-tglu: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-tglu-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html> (i915#13566 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html> +1 other test pass > * > > igt@kms_flip@blocking-wf_vblank: > > o shard-dg1: DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-16/igt@kms_flip@blocking-wf_vblank.html> (i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-19/igt@kms_flip@blocking-wf_vblank.html> +2 other tests pass > * > > igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html> +9 other tests pass > * > > igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt: > > o shard-glk: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html> -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-msflip-blt.html> +3 other tests pass > * > > igt@kms_hdr@static-swap: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_hdr@static-swap.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_hdr@static-swap.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc: > > o shard-rkl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html> (i915#12756 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756> / i915#13476 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: > > o shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> (i915#12756 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756> / i915#13409 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409> / i915#13476 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> > * > > igt@kms_pm_rpm@dpms-lpsp: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html> > * > > igt@kms_pm_rpm@modeset-lpsp: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html> > * > > igt@kms_pm_rpm@modeset-non-lpsp: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#15073 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html> +1 other test pass > * > > igt@kms_vblank@ts-continuation-suspend: > > o shard-rkl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend.html> (i915#12276 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html> > > > Warnings > > * > > igt@device_reset@cold-reset-bound: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@device_reset@cold-reset-bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@device_reset@cold-reset-bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) > * > > igt@gem_exec_balancer@parallel-contexts: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html> (i915#4525 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > * > > igt@gem_exec_capture@capture-invisible@smem0: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6334 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip > * > > igt@gem_exec_reloc@basic-wc-gtt: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_exec_reloc@basic-wc-gtt.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +1 other test skip > * > > igt@gem_exec_reloc@basic-write-read-active: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@massive-random: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_readwrite@beyond-eob: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_readwrite@beyond-eob.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gem_readwrite@beyond-eob.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip > * > > igt@gem_readwrite@new-obj: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gem_readwrite@new-obj.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_readwrite@new-obj.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip > * > > igt@gem_userptr_blits@relocations: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gem_userptr_blits@relocations.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> / i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@gem_userptr_blits@relocations.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> / i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@unsync-unmap-after-close: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gen9_exec_parse@basic-rejected: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@gen9_exec_parse@basic-rejected.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@bb-start-out: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@gen9_exec_parse@bb-start-out.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@i915_query@query-topology-known-pci-ids: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#16109 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html> (i915#16109 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109>) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-270: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-90: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html> (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html> (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +7 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +5 other tests skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +3 other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +3 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (i915#12805 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (i915#12805 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: > > o shard-glk: INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#15582 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#14694 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694> / i915#15582 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) +1 other test incomplete > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3742 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_chamelium_audio@dp-audio-after-suspend: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_chamelium_audio@dp-audio-after-suspend.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_chamelium_audio@dp-audio-after-suspend.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#16471 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html> (i915#16471 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471>) > * > > igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_hpd@vga-hpd-fast: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip > * > > igt@kms_content_protection@legacy: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_content_protection@legacy.html> (i915#7173 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_content_protection@legacy.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > * > > igt@kms_content_protection@uevent-hdcp14: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_content_protection@uevent-hdcp14.html> (i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15865 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) +1 other test skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-sliding-512x512: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049> / i915#3359 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> (i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html> (i915#13691 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html> (i915#13691 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>) > * > > igt@kms_dp_aux_dev@basic: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_dp_aux_dev@basic.html> (i915#1257 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_dp_aux_dev@basic.html> (i915#1257 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) > * > > igt@kms_dsc@dsc-with-formats-ultrajoiner: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_dsc@dsc-with-formats-ultrajoiner.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_dsc@dsc-with-formats-ultrajoiner.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) > * > > igt@kms_dsc@dsc-with-output-formats-ultrajoiner: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html> (i915#16361 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361>) > * > > igt@kms_feature_discovery@display-4x: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_feature_discovery@display-4x.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#16081 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_feature_discovery@display-4x.html> (i915#16081 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081>) > * > > igt@kms_feature_discovery@psr1: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-16/igt@kms_feature_discovery@psr1.html> (i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-19/igt@kms_feature_discovery@psr1.html> (i915#658 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > * > > igt@kms_flip@2x-absolute-wf_vblank-interruptible: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip > * > > igt@kms_flip@2x-blocking-wf_vblank: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_flip@2x-blocking-wf_vblank.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html> (i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15643 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +4 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +4 other tests skip > * > > igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html> (i915#15989 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989> / i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +5 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +18 other tests skip > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9766 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +5 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html> (i915#10433 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > * > > igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html> +55 other tests skip > * > > igt@kms_frontbuffer_tracking@psrhdr-slowdraw: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html> (i915#15102 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +15 other tests skip > * > > igt@kms_hdr@static-toggle-suspend: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html> (i915#15132 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132>) > * > > igt@kms_joiner@basic-ultra-joiner: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html> (i915#15458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) > * > > igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html> (i915#15709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > * > > igt@kms_plane_lowres@tiling-4: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_plane_lowres@tiling-4.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip > * > > igt@kms_pm_dc@dc9-dpms: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15739 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html> (i915#15739 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739>) > * > > igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip > * > > igt@kms_psr@fbc-psr-sprite-plane-move: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-7/igt@kms_psr@fbc-psr-sprite-plane-move.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +3 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-render: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +12 other tests skip > * > > igt@kms_psr@pr-cursor-plane-onoff: > > o shard-dg1: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg1-17/igt@kms_psr@pr-cursor-plane-onoff.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg1-16/igt@kms_psr@pr-cursor-plane-onoff.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > * > > igt@kms_rotation_crc@bad-pixel-format: > > o shard-dg2: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html> (i915#15867 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@kms_rotation_crc@bad-pixel-format.html> (i915#12755 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#15867 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_vrr@lobf: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@kms_vrr@lobf.html> (i915#11920 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920> / i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@kms_vrr@lobf.html> (i915#11920 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) > * > > igt@perf@gen8-unprivileged-single-ctx-counters: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2436 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) > * > > igt@perf@non-zero-reason@0-rcs0: > > o shard-dg2: FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html> (i915#9100 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html> (i915#3089 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3089>) +1 other test fail > * > > igt@prime_vgem@fence-read-hang: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@prime_vgem@fence-read-hang.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-2/igt@prime_vgem@fence-read-hang.html> (i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@sriov_basic@enable-vfs-autoprobe-on: > > o shard-rkl: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18772/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html> (i915#14544 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169677v5/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html> (i915#9917 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > > > Build changes > > * Linux: CI_DRM_18772 -> Patchwork_169677v5 > > CI-20190529: 20190529 > CI_DRM_18772: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_8990: 8990 > Patchwork_169677v5: 6085bbba363b5c5b1f0e0420a9d7ecfd8ccea907 @ git://anongit.freedesktop.org/gfx-ci/linux > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2026-07-08 15:53 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-06 11:48 [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 1/7] drm/i915/gt: Use spin_lock_irq() instead of local_irq_disable() + spin_lock() Maarten Lankhorst 2026-07-06 12:03 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 2/7] drm/i915: Drop the irqs_disabled() check Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 3/7] drm/i915/guc: Consider also RCU depth in busy loop Maarten Lankhorst 2026-07-06 12:02 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 4/7] drm/i915/gt: Fix selftests on PREEMPT_RT Maarten Lankhorst 2026-07-06 11:56 ` sashiko-bot 2026-07-06 11:48 ` [PATCH v4 5/7] drm/i915/gt: Set stop_timeout() correctly on PREEMPT-RT Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 6/7] drm/i915: Use sleeping selftests for igt_atomic on PREEMPT_RT Maarten Lankhorst 2026-07-06 11:48 ` [PATCH v4 7/7] drm/i915/gt: Use signalers_lock to prevent starvation of irq_work Maarten Lankhorst 2026-07-06 12:04 ` sashiko-bot 2026-07-06 12:20 ` [PATCH v4 0/7] drm/i915: All fixes to make i915 work well with PREEMPT_RT Sebastian Andrzej Siewior 2026-07-06 12:51 ` Maarten Lankhorst 2026-07-06 14:49 ` ✗ i915.CI.BAT: failure for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev4) Patchwork 2026-07-07 2:39 ` ✓ i915.CI.BAT: success for drm/i915: All fixes to make i915 work well with PREEMPT_RT. (rev5) Patchwork 2026-07-07 9:58 ` ✗ i915.CI.Full: failure " Patchwork 2026-07-08 15:54 ` Maarten Lankhorst
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.