* [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases
@ 2026-01-27 17:04 Zhanjun Dong
2026-01-27 17:04 ` [PATCH v4 1/5] drm/xe: Always kill exec queues in xe_guc_submit_pause_abort Zhanjun Dong
` (7 more replies)
0 siblings, 8 replies; 19+ messages in thread
From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
We have several bug reports [1], [2], [3] describing failures in reset,
wedge, and unload corner cases where memory is not properly freed or
fences fail to signal. This patch attempts to address the issue by
forcefully killing any remaining queues on driver unload and wedging the
device if not in mode 2.
Zhanjun Dong
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466
[2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530
[3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029
---
History started from v2 (v1 not found):
v4:
- Make guc_submit_fini a devm managed action
- Squash patch 2 with 6 from v3
- Commit message update (Matthew)
v3:
- Add patch 3-6 in series
- For "Trigger queue cleanup if not in wedged mode 2":
Add guc_ct_stop and reset prepare in patch of:
Sync with baseline changes
Matthew Brost (3):
drm/xe: Always kill exec queues in xe_guc_submit_pause_abort
drm/xe: Forcefully tear down exec queues in GuC submit fini
drm/xe: Trigger queue cleanup if not in wedged mode 2
Zhanjun Dong (2):
drm/xe/guc: Ensure CT state transitions via STOP before DISABLED
drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup
drivers/gpu/drm/xe/xe_guc_ct.c | 1 +
drivers/gpu/drm/xe/xe_guc_submit.c | 68 +++++++++++++++++++-----------
drivers/gpu/drm/xe/xe_uc.c | 2 -
3 files changed, 45 insertions(+), 26 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 19+ messages in thread* [PATCH v4 1/5] drm/xe: Always kill exec queues in xe_guc_submit_pause_abort 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong @ 2026-01-27 17:04 ` Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 2/5] drm/xe: Forcefully tear down exec queues in GuC submit fini Zhanjun Dong ` (6 subsequent siblings) 7 siblings, 0 replies; 19+ messages in thread From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw) To: intel-xe; +Cc: Matthew Brost, stable, Zhanjun Dong, Stuart Summers From: Matthew Brost <matthew.brost@intel.com> xe_guc_submit_pause_abort is intended to be called after something disastrous occurs (e.g., VF migration fails, device wedging, or driver unload) and should immediately trigger the teardown of remaining submission state. With that, kill any remaining queues in this function. Fixes: 7c4b7e34c83b ("drm/xe/vf: Abort VF post migration recovery on failure") Cc: stable@vger.kernel.org Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Stuart Summers <stuart.summers@intel.com> --- drivers/gpu/drm/xe/xe_guc_submit.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c index 456f549c16f6..d61bd0094e0b 100644 --- a/drivers/gpu/drm/xe/xe_guc_submit.c +++ b/drivers/gpu/drm/xe/xe_guc_submit.c @@ -2774,8 +2774,7 @@ void xe_guc_submit_pause_abort(struct xe_guc *guc) continue; xe_sched_submission_start(sched); - if (exec_queue_killed_or_banned_or_wedged(q)) - xe_guc_exec_queue_trigger_cleanup(q); + guc_exec_queue_kill(q); } mutex_unlock(&guc->submission_state.lock); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH v4 2/5] drm/xe: Forcefully tear down exec queues in GuC submit fini 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 1/5] drm/xe: Always kill exec queues in xe_guc_submit_pause_abort Zhanjun Dong @ 2026-01-27 17:04 ` Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 Zhanjun Dong ` (5 subsequent siblings) 7 siblings, 0 replies; 19+ messages in thread From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw) To: intel-xe; +Cc: Matthew Brost, stable, Zhanjun Dong From: Matthew Brost <matthew.brost@intel.com> In GuC submit fini, forcefully tear down any exec queues by disabling CTs, stopping the scheduler (which cleans up lost G2H), killing all remaining queues, and resuming scheduling to allow any remaining cleanup actions to complete and signal any remaining fences. guc_submit_fini requires access to device hardware. Using a device-managed action guarantees the correct ordering of cleanup. v3: - Add page fault fix v2: - Fix VF failure (CI) Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs") Cc: stable@vger.kernel.org Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_guc_submit.c | 31 +++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c index d61bd0094e0b..92ea32423838 100644 --- a/drivers/gpu/drm/xe/xe_guc_submit.c +++ b/drivers/gpu/drm/xe/xe_guc_submit.c @@ -239,13 +239,21 @@ static bool exec_queue_killed_or_banned_or_wedged(struct xe_exec_queue *q) EXEC_QUEUE_STATE_BANNED)); } -static void guc_submit_fini(struct drm_device *drm, void *arg) +static int __xe_guc_submit_reset_prepare(struct xe_guc *guc); + +static void guc_submit_fini(void *arg) { struct xe_guc *guc = arg; struct xe_device *xe = guc_to_xe(guc); struct xe_gt *gt = guc_to_gt(guc); int ret; + /* Forcefully kill any remaining exec queues */ + xe_guc_ct_stop(&guc->ct); + __xe_guc_submit_reset_prepare(guc); + xe_guc_submit_stop(guc); + xe_guc_submit_pause_abort(guc); + ret = wait_event_timeout(guc->submission_state.fini_wq, xa_empty(&guc->submission_state.exec_queue_lookup), HZ * 5); @@ -326,7 +334,7 @@ int xe_guc_submit_init(struct xe_guc *guc, unsigned int num_ids) guc->submission_state.initialized = true; - return drmm_add_action_or_reset(&xe->drm, guc_submit_fini, guc); + return devm_add_action_or_reset(xe->drm.dev, guc_submit_fini, guc); } /* @@ -2354,16 +2362,10 @@ static void guc_exec_queue_stop(struct xe_guc *guc, struct xe_exec_queue *q) } } -int xe_guc_submit_reset_prepare(struct xe_guc *guc) +static int __xe_guc_submit_reset_prepare(struct xe_guc *guc) { int ret; - if (xe_gt_WARN_ON(guc_to_gt(guc), vf_recovery(guc))) - return 0; - - if (!guc->submission_state.initialized) - return 0; - /* * Using an atomic here rather than submission_state.lock as this * function can be called while holding the CT lock (engine reset @@ -2378,6 +2380,17 @@ int xe_guc_submit_reset_prepare(struct xe_guc *guc) return ret; } +int xe_guc_submit_reset_prepare(struct xe_guc *guc) +{ + if (xe_gt_WARN_ON(guc_to_gt(guc), vf_recovery(guc))) + return 0; + + if (!guc->submission_state.initialized) + return 0; + + return __xe_guc_submit_reset_prepare(guc); +} + void xe_guc_submit_reset_wait(struct xe_guc *guc) { wait_event(guc->ct.wq, xe_device_wedged(guc_to_xe(guc)) || -- 2.34.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 1/5] drm/xe: Always kill exec queues in xe_guc_submit_pause_abort Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 2/5] drm/xe: Forcefully tear down exec queues in GuC submit fini Zhanjun Dong @ 2026-01-27 17:04 ` Zhanjun Dong 2026-01-27 22:02 ` Michal Wajdeczko 2026-01-27 17:04 ` [PATCH v4 4/5] drm/xe/guc: Ensure CT state transitions via STOP before DISABLED Zhanjun Dong ` (4 subsequent siblings) 7 siblings, 1 reply; 19+ messages in thread From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw) To: intel-xe; +Cc: Matthew Brost, stable, Zhanjun Dong From: Matthew Brost <matthew.brost@intel.com> The intent of wedging a device is to allow queues to continue running only in wedged mode 2. In other modes, queues should initiate cleanup and signal all remaining fences. Fix xe_guc_submit_wedge to correctly clean up queues when wedge mode != 2. Fixes: 7dbe8af13c18 ("drm/xe: Wedge the entire device") Cc: stable@vger.kernel.org Signed-off-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> --- drivers/gpu/drm/xe/xe_guc_submit.c | 34 ++++++++++++++++++------------ 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c index 92ea32423838..f29ed62d2b12 100644 --- a/drivers/gpu/drm/xe/xe_guc_submit.c +++ b/drivers/gpu/drm/xe/xe_guc_submit.c @@ -1326,6 +1326,7 @@ static void disable_scheduling_deregister(struct xe_guc *guc, */ void xe_guc_submit_wedge(struct xe_guc *guc) { + struct xe_device *xe = guc_to_xe(guc); struct xe_gt *gt = guc_to_gt(guc); struct xe_exec_queue *q; unsigned long index; @@ -1340,20 +1341,27 @@ void xe_guc_submit_wedge(struct xe_guc *guc) if (!guc->submission_state.initialized) return; - err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, - guc_submit_wedged_fini, guc); - if (err) { - xe_gt_err(gt, "Failed to register clean-up in wedged.mode=%s; " - "Although device is wedged.\n", - xe_wedged_mode_to_string(XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET)); - return; - } + if (xe->wedged.mode == 2) { + err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, + guc_submit_wedged_fini, guc); + if (err) { + xe_gt_err(gt, "Failed to register clean-up on wedged.mode=2; " + "Although device is wedged.\n"); + return; + } - mutex_lock(&guc->submission_state.lock); - xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) - if (xe_exec_queue_get_unless_zero(q)) - set_exec_queue_wedged(q); - mutex_unlock(&guc->submission_state.lock); + mutex_lock(&guc->submission_state.lock); + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) + if (xe_exec_queue_get_unless_zero(q)) + set_exec_queue_wedged(q); + mutex_unlock(&guc->submission_state.lock); + } else { + /* Forcefully kill any remaining exec queues, signal fences */ + xe_guc_ct_stop(&guc->ct); + __xe_guc_submit_reset_prepare(guc); + xe_guc_submit_stop(guc); + xe_guc_submit_pause_abort(guc); + } } static bool guc_submit_hint_wedged(struct xe_guc *guc) -- 2.34.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 2026-01-27 17:04 ` [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 Zhanjun Dong @ 2026-01-27 22:02 ` Michal Wajdeczko 2026-01-28 3:39 ` Matthew Brost 0 siblings, 1 reply; 19+ messages in thread From: Michal Wajdeczko @ 2026-01-27 22:02 UTC (permalink / raw) To: Zhanjun Dong, intel-xe; +Cc: Matthew Brost, stable On 1/27/2026 6:04 PM, Zhanjun Dong wrote: > From: Matthew Brost <matthew.brost@intel.com> > > The intent of wedging a device is to allow queues to continue running > only in wedged mode 2. In other modes, queues should initiate cleanup > and signal all remaining fences. Fix xe_guc_submit_wedge to correctly > clean up queues when wedge mode != 2. > > Fixes: 7dbe8af13c18 ("drm/xe: Wedge the entire device") > Cc: stable@vger.kernel.org > Signed-off-by: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> > --- > drivers/gpu/drm/xe/xe_guc_submit.c | 34 ++++++++++++++++++------------ > 1 file changed, 21 insertions(+), 13 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c > index 92ea32423838..f29ed62d2b12 100644 > --- a/drivers/gpu/drm/xe/xe_guc_submit.c > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c > @@ -1326,6 +1326,7 @@ static void disable_scheduling_deregister(struct xe_guc *guc, > */ > void xe_guc_submit_wedge(struct xe_guc *guc) > { > + struct xe_device *xe = guc_to_xe(guc); > struct xe_gt *gt = guc_to_gt(guc); > struct xe_exec_queue *q; > unsigned long index; > @@ -1340,20 +1341,27 @@ void xe_guc_submit_wedge(struct xe_guc *guc) > if (!guc->submission_state.initialized) > return; > > - err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, > - guc_submit_wedged_fini, guc); > - if (err) { > - xe_gt_err(gt, "Failed to register clean-up in wedged.mode=%s; " > - "Although device is wedged.\n", > - xe_wedged_mode_to_string(XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET)); > - return; > - } > + if (xe->wedged.mode == 2) { wedged.mode is now an enum you should use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET instead of plain 2 > + err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, > + guc_submit_wedged_fini, guc); > + if (err) { > + xe_gt_err(gt, "Failed to register clean-up on wedged.mode=2; " > + "Although device is wedged.\n"); > + return; if we want to continue, shouldn't we call just devm_add_action() here? some default cleanup will be done later anyway, no? > + } > > - mutex_lock(&guc->submission_state.lock); > - xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) > - if (xe_exec_queue_get_unless_zero(q)) > - set_exec_queue_wedged(q); > - mutex_unlock(&guc->submission_state.lock); > + mutex_lock(&guc->submission_state.lock); > + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) > + if (xe_exec_queue_get_unless_zero(q)) > + set_exec_queue_wedged(q); > + mutex_unlock(&guc->submission_state.lock); > + } else { > + /* Forcefully kill any remaining exec queues, signal fences */ > + xe_guc_ct_stop(&guc->ct); this was already called by xe_guc_declare_wedged() before calling us here > + __xe_guc_submit_reset_prepare(guc); > + xe_guc_submit_stop(guc); > + xe_guc_submit_pause_abort(guc); > + } > } > > static bool guc_submit_hint_wedged(struct xe_guc *guc) ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 2026-01-27 22:02 ` Michal Wajdeczko @ 2026-01-28 3:39 ` Matthew Brost 2026-01-28 21:55 ` Dong, Zhanjun 0 siblings, 1 reply; 19+ messages in thread From: Matthew Brost @ 2026-01-28 3:39 UTC (permalink / raw) To: Michal Wajdeczko; +Cc: Zhanjun Dong, intel-xe, stable On Tue, Jan 27, 2026 at 11:02:42PM +0100, Michal Wajdeczko wrote: > > > On 1/27/2026 6:04 PM, Zhanjun Dong wrote: > > From: Matthew Brost <matthew.brost@intel.com> > > > > The intent of wedging a device is to allow queues to continue running > > only in wedged mode 2. In other modes, queues should initiate cleanup > > and signal all remaining fences. Fix xe_guc_submit_wedge to correctly > > clean up queues when wedge mode != 2. > > > > Fixes: 7dbe8af13c18 ("drm/xe: Wedge the entire device") > > Cc: stable@vger.kernel.org > > Signed-off-by: Matthew Brost <matthew.brost@intel.com> > > Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> > > --- > > drivers/gpu/drm/xe/xe_guc_submit.c | 34 ++++++++++++++++++------------ > > 1 file changed, 21 insertions(+), 13 deletions(-) > > > > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c > > index 92ea32423838..f29ed62d2b12 100644 > > --- a/drivers/gpu/drm/xe/xe_guc_submit.c > > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c > > @@ -1326,6 +1326,7 @@ static void disable_scheduling_deregister(struct xe_guc *guc, > > */ > > void xe_guc_submit_wedge(struct xe_guc *guc) > > { > > + struct xe_device *xe = guc_to_xe(guc); > > struct xe_gt *gt = guc_to_gt(guc); > > struct xe_exec_queue *q; > > unsigned long index; > > @@ -1340,20 +1341,27 @@ void xe_guc_submit_wedge(struct xe_guc *guc) > > if (!guc->submission_state.initialized) > > return; > > > > - err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, > > - guc_submit_wedged_fini, guc); > > - if (err) { > > - xe_gt_err(gt, "Failed to register clean-up in wedged.mode=%s; " > > - "Although device is wedged.\n", > > - xe_wedged_mode_to_string(XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET)); > > - return; > > - } > > + if (xe->wedged.mode == 2) { > > wedged.mode is now an enum > you should use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET instead of plain 2 > Yes it should be. This is a fixes patch though and with XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET, this patch will not cleanly apply to stable kernels. A later patch in the series could add in the enum I guess but maybe not an issue as xe_guc_submit_pause_abort isn't present in a lot kernels either. > > + err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, > > + guc_submit_wedged_fini, guc); > > + if (err) { > > + xe_gt_err(gt, "Failed to register clean-up on wedged.mode=2; " > > + "Although device is wedged.\n"); > > + return; > > if we want to continue, shouldn't we call just devm_add_action() here? > some default cleanup will be done later anyway, no? > Ah, no. If guc_submit_wedged_fini doesn't run at the end the driver will not unload cleanly. This could be refactored but it is correct as is. > > + } > > > > - mutex_lock(&guc->submission_state.lock); > > - xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) > > - if (xe_exec_queue_get_unless_zero(q)) > > - set_exec_queue_wedged(q); > > - mutex_unlock(&guc->submission_state.lock); > > + mutex_lock(&guc->submission_state.lock); > > + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) > > + if (xe_exec_queue_get_unless_zero(q)) > > + set_exec_queue_wedged(q); > > + mutex_unlock(&guc->submission_state.lock); > > + } else { > > + /* Forcefully kill any remaining exec queues, signal fences */ > > + xe_guc_ct_stop(&guc->ct); > > this was already called by xe_guc_declare_wedged() before calling us here > > > + __xe_guc_submit_reset_prepare(guc); We actually can skip __xe_guc_submit_reset_prepare too I believe as that is also called by an upper layer. Matt > > + xe_guc_submit_stop(guc); > > + xe_guc_submit_pause_abort(guc); > > + } > > } > > > > static bool guc_submit_hint_wedged(struct xe_guc *guc) > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 2026-01-28 3:39 ` Matthew Brost @ 2026-01-28 21:55 ` Dong, Zhanjun 0 siblings, 0 replies; 19+ messages in thread From: Dong, Zhanjun @ 2026-01-28 21:55 UTC (permalink / raw) To: Matthew Brost, Michal Wajdeczko; +Cc: intel-xe, stable On 2026-01-27 10:39 p.m., Matthew Brost wrote: > On Tue, Jan 27, 2026 at 11:02:42PM +0100, Michal Wajdeczko wrote: >> >> >> On 1/27/2026 6:04 PM, Zhanjun Dong wrote: >>> From: Matthew Brost <matthew.brost@intel.com> >>> >>> The intent of wedging a device is to allow queues to continue running >>> only in wedged mode 2. In other modes, queues should initiate cleanup >>> and signal all remaining fences. Fix xe_guc_submit_wedge to correctly >>> clean up queues when wedge mode != 2. >>> >>> Fixes: 7dbe8af13c18 ("drm/xe: Wedge the entire device") >>> Cc: stable@vger.kernel.org >>> Signed-off-by: Matthew Brost <matthew.brost@intel.com> >>> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> >>> --- >>> drivers/gpu/drm/xe/xe_guc_submit.c | 34 ++++++++++++++++++------------ >>> 1 file changed, 21 insertions(+), 13 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c >>> index 92ea32423838..f29ed62d2b12 100644 >>> --- a/drivers/gpu/drm/xe/xe_guc_submit.c >>> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c >>> @@ -1326,6 +1326,7 @@ static void disable_scheduling_deregister(struct xe_guc *guc, >>> */ >>> void xe_guc_submit_wedge(struct xe_guc *guc) >>> { >>> + struct xe_device *xe = guc_to_xe(guc); >>> struct xe_gt *gt = guc_to_gt(guc); >>> struct xe_exec_queue *q; >>> unsigned long index; >>> @@ -1340,20 +1341,27 @@ void xe_guc_submit_wedge(struct xe_guc *guc) >>> if (!guc->submission_state.initialized) >>> return; >>> >>> - err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, >>> - guc_submit_wedged_fini, guc); >>> - if (err) { >>> - xe_gt_err(gt, "Failed to register clean-up in wedged.mode=%s; " >>> - "Although device is wedged.\n", >>> - xe_wedged_mode_to_string(XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET)); >>> - return; >>> - } >>> + if (xe->wedged.mode == 2) { >> >> wedged.mode is now an enum >> you should use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET instead of plain 2 >> > > Yes it should be. This is a fixes patch though and with > XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET, this patch will not cleanly apply > to stable kernels. A later patch in the series could add in the enum I > guess but maybe not an issue as xe_guc_submit_pause_abort isn't present > in a lot kernels either. > >>> + err = devm_add_action_or_reset(guc_to_xe(guc)->drm.dev, >>> + guc_submit_wedged_fini, guc); >>> + if (err) { >>> + xe_gt_err(gt, "Failed to register clean-up on wedged.mode=2; " >>> + "Although device is wedged.\n"); >>> + return; >> >> if we want to continue, shouldn't we call just devm_add_action() here? >> some default cleanup will be done later anyway, no? >> > > Ah, no. If guc_submit_wedged_fini doesn't run at the end the driver will > not unload cleanly. This could be refactored but it is correct as is. > >>> + } >>> >>> - mutex_lock(&guc->submission_state.lock); >>> - xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) >>> - if (xe_exec_queue_get_unless_zero(q)) >>> - set_exec_queue_wedged(q); >>> - mutex_unlock(&guc->submission_state.lock); >>> + mutex_lock(&guc->submission_state.lock); >>> + xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) >>> + if (xe_exec_queue_get_unless_zero(q)) >>> + set_exec_queue_wedged(q); >>> + mutex_unlock(&guc->submission_state.lock); >>> + } else { >>> + /* Forcefully kill any remaining exec queues, signal fences */ >>> + xe_guc_ct_stop(&guc->ct); >> >> this was already called by xe_guc_declare_wedged() before calling us here >> >>> + __xe_guc_submit_reset_prepare(guc); > > We actually can skip __xe_guc_submit_reset_prepare too I believe as that > is also called by an upper layer. Will remove above 2 calls in next rev. Regards, Zhanjun Dong > > Matt > >>> + xe_guc_submit_stop(guc); >>> + xe_guc_submit_pause_abort(guc); >>> + } >>> } >>> >>> static bool guc_submit_hint_wedged(struct xe_guc *guc) >> ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v4 4/5] drm/xe/guc: Ensure CT state transitions via STOP before DISABLED 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong ` (2 preceding siblings ...) 2026-01-27 17:04 ` [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 Zhanjun Dong @ 2026-01-27 17:04 ` Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 5/5] drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup Zhanjun Dong ` (3 subsequent siblings) 7 siblings, 0 replies; 19+ messages in thread From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw) To: intel-xe; +Cc: Zhanjun Dong, stable, Matthew Brost The GuC CT state transition requires moving to the STOP state before entering the DISABLED state. Update the driver teardown sequence to make the proper state machine transitions. Fixes: ee4b32220a6b ("drm/xe/guc: Add devm release action to safely tear down CT") Cc: stable@vger.kernel.org Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_guc_ct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c index dfbf76037b04..6a658f085e0f 100644 --- a/drivers/gpu/drm/xe/xe_guc_ct.c +++ b/drivers/gpu/drm/xe/xe_guc_ct.c @@ -345,6 +345,7 @@ static void guc_action_disable_ct(void *arg) { struct xe_guc_ct *ct = arg; + xe_guc_ct_stop(ct); guc_ct_change_state(ct, XE_GUC_CT_STATE_DISABLED); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH v4 5/5] drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong ` (3 preceding siblings ...) 2026-01-27 17:04 ` [PATCH v4 4/5] drm/xe/guc: Ensure CT state transitions via STOP before DISABLED Zhanjun Dong @ 2026-01-27 17:04 ` Zhanjun Dong 2026-01-27 17:12 ` ✓ CI.KUnit: success for Attempt to fixup reset, wedge, unload corner cases Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 19+ messages in thread From: Zhanjun Dong @ 2026-01-27 17:04 UTC (permalink / raw) To: intel-xe; +Cc: Zhanjun Dong, Matthew Brost If the firmware fails to load in GT resets the device is wedged also initiating a GuC state cleanup. Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_uc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c index 3f63c2a7e86d..39101120d43a 100644 --- a/drivers/gpu/drm/xe/xe_uc.c +++ b/drivers/gpu/drm/xe/xe_uc.c @@ -171,7 +171,6 @@ static int vf_uc_load_hw(struct xe_uc *uc) return 0; err_out: - xe_guc_sanitize(&uc->guc); return err; } @@ -229,7 +228,6 @@ int xe_uc_load_hw(struct xe_uc *uc) return 0; err_out: - xe_guc_sanitize(&uc->guc); return ret; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for Attempt to fixup reset, wedge, unload corner cases 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong ` (4 preceding siblings ...) 2026-01-27 17:04 ` [PATCH v4 5/5] drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup Zhanjun Dong @ 2026-01-27 17:12 ` Patchwork 2026-01-27 18:08 ` ✓ Xe.CI.BAT: " Patchwork 2026-01-27 22:26 ` ✗ Xe.CI.Full: failure " Patchwork 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-01-27 17:12 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/160715/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [17:10:38] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [17:10:42] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 [17:11:23] Starting KUnit Kernel (1/1)... [17:11:23] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [17:11:23] ================== guc_buf (11 subtests) =================== [17:11:23] [PASSED] test_smallest [17:11:23] [PASSED] test_largest [17:11:23] [PASSED] test_granular [17:11:23] [PASSED] test_unique [17:11:23] [PASSED] test_overlap [17:11:23] [PASSED] test_reusable [17:11:23] [PASSED] test_too_big [17:11:23] [PASSED] test_flush [17:11:23] [PASSED] test_lookup [17:11:23] [PASSED] test_data [17:11:23] [PASSED] test_class [17:11:23] ===================== [PASSED] guc_buf ===================== [17:11:23] =================== guc_dbm (7 subtests) =================== [17:11:23] [PASSED] test_empty [17:11:23] [PASSED] test_default [17:11:23] ======================== test_size ======================== [17:11:23] [PASSED] 4 [17:11:23] [PASSED] 8 [17:11:23] [PASSED] 32 [17:11:23] [PASSED] 256 [17:11:23] ==================== [PASSED] test_size ==================== [17:11:23] ======================= test_reuse ======================== [17:11:23] [PASSED] 4 [17:11:23] [PASSED] 8 [17:11:23] [PASSED] 32 [17:11:23] [PASSED] 256 [17:11:23] =================== [PASSED] test_reuse ==================== [17:11:23] =================== test_range_overlap ==================== [17:11:23] [PASSED] 4 [17:11:23] [PASSED] 8 [17:11:23] [PASSED] 32 [17:11:23] [PASSED] 256 [17:11:23] =============== [PASSED] test_range_overlap ================ [17:11:23] =================== test_range_compact ==================== [17:11:23] [PASSED] 4 [17:11:23] [PASSED] 8 [17:11:23] [PASSED] 32 [17:11:23] [PASSED] 256 [17:11:23] =============== [PASSED] test_range_compact ================ [17:11:23] ==================== test_range_spare ===================== [17:11:23] [PASSED] 4 [17:11:23] [PASSED] 8 [17:11:23] [PASSED] 32 [17:11:23] [PASSED] 256 [17:11:23] ================ [PASSED] test_range_spare ================= [17:11:23] ===================== [PASSED] guc_dbm ===================== [17:11:23] =================== guc_idm (6 subtests) =================== [17:11:23] [PASSED] bad_init [17:11:23] [PASSED] no_init [17:11:23] [PASSED] init_fini [17:11:23] [PASSED] check_used [17:11:23] [PASSED] check_quota [17:11:23] [PASSED] check_all [17:11:23] ===================== [PASSED] guc_idm ===================== [17:11:23] ================== no_relay (3 subtests) =================== [17:11:23] [PASSED] xe_drops_guc2pf_if_not_ready [17:11:23] [PASSED] xe_drops_guc2vf_if_not_ready [17:11:23] [PASSED] xe_rejects_send_if_not_ready [17:11:23] ==================== [PASSED] no_relay ===================== [17:11:23] ================== pf_relay (14 subtests) ================== [17:11:23] [PASSED] pf_rejects_guc2pf_too_short [17:11:23] [PASSED] pf_rejects_guc2pf_too_long [17:11:23] [PASSED] pf_rejects_guc2pf_no_payload [17:11:23] [PASSED] pf_fails_no_payload [17:11:23] [PASSED] pf_fails_bad_origin [17:11:23] [PASSED] pf_fails_bad_type [17:11:23] [PASSED] pf_txn_reports_error [17:11:23] [PASSED] pf_txn_sends_pf2guc [17:11:23] [PASSED] pf_sends_pf2guc [17:11:23] [SKIPPED] pf_loopback_nop [17:11:23] [SKIPPED] pf_loopback_echo [17:11:23] [SKIPPED] pf_loopback_fail [17:11:23] [SKIPPED] pf_loopback_busy [17:11:23] [SKIPPED] pf_loopback_retry [17:11:23] ==================== [PASSED] pf_relay ===================== [17:11:23] ================== vf_relay (3 subtests) =================== [17:11:23] [PASSED] vf_rejects_guc2vf_too_short [17:11:23] [PASSED] vf_rejects_guc2vf_too_long [17:11:23] [PASSED] vf_rejects_guc2vf_no_payload [17:11:23] ==================== [PASSED] vf_relay ===================== [17:11:23] ================ pf_gt_config (6 subtests) ================= [17:11:23] [PASSED] fair_contexts_1vf [17:11:23] [PASSED] fair_doorbells_1vf [17:11:23] [PASSED] fair_ggtt_1vf [17:11:23] ====================== fair_contexts ====================== [17:11:23] [PASSED] 1 VF [17:11:23] [PASSED] 2 VFs [17:11:23] [PASSED] 3 VFs [17:11:23] [PASSED] 4 VFs [17:11:23] [PASSED] 5 VFs [17:11:23] [PASSED] 6 VFs [17:11:23] [PASSED] 7 VFs [17:11:23] [PASSED] 8 VFs [17:11:23] [PASSED] 9 VFs [17:11:23] [PASSED] 10 VFs [17:11:23] [PASSED] 11 VFs [17:11:23] [PASSED] 12 VFs [17:11:23] [PASSED] 13 VFs [17:11:23] [PASSED] 14 VFs [17:11:23] [PASSED] 15 VFs [17:11:23] [PASSED] 16 VFs [17:11:23] [PASSED] 17 VFs [17:11:23] [PASSED] 18 VFs [17:11:23] [PASSED] 19 VFs [17:11:23] [PASSED] 20 VFs [17:11:23] [PASSED] 21 VFs [17:11:23] [PASSED] 22 VFs [17:11:23] [PASSED] 23 VFs [17:11:23] [PASSED] 24 VFs [17:11:23] [PASSED] 25 VFs [17:11:23] [PASSED] 26 VFs [17:11:23] [PASSED] 27 VFs [17:11:23] [PASSED] 28 VFs [17:11:23] [PASSED] 29 VFs [17:11:23] [PASSED] 30 VFs [17:11:23] [PASSED] 31 VFs [17:11:23] [PASSED] 32 VFs [17:11:23] [PASSED] 33 VFs [17:11:23] [PASSED] 34 VFs [17:11:23] [PASSED] 35 VFs [17:11:23] [PASSED] 36 VFs [17:11:23] [PASSED] 37 VFs [17:11:23] [PASSED] 38 VFs [17:11:23] [PASSED] 39 VFs [17:11:23] [PASSED] 40 VFs [17:11:23] [PASSED] 41 VFs [17:11:23] [PASSED] 42 VFs [17:11:23] [PASSED] 43 VFs [17:11:23] [PASSED] 44 VFs [17:11:23] [PASSED] 45 VFs [17:11:23] [PASSED] 46 VFs [17:11:23] [PASSED] 47 VFs [17:11:23] [PASSED] 48 VFs [17:11:23] [PASSED] 49 VFs [17:11:23] [PASSED] 50 VFs [17:11:23] [PASSED] 51 VFs [17:11:23] [PASSED] 52 VFs [17:11:23] [PASSED] 53 VFs [17:11:23] [PASSED] 54 VFs [17:11:23] [PASSED] 55 VFs [17:11:23] [PASSED] 56 VFs [17:11:23] [PASSED] 57 VFs [17:11:23] [PASSED] 58 VFs [17:11:23] [PASSED] 59 VFs [17:11:23] [PASSED] 60 VFs [17:11:23] [PASSED] 61 VFs [17:11:23] [PASSED] 62 VFs [17:11:23] [PASSED] 63 VFs [17:11:23] ================== [PASSED] fair_contexts ================== [17:11:23] ===================== fair_doorbells ====================== [17:11:23] [PASSED] 1 VF [17:11:23] [PASSED] 2 VFs [17:11:23] [PASSED] 3 VFs [17:11:23] [PASSED] 4 VFs [17:11:23] [PASSED] 5 VFs [17:11:23] [PASSED] 6 VFs [17:11:23] [PASSED] 7 VFs [17:11:23] [PASSED] 8 VFs [17:11:23] [PASSED] 9 VFs [17:11:23] [PASSED] 10 VFs [17:11:23] [PASSED] 11 VFs [17:11:23] [PASSED] 12 VFs [17:11:23] [PASSED] 13 VFs [17:11:23] [PASSED] 14 VFs [17:11:23] [PASSED] 15 VFs [17:11:23] [PASSED] 16 VFs [17:11:23] [PASSED] 17 VFs [17:11:23] [PASSED] 18 VFs [17:11:23] [PASSED] 19 VFs [17:11:23] [PASSED] 20 VFs [17:11:23] [PASSED] 21 VFs [17:11:23] [PASSED] 22 VFs [17:11:23] [PASSED] 23 VFs [17:11:23] [PASSED] 24 VFs [17:11:23] [PASSED] 25 VFs [17:11:23] [PASSED] 26 VFs [17:11:23] [PASSED] 27 VFs [17:11:23] [PASSED] 28 VFs [17:11:23] [PASSED] 29 VFs [17:11:23] [PASSED] 30 VFs [17:11:23] [PASSED] 31 VFs [17:11:23] [PASSED] 32 VFs [17:11:23] [PASSED] 33 VFs [17:11:23] [PASSED] 34 VFs [17:11:23] [PASSED] 35 VFs [17:11:23] [PASSED] 36 VFs [17:11:23] [PASSED] 37 VFs [17:11:23] [PASSED] 38 VFs [17:11:23] [PASSED] 39 VFs [17:11:23] [PASSED] 40 VFs [17:11:23] [PASSED] 41 VFs [17:11:23] [PASSED] 42 VFs [17:11:23] [PASSED] 43 VFs [17:11:23] [PASSED] 44 VFs [17:11:23] [PASSED] 45 VFs [17:11:23] [PASSED] 46 VFs [17:11:23] [PASSED] 47 VFs [17:11:23] [PASSED] 48 VFs [17:11:23] [PASSED] 49 VFs [17:11:23] [PASSED] 50 VFs [17:11:23] [PASSED] 51 VFs [17:11:23] [PASSED] 52 VFs [17:11:23] [PASSED] 53 VFs [17:11:23] [PASSED] 54 VFs [17:11:23] [PASSED] 55 VFs [17:11:23] [PASSED] 56 VFs [17:11:23] [PASSED] 57 VFs [17:11:23] [PASSED] 58 VFs [17:11:23] [PASSED] 59 VFs [17:11:23] [PASSED] 60 VFs [17:11:23] [PASSED] 61 VFs [17:11:23] [PASSED] 62 VFs [17:11:23] [PASSED] 63 VFs [17:11:23] ================= [PASSED] fair_doorbells ================== [17:11:23] ======================== fair_ggtt ======================== [17:11:23] [PASSED] 1 VF [17:11:23] [PASSED] 2 VFs [17:11:23] [PASSED] 3 VFs [17:11:23] [PASSED] 4 VFs [17:11:23] [PASSED] 5 VFs [17:11:23] [PASSED] 6 VFs [17:11:23] [PASSED] 7 VFs [17:11:23] [PASSED] 8 VFs [17:11:23] [PASSED] 9 VFs [17:11:23] [PASSED] 10 VFs [17:11:23] [PASSED] 11 VFs [17:11:23] [PASSED] 12 VFs [17:11:23] [PASSED] 13 VFs [17:11:23] [PASSED] 14 VFs [17:11:23] [PASSED] 15 VFs [17:11:23] [PASSED] 16 VFs [17:11:23] [PASSED] 17 VFs [17:11:23] [PASSED] 18 VFs [17:11:23] [PASSED] 19 VFs [17:11:23] [PASSED] 20 VFs [17:11:23] [PASSED] 21 VFs [17:11:23] [PASSED] 22 VFs [17:11:23] [PASSED] 23 VFs [17:11:23] [PASSED] 24 VFs [17:11:23] [PASSED] 25 VFs [17:11:23] [PASSED] 26 VFs [17:11:23] [PASSED] 27 VFs [17:11:23] [PASSED] 28 VFs [17:11:23] [PASSED] 29 VFs [17:11:23] [PASSED] 30 VFs [17:11:23] [PASSED] 31 VFs [17:11:23] [PASSED] 32 VFs [17:11:23] [PASSED] 33 VFs [17:11:23] [PASSED] 34 VFs [17:11:23] [PASSED] 35 VFs [17:11:23] [PASSED] 36 VFs [17:11:23] [PASSED] 37 VFs [17:11:23] [PASSED] 38 VFs [17:11:23] [PASSED] 39 VFs [17:11:23] [PASSED] 40 VFs [17:11:23] [PASSED] 41 VFs [17:11:23] [PASSED] 42 VFs [17:11:23] [PASSED] 43 VFs [17:11:23] [PASSED] 44 VFs [17:11:23] [PASSED] 45 VFs [17:11:23] [PASSED] 46 VFs [17:11:23] [PASSED] 47 VFs [17:11:23] [PASSED] 48 VFs [17:11:23] [PASSED] 49 VFs [17:11:23] [PASSED] 50 VFs [17:11:23] [PASSED] 51 VFs [17:11:23] [PASSED] 52 VFs [17:11:23] [PASSED] 53 VFs [17:11:23] [PASSED] 54 VFs [17:11:23] [PASSED] 55 VFs [17:11:23] [PASSED] 56 VFs [17:11:23] [PASSED] 57 VFs [17:11:23] [PASSED] 58 VFs [17:11:23] [PASSED] 59 VFs [17:11:23] [PASSED] 60 VFs [17:11:23] [PASSED] 61 VFs [17:11:23] [PASSED] 62 VFs [17:11:23] [PASSED] 63 VFs [17:11:23] ==================== [PASSED] fair_ggtt ==================== [17:11:23] ================== [PASSED] pf_gt_config =================== [17:11:23] ===================== lmtt (1 subtest) ===================== [17:11:23] ======================== test_ops ========================= [17:11:23] [PASSED] 2-level [17:11:23] [PASSED] multi-level [17:11:23] ==================== [PASSED] test_ops ===================== [17:11:23] ====================== [PASSED] lmtt ======================= [17:11:23] ================= pf_service (11 subtests) ================= [17:11:23] [PASSED] pf_negotiate_any [17:11:23] [PASSED] pf_negotiate_base_match [17:11:23] [PASSED] pf_negotiate_base_newer [17:11:23] [PASSED] pf_negotiate_base_next [17:11:23] [SKIPPED] pf_negotiate_base_older [17:11:23] [PASSED] pf_negotiate_base_prev [17:11:23] [PASSED] pf_negotiate_latest_match [17:11:23] [PASSED] pf_negotiate_latest_newer [17:11:23] [PASSED] pf_negotiate_latest_next [17:11:23] [SKIPPED] pf_negotiate_latest_older [17:11:23] [SKIPPED] pf_negotiate_latest_prev [17:11:23] =================== [PASSED] pf_service ==================== [17:11:23] ================= xe_guc_g2g (2 subtests) ================== [17:11:23] ============== xe_live_guc_g2g_kunit_default ============== [17:11:23] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [17:11:23] ============== xe_live_guc_g2g_kunit_allmem =============== [17:11:23] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [17:11:23] =================== [SKIPPED] xe_guc_g2g =================== [17:11:23] =================== xe_mocs (2 subtests) =================== [17:11:23] ================ xe_live_mocs_kernel_kunit ================ [17:11:23] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [17:11:23] ================ xe_live_mocs_reset_kunit ================= [17:11:23] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [17:11:23] ==================== [SKIPPED] xe_mocs ===================== [17:11:23] ================= xe_migrate (2 subtests) ================== [17:11:23] ================= xe_migrate_sanity_kunit ================= [17:11:23] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [17:11:23] ================== xe_validate_ccs_kunit ================== [17:11:23] ============= [SKIPPED] xe_validate_ccs_kunit ============== [17:11:23] =================== [SKIPPED] xe_migrate =================== [17:11:23] ================== xe_dma_buf (1 subtest) ================== [17:11:23] ==================== xe_dma_buf_kunit ===================== [17:11:23] ================ [SKIPPED] xe_dma_buf_kunit ================ [17:11:23] =================== [SKIPPED] xe_dma_buf =================== [17:11:23] ================= xe_bo_shrink (1 subtest) ================= [17:11:23] =================== xe_bo_shrink_kunit ==================== [17:11:23] =============== [SKIPPED] xe_bo_shrink_kunit =============== [17:11:23] ================== [SKIPPED] xe_bo_shrink ================== [17:11:23] ==================== xe_bo (2 subtests) ==================== [17:11:23] ================== xe_ccs_migrate_kunit =================== [17:11:23] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [17:11:23] ==================== xe_bo_evict_kunit ==================== [17:11:23] =============== [SKIPPED] xe_bo_evict_kunit ================ [17:11:23] ===================== [SKIPPED] xe_bo ====================== [17:11:23] ==================== args (13 subtests) ==================== [17:11:23] [PASSED] count_args_test [17:11:23] [PASSED] call_args_example [17:11:23] [PASSED] call_args_test [17:11:23] [PASSED] drop_first_arg_example [17:11:23] [PASSED] drop_first_arg_test [17:11:23] [PASSED] first_arg_example [17:11:23] [PASSED] first_arg_test [17:11:23] [PASSED] last_arg_example [17:11:23] [PASSED] last_arg_test [17:11:23] [PASSED] pick_arg_example [17:11:23] [PASSED] if_args_example [17:11:23] [PASSED] if_args_test [17:11:23] [PASSED] sep_comma_example [17:11:23] ====================== [PASSED] args ======================= [17:11:23] =================== xe_pci (3 subtests) ==================== [17:11:23] ==================== check_graphics_ip ==================== [17:11:23] [PASSED] 12.00 Xe_LP [17:11:23] [PASSED] 12.10 Xe_LP+ [17:11:23] [PASSED] 12.55 Xe_HPG [17:11:23] [PASSED] 12.60 Xe_HPC [17:11:23] [PASSED] 12.70 Xe_LPG [17:11:23] [PASSED] 12.71 Xe_LPG [17:11:23] [PASSED] 12.74 Xe_LPG+ [17:11:23] [PASSED] 20.01 Xe2_HPG [17:11:23] [PASSED] 20.02 Xe2_HPG [17:11:23] [PASSED] 20.04 Xe2_LPG [17:11:23] [PASSED] 30.00 Xe3_LPG [17:11:23] [PASSED] 30.01 Xe3_LPG [17:11:23] [PASSED] 30.03 Xe3_LPG [17:11:23] [PASSED] 30.04 Xe3_LPG [17:11:23] [PASSED] 30.05 Xe3_LPG [17:11:23] [PASSED] 35.11 Xe3p_XPC [17:11:23] ================ [PASSED] check_graphics_ip ================ [17:11:23] ===================== check_media_ip ====================== [17:11:23] [PASSED] 12.00 Xe_M [17:11:23] [PASSED] 12.55 Xe_HPM [17:11:23] [PASSED] 13.00 Xe_LPM+ [17:11:23] [PASSED] 13.01 Xe2_HPM [17:11:23] [PASSED] 20.00 Xe2_LPM [17:11:23] [PASSED] 30.00 Xe3_LPM [17:11:23] [PASSED] 30.02 Xe3_LPM [17:11:23] [PASSED] 35.00 Xe3p_LPM [17:11:23] [PASSED] 35.03 Xe3p_HPM [17:11:23] ================= [PASSED] check_media_ip ================== [17:11:23] =================== check_platform_desc =================== [17:11:23] [PASSED] 0x9A60 (TIGERLAKE) [17:11:23] [PASSED] 0x9A68 (TIGERLAKE) [17:11:23] [PASSED] 0x9A70 (TIGERLAKE) [17:11:23] [PASSED] 0x9A40 (TIGERLAKE) [17:11:23] [PASSED] 0x9A49 (TIGERLAKE) [17:11:23] [PASSED] 0x9A59 (TIGERLAKE) [17:11:23] [PASSED] 0x9A78 (TIGERLAKE) [17:11:23] [PASSED] 0x9AC0 (TIGERLAKE) [17:11:23] [PASSED] 0x9AC9 (TIGERLAKE) [17:11:23] [PASSED] 0x9AD9 (TIGERLAKE) [17:11:23] [PASSED] 0x9AF8 (TIGERLAKE) [17:11:23] [PASSED] 0x4C80 (ROCKETLAKE) [17:11:23] [PASSED] 0x4C8A (ROCKETLAKE) [17:11:23] [PASSED] 0x4C8B (ROCKETLAKE) [17:11:23] [PASSED] 0x4C8C (ROCKETLAKE) [17:11:23] [PASSED] 0x4C90 (ROCKETLAKE) [17:11:23] [PASSED] 0x4C9A (ROCKETLAKE) [17:11:23] [PASSED] 0x4680 (ALDERLAKE_S) [17:11:23] [PASSED] 0x4682 (ALDERLAKE_S) [17:11:23] [PASSED] 0x4688 (ALDERLAKE_S) [17:11:23] [PASSED] 0x468A (ALDERLAKE_S) [17:11:23] [PASSED] 0x468B (ALDERLAKE_S) [17:11:23] [PASSED] 0x4690 (ALDERLAKE_S) [17:11:23] [PASSED] 0x4692 (ALDERLAKE_S) [17:11:23] [PASSED] 0x4693 (ALDERLAKE_S) [17:11:23] [PASSED] 0x46A0 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46A1 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46A2 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46A3 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46A6 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46A8 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46AA (ALDERLAKE_P) [17:11:23] [PASSED] 0x462A (ALDERLAKE_P) [17:11:23] [PASSED] 0x4626 (ALDERLAKE_P) [17:11:23] [PASSED] 0x4628 (ALDERLAKE_P) stty: 'standard input': Inappropriate ioctl for device [17:11:23] [PASSED] 0x46B0 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46B1 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46B2 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46B3 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46C0 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46C1 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46C2 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46C3 (ALDERLAKE_P) [17:11:23] [PASSED] 0x46D0 (ALDERLAKE_N) [17:11:23] [PASSED] 0x46D1 (ALDERLAKE_N) [17:11:23] [PASSED] 0x46D2 (ALDERLAKE_N) [17:11:23] [PASSED] 0x46D3 (ALDERLAKE_N) [17:11:23] [PASSED] 0x46D4 (ALDERLAKE_N) [17:11:23] [PASSED] 0xA721 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7A1 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7A9 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7AC (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7AD (ALDERLAKE_P) [17:11:23] [PASSED] 0xA720 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7A0 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7A8 (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7AA (ALDERLAKE_P) [17:11:23] [PASSED] 0xA7AB (ALDERLAKE_P) [17:11:23] [PASSED] 0xA780 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA781 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA782 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA783 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA788 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA789 (ALDERLAKE_S) [17:11:23] [PASSED] 0xA78A (ALDERLAKE_S) [17:11:23] [PASSED] 0xA78B (ALDERLAKE_S) [17:11:23] [PASSED] 0x4905 (DG1) [17:11:23] [PASSED] 0x4906 (DG1) [17:11:23] [PASSED] 0x4907 (DG1) [17:11:23] [PASSED] 0x4908 (DG1) [17:11:23] [PASSED] 0x4909 (DG1) [17:11:23] [PASSED] 0x56C0 (DG2) [17:11:23] [PASSED] 0x56C2 (DG2) [17:11:23] [PASSED] 0x56C1 (DG2) [17:11:23] [PASSED] 0x7D51 (METEORLAKE) [17:11:23] [PASSED] 0x7DD1 (METEORLAKE) [17:11:23] [PASSED] 0x7D41 (METEORLAKE) [17:11:23] [PASSED] 0x7D67 (METEORLAKE) [17:11:23] [PASSED] 0xB640 (METEORLAKE) [17:11:23] [PASSED] 0x56A0 (DG2) [17:11:23] [PASSED] 0x56A1 (DG2) [17:11:23] [PASSED] 0x56A2 (DG2) [17:11:23] [PASSED] 0x56BE (DG2) [17:11:23] [PASSED] 0x56BF (DG2) [17:11:23] [PASSED] 0x5690 (DG2) [17:11:23] [PASSED] 0x5691 (DG2) [17:11:23] [PASSED] 0x5692 (DG2) [17:11:23] [PASSED] 0x56A5 (DG2) [17:11:23] [PASSED] 0x56A6 (DG2) [17:11:23] [PASSED] 0x56B0 (DG2) [17:11:23] [PASSED] 0x56B1 (DG2) [17:11:23] [PASSED] 0x56BA (DG2) [17:11:23] [PASSED] 0x56BB (DG2) [17:11:23] [PASSED] 0x56BC (DG2) [17:11:23] [PASSED] 0x56BD (DG2) [17:11:23] [PASSED] 0x5693 (DG2) [17:11:23] [PASSED] 0x5694 (DG2) [17:11:23] [PASSED] 0x5695 (DG2) [17:11:23] [PASSED] 0x56A3 (DG2) [17:11:23] [PASSED] 0x56A4 (DG2) [17:11:23] [PASSED] 0x56B2 (DG2) [17:11:23] [PASSED] 0x56B3 (DG2) [17:11:23] [PASSED] 0x5696 (DG2) [17:11:23] [PASSED] 0x5697 (DG2) [17:11:23] [PASSED] 0xB69 (PVC) [17:11:23] [PASSED] 0xB6E (PVC) [17:11:23] [PASSED] 0xBD4 (PVC) [17:11:23] [PASSED] 0xBD5 (PVC) [17:11:23] [PASSED] 0xBD6 (PVC) [17:11:23] [PASSED] 0xBD7 (PVC) [17:11:23] [PASSED] 0xBD8 (PVC) [17:11:23] [PASSED] 0xBD9 (PVC) [17:11:23] [PASSED] 0xBDA (PVC) [17:11:23] [PASSED] 0xBDB (PVC) [17:11:23] [PASSED] 0xBE0 (PVC) [17:11:23] [PASSED] 0xBE1 (PVC) [17:11:23] [PASSED] 0xBE5 (PVC) [17:11:23] [PASSED] 0x7D40 (METEORLAKE) [17:11:23] [PASSED] 0x7D45 (METEORLAKE) [17:11:23] [PASSED] 0x7D55 (METEORLAKE) [17:11:23] [PASSED] 0x7D60 (METEORLAKE) [17:11:23] [PASSED] 0x7DD5 (METEORLAKE) [17:11:23] [PASSED] 0x6420 (LUNARLAKE) [17:11:23] [PASSED] 0x64A0 (LUNARLAKE) [17:11:23] [PASSED] 0x64B0 (LUNARLAKE) [17:11:23] [PASSED] 0xE202 (BATTLEMAGE) [17:11:23] [PASSED] 0xE209 (BATTLEMAGE) [17:11:23] [PASSED] 0xE20B (BATTLEMAGE) [17:11:23] [PASSED] 0xE20C (BATTLEMAGE) [17:11:23] [PASSED] 0xE20D (BATTLEMAGE) [17:11:23] [PASSED] 0xE210 (BATTLEMAGE) [17:11:23] [PASSED] 0xE211 (BATTLEMAGE) [17:11:23] [PASSED] 0xE212 (BATTLEMAGE) [17:11:23] [PASSED] 0xE216 (BATTLEMAGE) [17:11:23] [PASSED] 0xE220 (BATTLEMAGE) [17:11:23] [PASSED] 0xE221 (BATTLEMAGE) [17:11:23] [PASSED] 0xE222 (BATTLEMAGE) [17:11:23] [PASSED] 0xE223 (BATTLEMAGE) [17:11:23] [PASSED] 0xB080 (PANTHERLAKE) [17:11:23] [PASSED] 0xB081 (PANTHERLAKE) [17:11:23] [PASSED] 0xB082 (PANTHERLAKE) [17:11:23] [PASSED] 0xB083 (PANTHERLAKE) [17:11:23] [PASSED] 0xB084 (PANTHERLAKE) [17:11:23] [PASSED] 0xB085 (PANTHERLAKE) [17:11:23] [PASSED] 0xB086 (PANTHERLAKE) [17:11:23] [PASSED] 0xB087 (PANTHERLAKE) [17:11:23] [PASSED] 0xB08F (PANTHERLAKE) [17:11:23] [PASSED] 0xB090 (PANTHERLAKE) [17:11:23] [PASSED] 0xB0A0 (PANTHERLAKE) [17:11:23] [PASSED] 0xB0B0 (PANTHERLAKE) [17:11:23] [PASSED] 0xFD80 (PANTHERLAKE) [17:11:23] [PASSED] 0xFD81 (PANTHERLAKE) [17:11:23] [PASSED] 0xD740 (NOVALAKE_S) [17:11:23] [PASSED] 0xD741 (NOVALAKE_S) [17:11:23] [PASSED] 0xD742 (NOVALAKE_S) [17:11:23] [PASSED] 0xD743 (NOVALAKE_S) [17:11:23] [PASSED] 0xD744 (NOVALAKE_S) [17:11:23] [PASSED] 0xD745 (NOVALAKE_S) [17:11:23] [PASSED] 0x674C (CRESCENTISLAND) [17:11:23] =============== [PASSED] check_platform_desc =============== [17:11:23] ===================== [PASSED] xe_pci ====================== [17:11:23] =================== xe_rtp (2 subtests) ==================== [17:11:23] =============== xe_rtp_process_to_sr_tests ================ [17:11:23] [PASSED] coalesce-same-reg [17:11:23] [PASSED] no-match-no-add [17:11:23] [PASSED] match-or [17:11:23] [PASSED] match-or-xfail [17:11:23] [PASSED] no-match-no-add-multiple-rules [17:11:23] [PASSED] two-regs-two-entries [17:11:23] [PASSED] clr-one-set-other [17:11:23] [PASSED] set-field [17:11:23] [PASSED] conflict-duplicate [17:11:23] [PASSED] conflict-not-disjoint [17:11:23] [PASSED] conflict-reg-type [17:11:23] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [17:11:23] ================== xe_rtp_process_tests =================== [17:11:23] [PASSED] active1 [17:11:23] [PASSED] active2 [17:11:23] [PASSED] active-inactive [17:11:23] [PASSED] inactive-active [17:11:23] [PASSED] inactive-1st_or_active-inactive [17:11:23] [PASSED] inactive-2nd_or_active-inactive [17:11:23] [PASSED] inactive-last_or_active-inactive [17:11:23] [PASSED] inactive-no_or_active-inactive [17:11:23] ============== [PASSED] xe_rtp_process_tests =============== [17:11:23] ===================== [PASSED] xe_rtp ====================== [17:11:23] ==================== xe_wa (1 subtest) ===================== [17:11:23] ======================== xe_wa_gt ========================= [17:11:23] [PASSED] TIGERLAKE B0 [17:11:23] [PASSED] DG1 A0 [17:11:23] [PASSED] DG1 B0 [17:11:23] [PASSED] ALDERLAKE_S A0 [17:11:23] [PASSED] ALDERLAKE_S B0 [17:11:23] [PASSED] ALDERLAKE_S C0 [17:11:23] [PASSED] ALDERLAKE_S D0 [17:11:23] [PASSED] ALDERLAKE_P A0 [17:11:23] [PASSED] ALDERLAKE_P B0 [17:11:23] [PASSED] ALDERLAKE_P C0 [17:11:23] [PASSED] ALDERLAKE_S RPLS D0 [17:11:23] [PASSED] ALDERLAKE_P RPLU E0 [17:11:23] [PASSED] DG2 G10 C0 [17:11:23] [PASSED] DG2 G11 B1 [17:11:23] [PASSED] DG2 G12 A1 [17:11:23] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [17:11:23] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [17:11:23] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [17:11:23] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [17:11:23] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [17:11:23] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [17:11:23] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [17:11:23] ==================== [PASSED] xe_wa_gt ===================== [17:11:23] ====================== [PASSED] xe_wa ====================== [17:11:23] ============================================================ [17:11:23] Testing complete. Ran 512 tests: passed: 494, skipped: 18 [17:11:23] Elapsed time: 45.500s total, 4.274s configuring, 40.709s building, 0.484s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [17:11:23] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [17:11:25] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 [17:11:56] Starting KUnit Kernel (1/1)... [17:11:56] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [17:11:56] ============ drm_test_pick_cmdline (2 subtests) ============ [17:11:56] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [17:11:56] =============== drm_test_pick_cmdline_named =============== [17:11:56] [PASSED] NTSC [17:11:56] [PASSED] NTSC-J [17:11:56] [PASSED] PAL [17:11:56] [PASSED] PAL-M [17:11:56] =========== [PASSED] drm_test_pick_cmdline_named =========== [17:11:56] ============== [PASSED] drm_test_pick_cmdline ============== [17:11:56] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [17:11:56] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [17:11:56] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [17:11:56] =========== drm_validate_clone_mode (2 subtests) =========== [17:11:56] ============== drm_test_check_in_clone_mode =============== [17:11:56] [PASSED] in_clone_mode [17:11:56] [PASSED] not_in_clone_mode [17:11:56] ========== [PASSED] drm_test_check_in_clone_mode =========== [17:11:56] =============== drm_test_check_valid_clones =============== [17:11:56] [PASSED] not_in_clone_mode [17:11:56] [PASSED] valid_clone [17:11:56] [PASSED] invalid_clone [17:11:56] =========== [PASSED] drm_test_check_valid_clones =========== [17:11:56] ============= [PASSED] drm_validate_clone_mode ============= [17:11:56] ============= drm_validate_modeset (1 subtest) ============= [17:11:56] [PASSED] drm_test_check_connector_changed_modeset [17:11:56] ============== [PASSED] drm_validate_modeset =============== [17:11:56] ====== drm_test_bridge_get_current_state (2 subtests) ====== [17:11:56] [PASSED] drm_test_drm_bridge_get_current_state_atomic [17:11:56] [PASSED] drm_test_drm_bridge_get_current_state_legacy [17:11:56] ======== [PASSED] drm_test_bridge_get_current_state ======== [17:11:56] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [17:11:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [17:11:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [17:11:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [17:11:56] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [17:11:56] ============== drm_bridge_alloc (2 subtests) =============== [17:11:56] [PASSED] drm_test_drm_bridge_alloc_basic [17:11:56] [PASSED] drm_test_drm_bridge_alloc_get_put [17:11:56] ================ [PASSED] drm_bridge_alloc ================= [17:11:56] ================== drm_buddy (9 subtests) ================== [17:11:56] [PASSED] drm_test_buddy_alloc_limit [17:11:56] [PASSED] drm_test_buddy_alloc_optimistic [17:11:56] [PASSED] drm_test_buddy_alloc_pessimistic [17:11:56] [PASSED] drm_test_buddy_alloc_pathological [17:11:56] [PASSED] drm_test_buddy_alloc_contiguous [17:11:56] [PASSED] drm_test_buddy_alloc_clear [17:11:56] [PASSED] drm_test_buddy_alloc_range_bias [17:11:56] [PASSED] drm_test_buddy_fragmentation_performance [17:11:56] [PASSED] drm_test_buddy_alloc_exceeds_max_order [17:11:56] ==================== [PASSED] drm_buddy ==================== [17:11:56] ============= drm_cmdline_parser (40 subtests) ============= [17:11:56] [PASSED] drm_test_cmdline_force_d_only [17:11:56] [PASSED] drm_test_cmdline_force_D_only_dvi [17:11:56] [PASSED] drm_test_cmdline_force_D_only_hdmi [17:11:56] [PASSED] drm_test_cmdline_force_D_only_not_digital [17:11:56] [PASSED] drm_test_cmdline_force_e_only [17:11:56] [PASSED] drm_test_cmdline_res [17:11:56] [PASSED] drm_test_cmdline_res_vesa [17:11:56] [PASSED] drm_test_cmdline_res_vesa_rblank [17:11:56] [PASSED] drm_test_cmdline_res_rblank [17:11:56] [PASSED] drm_test_cmdline_res_bpp [17:11:56] [PASSED] drm_test_cmdline_res_refresh [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [17:11:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [17:11:56] [PASSED] drm_test_cmdline_res_margins_force_on [17:11:56] [PASSED] drm_test_cmdline_res_vesa_margins [17:11:56] [PASSED] drm_test_cmdline_name [17:11:56] [PASSED] drm_test_cmdline_name_bpp [17:11:56] [PASSED] drm_test_cmdline_name_option [17:11:56] [PASSED] drm_test_cmdline_name_bpp_option [17:11:56] [PASSED] drm_test_cmdline_rotate_0 [17:11:56] [PASSED] drm_test_cmdline_rotate_90 [17:11:56] [PASSED] drm_test_cmdline_rotate_180 [17:11:56] [PASSED] drm_test_cmdline_rotate_270 [17:11:56] [PASSED] drm_test_cmdline_hmirror [17:11:56] [PASSED] drm_test_cmdline_vmirror [17:11:56] [PASSED] drm_test_cmdline_margin_options [17:11:56] [PASSED] drm_test_cmdline_multiple_options [17:11:56] [PASSED] drm_test_cmdline_bpp_extra_and_option [17:11:56] [PASSED] drm_test_cmdline_extra_and_option [17:11:56] [PASSED] drm_test_cmdline_freestanding_options [17:11:56] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [17:11:56] [PASSED] drm_test_cmdline_panel_orientation [17:11:56] ================ drm_test_cmdline_invalid ================= [17:11:56] [PASSED] margin_only [17:11:56] [PASSED] interlace_only [17:11:56] [PASSED] res_missing_x [17:11:56] [PASSED] res_missing_y [17:11:56] [PASSED] res_bad_y [17:11:56] [PASSED] res_missing_y_bpp [17:11:56] [PASSED] res_bad_bpp [17:11:56] [PASSED] res_bad_refresh [17:11:56] [PASSED] res_bpp_refresh_force_on_off [17:11:56] [PASSED] res_invalid_mode [17:11:56] [PASSED] res_bpp_wrong_place_mode [17:11:56] [PASSED] name_bpp_refresh [17:11:56] [PASSED] name_refresh [17:11:56] [PASSED] name_refresh_wrong_mode [17:11:56] [PASSED] name_refresh_invalid_mode [17:11:56] [PASSED] rotate_multiple [17:11:56] [PASSED] rotate_invalid_val [17:11:56] [PASSED] rotate_truncated [17:11:56] [PASSED] invalid_option [17:11:56] [PASSED] invalid_tv_option [17:11:56] [PASSED] truncated_tv_option [17:11:56] ============ [PASSED] drm_test_cmdline_invalid ============= [17:11:56] =============== drm_test_cmdline_tv_options =============== [17:11:56] [PASSED] NTSC [17:11:56] [PASSED] NTSC_443 [17:11:56] [PASSED] NTSC_J [17:11:56] [PASSED] PAL [17:11:56] [PASSED] PAL_M [17:11:56] [PASSED] PAL_N [17:11:56] [PASSED] SECAM [17:11:56] [PASSED] MONO_525 [17:11:56] [PASSED] MONO_625 [17:11:56] =========== [PASSED] drm_test_cmdline_tv_options =========== [17:11:56] =============== [PASSED] drm_cmdline_parser ================ [17:11:56] ========== drmm_connector_hdmi_init (20 subtests) ========== [17:11:56] [PASSED] drm_test_connector_hdmi_init_valid [17:11:56] [PASSED] drm_test_connector_hdmi_init_bpc_8 [17:11:56] [PASSED] drm_test_connector_hdmi_init_bpc_10 [17:11:56] [PASSED] drm_test_connector_hdmi_init_bpc_12 [17:11:56] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [17:11:56] [PASSED] drm_test_connector_hdmi_init_bpc_null [17:11:56] [PASSED] drm_test_connector_hdmi_init_formats_empty [17:11:56] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [17:11:56] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [17:11:56] [PASSED] supported_formats=0x9 yuv420_allowed=1 [17:11:56] [PASSED] supported_formats=0x9 yuv420_allowed=0 [17:11:56] [PASSED] supported_formats=0x3 yuv420_allowed=1 [17:11:56] [PASSED] supported_formats=0x3 yuv420_allowed=0 [17:11:56] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [17:11:56] [PASSED] drm_test_connector_hdmi_init_null_ddc [17:11:56] [PASSED] drm_test_connector_hdmi_init_null_product [17:11:56] [PASSED] drm_test_connector_hdmi_init_null_vendor [17:11:56] [PASSED] drm_test_connector_hdmi_init_product_length_exact [17:11:56] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [17:11:56] [PASSED] drm_test_connector_hdmi_init_product_valid [17:11:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [17:11:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [17:11:56] [PASSED] drm_test_connector_hdmi_init_vendor_valid [17:11:56] ========= drm_test_connector_hdmi_init_type_valid ========= [17:11:56] [PASSED] HDMI-A [17:11:56] [PASSED] HDMI-B [17:11:56] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [17:11:56] ======== drm_test_connector_hdmi_init_type_invalid ======== [17:11:56] [PASSED] Unknown [17:11:56] [PASSED] VGA [17:11:56] [PASSED] DVI-I [17:11:56] [PASSED] DVI-D [17:11:56] [PASSED] DVI-A [17:11:56] [PASSED] Composite [17:11:56] [PASSED] SVIDEO [17:11:56] [PASSED] LVDS [17:11:56] [PASSED] Component [17:11:56] [PASSED] DIN [17:11:56] [PASSED] DP [17:11:56] [PASSED] TV [17:11:56] [PASSED] eDP [17:11:56] [PASSED] Virtual [17:11:56] [PASSED] DSI [17:11:56] [PASSED] DPI [17:11:56] [PASSED] Writeback [17:11:56] [PASSED] SPI [17:11:56] [PASSED] USB [17:11:56] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [17:11:56] ============ [PASSED] drmm_connector_hdmi_init ============= [17:11:56] ============= drmm_connector_init (3 subtests) ============= [17:11:56] [PASSED] drm_test_drmm_connector_init [17:11:56] [PASSED] drm_test_drmm_connector_init_null_ddc [17:11:56] ========= drm_test_drmm_connector_init_type_valid ========= [17:11:56] [PASSED] Unknown [17:11:56] [PASSED] VGA [17:11:56] [PASSED] DVI-I [17:11:56] [PASSED] DVI-D [17:11:56] [PASSED] DVI-A [17:11:56] [PASSED] Composite [17:11:56] [PASSED] SVIDEO [17:11:56] [PASSED] LVDS [17:11:56] [PASSED] Component [17:11:56] [PASSED] DIN [17:11:56] [PASSED] DP [17:11:56] [PASSED] HDMI-A [17:11:56] [PASSED] HDMI-B [17:11:56] [PASSED] TV [17:11:56] [PASSED] eDP [17:11:56] [PASSED] Virtual [17:11:56] [PASSED] DSI [17:11:56] [PASSED] DPI [17:11:56] [PASSED] Writeback [17:11:56] [PASSED] SPI [17:11:56] [PASSED] USB [17:11:56] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [17:11:56] =============== [PASSED] drmm_connector_init =============== [17:11:56] ========= drm_connector_dynamic_init (6 subtests) ========== [17:11:56] [PASSED] drm_test_drm_connector_dynamic_init [17:11:56] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [17:11:56] [PASSED] drm_test_drm_connector_dynamic_init_not_added [17:11:56] [PASSED] drm_test_drm_connector_dynamic_init_properties [17:11:56] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [17:11:56] [PASSED] Unknown [17:11:56] [PASSED] VGA [17:11:56] [PASSED] DVI-I [17:11:56] [PASSED] DVI-D [17:11:56] [PASSED] DVI-A [17:11:56] [PASSED] Composite [17:11:56] [PASSED] SVIDEO [17:11:56] [PASSED] LVDS [17:11:56] [PASSED] Component [17:11:56] [PASSED] DIN [17:11:56] [PASSED] DP [17:11:56] [PASSED] HDMI-A [17:11:56] [PASSED] HDMI-B [17:11:56] [PASSED] TV [17:11:56] [PASSED] eDP [17:11:56] [PASSED] Virtual [17:11:56] [PASSED] DSI [17:11:56] [PASSED] DPI [17:11:56] [PASSED] Writeback [17:11:56] [PASSED] SPI [17:11:56] [PASSED] USB [17:11:56] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [17:11:56] ======== drm_test_drm_connector_dynamic_init_name ========= [17:11:56] [PASSED] Unknown [17:11:56] [PASSED] VGA [17:11:56] [PASSED] DVI-I [17:11:56] [PASSED] DVI-D [17:11:56] [PASSED] DVI-A [17:11:56] [PASSED] Composite [17:11:56] [PASSED] SVIDEO [17:11:56] [PASSED] LVDS [17:11:56] [PASSED] Component [17:11:56] [PASSED] DIN [17:11:56] [PASSED] DP [17:11:56] [PASSED] HDMI-A [17:11:56] [PASSED] HDMI-B [17:11:56] [PASSED] TV [17:11:56] [PASSED] eDP [17:11:56] [PASSED] Virtual [17:11:56] [PASSED] DSI [17:11:56] [PASSED] DPI [17:11:56] [PASSED] Writeback [17:11:56] [PASSED] SPI [17:11:56] [PASSED] USB [17:11:56] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [17:11:56] =========== [PASSED] drm_connector_dynamic_init ============ [17:11:56] ==== drm_connector_dynamic_register_early (4 subtests) ===== [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [17:11:56] ====== [PASSED] drm_connector_dynamic_register_early ======= [17:11:56] ======= drm_connector_dynamic_register (7 subtests) ======== [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_on_list [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_no_init [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [17:11:56] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [17:11:56] ========= [PASSED] drm_connector_dynamic_register ========== [17:11:56] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [17:11:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [17:11:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [17:11:56] === [PASSED] drm_connector_attach_broadcast_rgb_property === [17:11:56] ========== drm_get_tv_mode_from_name (2 subtests) ========== [17:11:56] ========== drm_test_get_tv_mode_from_name_valid =========== [17:11:56] [PASSED] NTSC [17:11:56] [PASSED] NTSC-443 [17:11:56] [PASSED] NTSC-J [17:11:56] [PASSED] PAL [17:11:56] [PASSED] PAL-M [17:11:56] [PASSED] PAL-N [17:11:56] [PASSED] SECAM [17:11:56] [PASSED] Mono [17:11:56] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [17:11:56] [PASSED] drm_test_get_tv_mode_from_name_truncated [17:11:56] ============ [PASSED] drm_get_tv_mode_from_name ============ [17:11:56] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [17:11:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [17:11:56] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [17:11:56] [PASSED] VIC 96 [17:11:56] [PASSED] VIC 97 [17:11:56] [PASSED] VIC 101 [17:11:56] [PASSED] VIC 102 [17:11:56] [PASSED] VIC 106 [17:11:56] [PASSED] VIC 107 [17:11:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [17:11:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [17:11:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [17:11:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [17:11:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [17:11:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [17:11:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [17:11:56] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [17:11:56] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [17:11:56] [PASSED] Automatic [17:11:56] [PASSED] Full [17:11:56] [PASSED] Limited 16:235 [17:11:56] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [17:11:56] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [17:11:56] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [17:11:56] == drm_hdmi_connector_get_output_format_name (2 subtests) == [17:11:56] === drm_test_drm_hdmi_connector_get_output_format_name ==== [17:11:56] [PASSED] RGB [17:11:56] [PASSED] YUV 4:2:0 [17:11:56] [PASSED] YUV 4:2:2 [17:11:56] [PASSED] YUV 4:4:4 [17:11:56] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [17:11:56] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [17:11:56] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [17:11:56] ============= drm_damage_helper (21 subtests) ============== [17:11:56] [PASSED] drm_test_damage_iter_no_damage [17:11:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src [17:11:56] [PASSED] drm_test_damage_iter_no_damage_src_moved [17:11:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [17:11:56] [PASSED] drm_test_damage_iter_no_damage_not_visible [17:11:56] [PASSED] drm_test_damage_iter_no_damage_no_crtc [17:11:56] [PASSED] drm_test_damage_iter_no_damage_no_fb [17:11:56] [PASSED] drm_test_damage_iter_simple_damage [17:11:56] [PASSED] drm_test_damage_iter_single_damage [17:11:56] [PASSED] drm_test_damage_iter_single_damage_intersect_src [17:11:56] [PASSED] drm_test_damage_iter_single_damage_outside_src [17:11:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src [17:11:56] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [17:11:56] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [17:11:56] [PASSED] drm_test_damage_iter_single_damage_src_moved [17:11:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [17:11:56] [PASSED] drm_test_damage_iter_damage [17:11:56] [PASSED] drm_test_damage_iter_damage_one_intersect [17:11:56] [PASSED] drm_test_damage_iter_damage_one_outside [17:11:56] [PASSED] drm_test_damage_iter_damage_src_moved [17:11:56] [PASSED] drm_test_damage_iter_damage_not_visible [17:11:56] ================ [PASSED] drm_damage_helper ================ [17:11:56] ============== drm_dp_mst_helper (3 subtests) ============== [17:11:56] ============== drm_test_dp_mst_calc_pbn_mode ============== [17:11:56] [PASSED] Clock 154000 BPP 30 DSC disabled [17:11:56] [PASSED] Clock 234000 BPP 30 DSC disabled [17:11:56] [PASSED] Clock 297000 BPP 24 DSC disabled [17:11:56] [PASSED] Clock 332880 BPP 24 DSC enabled [17:11:56] [PASSED] Clock 324540 BPP 24 DSC enabled [17:11:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [17:11:56] ============== drm_test_dp_mst_calc_pbn_div =============== [17:11:56] [PASSED] Link rate 2000000 lane count 4 [17:11:56] [PASSED] Link rate 2000000 lane count 2 [17:11:56] [PASSED] Link rate 2000000 lane count 1 [17:11:56] [PASSED] Link rate 1350000 lane count 4 [17:11:56] [PASSED] Link rate 1350000 lane count 2 [17:11:56] [PASSED] Link rate 1350000 lane count 1 [17:11:56] [PASSED] Link rate 1000000 lane count 4 [17:11:56] [PASSED] Link rate 1000000 lane count 2 [17:11:56] [PASSED] Link rate 1000000 lane count 1 [17:11:56] [PASSED] Link rate 810000 lane count 4 [17:11:56] [PASSED] Link rate 810000 lane count 2 [17:11:56] [PASSED] Link rate 810000 lane count 1 [17:11:56] [PASSED] Link rate 540000 lane count 4 [17:11:56] [PASSED] Link rate 540000 lane count 2 [17:11:56] [PASSED] Link rate 540000 lane count 1 [17:11:56] [PASSED] Link rate 270000 lane count 4 [17:11:56] [PASSED] Link rate 270000 lane count 2 [17:11:56] [PASSED] Link rate 270000 lane count 1 [17:11:56] [PASSED] Link rate 162000 lane count 4 [17:11:56] [PASSED] Link rate 162000 lane count 2 [17:11:56] [PASSED] Link rate 162000 lane count 1 [17:11:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [17:11:56] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [17:11:56] [PASSED] DP_ENUM_PATH_RESOURCES with port number [17:11:56] [PASSED] DP_POWER_UP_PHY with port number [17:11:56] [PASSED] DP_POWER_DOWN_PHY with port number [17:11:56] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [17:11:56] [PASSED] DP_ALLOCATE_PAYLOAD with port number [17:11:56] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [17:11:56] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [17:11:56] [PASSED] DP_QUERY_PAYLOAD with port number [17:11:56] [PASSED] DP_QUERY_PAYLOAD with VCPI [17:11:56] [PASSED] DP_REMOTE_DPCD_READ with port number [17:11:56] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [17:11:56] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [17:11:56] [PASSED] DP_REMOTE_DPCD_WRITE with port number [17:11:56] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [17:11:56] [PASSED] DP_REMOTE_DPCD_WRITE with data array [17:11:56] [PASSED] DP_REMOTE_I2C_READ with port number [17:11:56] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [17:11:56] [PASSED] DP_REMOTE_I2C_READ with transactions array [17:11:56] [PASSED] DP_REMOTE_I2C_WRITE with port number [17:11:56] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [17:11:56] [PASSED] DP_REMOTE_I2C_WRITE with data array [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [17:11:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [17:11:56] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [17:11:56] ================ [PASSED] drm_dp_mst_helper ================ [17:11:56] ================== drm_exec (7 subtests) =================== [17:11:56] [PASSED] sanitycheck [17:11:56] [PASSED] test_lock [17:11:56] [PASSED] test_lock_unlock [17:11:56] [PASSED] test_duplicates [17:11:56] [PASSED] test_prepare [17:11:56] [PASSED] test_prepare_array [17:11:56] [PASSED] test_multiple_loops [17:11:56] ==================== [PASSED] drm_exec ===================== [17:11:56] =========== drm_format_helper_test (17 subtests) =========== [17:11:56] ============== drm_test_fb_xrgb8888_to_gray8 ============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [17:11:56] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [17:11:56] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [17:11:56] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [17:11:56] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [17:11:56] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [17:11:56] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [17:11:56] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [17:11:56] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [17:11:56] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [17:11:56] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [17:11:56] ============== drm_test_fb_xrgb8888_to_mono =============== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [17:11:56] ==================== drm_test_fb_swab ===================== [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ================ [PASSED] drm_test_fb_swab ================= [17:11:56] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [17:11:56] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [17:11:56] [PASSED] single_pixel_source_buffer [17:11:56] [PASSED] single_pixel_clip_rectangle [17:11:56] [PASSED] well_known_colors [17:11:56] [PASSED] destination_pitch [17:11:56] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [17:11:56] ================= drm_test_fb_clip_offset ================= [17:11:56] [PASSED] pass through [17:11:56] [PASSED] horizontal offset [17:11:56] [PASSED] vertical offset [17:11:56] [PASSED] horizontal and vertical offset [17:11:56] [PASSED] horizontal offset (custom pitch) [17:11:56] [PASSED] vertical offset (custom pitch) [17:11:56] [PASSED] horizontal and vertical offset (custom pitch) [17:11:56] ============= [PASSED] drm_test_fb_clip_offset ============= [17:11:56] =================== drm_test_fb_memcpy ==================== [17:11:56] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [17:11:56] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [17:11:56] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [17:11:56] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [17:11:56] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [17:11:56] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [17:11:56] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [17:11:56] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [17:11:56] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [17:11:56] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [17:11:56] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [17:11:56] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [17:11:56] =============== [PASSED] drm_test_fb_memcpy ================ [17:11:56] ============= [PASSED] drm_format_helper_test ============== [17:11:56] ================= drm_format (18 subtests) ================= [17:11:56] [PASSED] drm_test_format_block_width_invalid [17:11:56] [PASSED] drm_test_format_block_width_one_plane [17:11:56] [PASSED] drm_test_format_block_width_two_plane [17:11:56] [PASSED] drm_test_format_block_width_three_plane [17:11:56] [PASSED] drm_test_format_block_width_tiled [17:11:56] [PASSED] drm_test_format_block_height_invalid [17:11:56] [PASSED] drm_test_format_block_height_one_plane [17:11:56] [PASSED] drm_test_format_block_height_two_plane [17:11:56] [PASSED] drm_test_format_block_height_three_plane [17:11:56] [PASSED] drm_test_format_block_height_tiled [17:11:56] [PASSED] drm_test_format_min_pitch_invalid [17:11:56] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [17:11:56] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [17:11:56] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [17:11:56] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [17:11:56] [PASSED] drm_test_format_min_pitch_two_plane [17:11:56] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [17:11:56] [PASSED] drm_test_format_min_pitch_tiled [17:11:56] =================== [PASSED] drm_format ==================== [17:11:56] ============== drm_framebuffer (10 subtests) =============== [17:11:56] ========== drm_test_framebuffer_check_src_coords ========== [17:11:56] [PASSED] Success: source fits into fb [17:11:56] [PASSED] Fail: overflowing fb with x-axis coordinate [17:11:56] [PASSED] Fail: overflowing fb with y-axis coordinate [17:11:56] [PASSED] Fail: overflowing fb with source width [17:11:56] [PASSED] Fail: overflowing fb with source height [17:11:56] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [17:11:56] [PASSED] drm_test_framebuffer_cleanup [17:11:56] =============== drm_test_framebuffer_create =============== [17:11:56] [PASSED] ABGR8888 normal sizes [17:11:56] [PASSED] ABGR8888 max sizes [17:11:56] [PASSED] ABGR8888 pitch greater than min required [17:11:56] [PASSED] ABGR8888 pitch less than min required [17:11:56] [PASSED] ABGR8888 Invalid width [17:11:56] [PASSED] ABGR8888 Invalid buffer handle [17:11:56] [PASSED] No pixel format [17:11:56] [PASSED] ABGR8888 Width 0 [17:11:56] [PASSED] ABGR8888 Height 0 [17:11:56] [PASSED] ABGR8888 Out of bound height * pitch combination [17:11:56] [PASSED] ABGR8888 Large buffer offset [17:11:56] [PASSED] ABGR8888 Buffer offset for inexistent plane [17:11:56] [PASSED] ABGR8888 Invalid flag [17:11:56] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [17:11:56] [PASSED] ABGR8888 Valid buffer modifier [17:11:56] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [17:11:56] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] NV12 Normal sizes [17:11:56] [PASSED] NV12 Max sizes [17:11:56] [PASSED] NV12 Invalid pitch [17:11:56] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [17:11:56] [PASSED] NV12 different modifier per-plane [17:11:56] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [17:11:56] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] NV12 Modifier for inexistent plane [17:11:56] [PASSED] NV12 Handle for inexistent plane [17:11:56] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [17:11:56] [PASSED] YVU420 Normal sizes [17:11:56] [PASSED] YVU420 Max sizes [17:11:56] [PASSED] YVU420 Invalid pitch [17:11:56] [PASSED] YVU420 Different pitches [17:11:56] [PASSED] YVU420 Different buffer offsets/pitches [17:11:56] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [17:11:56] [PASSED] YVU420 Valid modifier [17:11:56] [PASSED] YVU420 Different modifiers per plane [17:11:56] [PASSED] YVU420 Modifier for inexistent plane [17:11:56] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [17:11:56] [PASSED] X0L2 Normal sizes [17:11:56] [PASSED] X0L2 Max sizes [17:11:56] [PASSED] X0L2 Invalid pitch [17:11:56] [PASSED] X0L2 Pitch greater than minimum required [17:11:56] [PASSED] X0L2 Handle for inexistent plane [17:11:56] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [17:11:56] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [17:11:56] [PASSED] X0L2 Valid modifier [17:11:56] [PASSED] X0L2 Modifier for inexistent plane [17:11:56] =========== [PASSED] drm_test_framebuffer_create =========== [17:11:56] [PASSED] drm_test_framebuffer_free [17:11:56] [PASSED] drm_test_framebuffer_init [17:11:56] [PASSED] drm_test_framebuffer_init_bad_format [17:11:56] [PASSED] drm_test_framebuffer_init_dev_mismatch [17:11:56] [PASSED] drm_test_framebuffer_lookup [17:11:56] [PASSED] drm_test_framebuffer_lookup_inexistent [17:11:56] [PASSED] drm_test_framebuffer_modifiers_not_supported [17:11:56] ================= [PASSED] drm_framebuffer ================= [17:11:56] ================ drm_gem_shmem (8 subtests) ================ [17:11:56] [PASSED] drm_gem_shmem_test_obj_create [17:11:56] [PASSED] drm_gem_shmem_test_obj_create_private [17:11:56] [PASSED] drm_gem_shmem_test_pin_pages [17:11:56] [PASSED] drm_gem_shmem_test_vmap [17:11:56] [PASSED] drm_gem_shmem_test_get_sg_table [17:11:56] [PASSED] drm_gem_shmem_test_get_pages_sgt [17:11:56] [PASSED] drm_gem_shmem_test_madvise [17:11:56] [PASSED] drm_gem_shmem_test_purge [17:11:56] ================== [PASSED] drm_gem_shmem ================== [17:11:56] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [17:11:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [17:11:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [17:11:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [17:11:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [17:11:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [17:11:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [17:11:56] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [17:11:56] [PASSED] Automatic [17:11:56] [PASSED] Full [17:11:56] [PASSED] Limited 16:235 [17:11:56] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [17:11:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [17:11:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [17:11:56] [PASSED] drm_test_check_disable_connector [17:11:56] [PASSED] drm_test_check_hdmi_funcs_reject_rate [17:11:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [17:11:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [17:11:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [17:11:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [17:11:56] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [17:11:56] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [17:11:56] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [17:11:56] [PASSED] drm_test_check_output_bpc_dvi [17:11:56] [PASSED] drm_test_check_output_bpc_format_vic_1 [17:11:56] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [17:11:56] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [17:11:56] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [17:11:56] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [17:11:56] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [17:11:56] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [17:11:56] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [17:11:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [17:11:56] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [17:11:56] [PASSED] drm_test_check_broadcast_rgb_value [17:11:56] [PASSED] drm_test_check_bpc_8_value [17:11:56] [PASSED] drm_test_check_bpc_10_value [17:11:56] [PASSED] drm_test_check_bpc_12_value [17:11:56] [PASSED] drm_test_check_format_value [17:11:56] [PASSED] drm_test_check_tmds_char_value [17:11:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [17:11:56] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [17:11:56] [PASSED] drm_test_check_mode_valid [17:11:56] [PASSED] drm_test_check_mode_valid_reject [17:11:56] [PASSED] drm_test_check_mode_valid_reject_rate [17:11:56] [PASSED] drm_test_check_mode_valid_reject_max_clock [17:11:56] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [17:11:56] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [17:11:56] [PASSED] drm_test_check_infoframes [17:11:56] [PASSED] drm_test_check_reject_avi_infoframe [17:11:56] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [17:11:56] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [17:11:56] [PASSED] drm_test_check_reject_audio_infoframe [17:11:56] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [17:11:56] ================= drm_managed (2 subtests) ================= [17:11:56] [PASSED] drm_test_managed_release_action [17:11:56] [PASSED] drm_test_managed_run_action [17:11:56] =================== [PASSED] drm_managed =================== [17:11:56] =================== drm_mm (6 subtests) ==================== [17:11:56] [PASSED] drm_test_mm_init [17:11:56] [PASSED] drm_test_mm_debug [17:11:56] [PASSED] drm_test_mm_align32 [17:11:56] [PASSED] drm_test_mm_align64 [17:11:56] [PASSED] drm_test_mm_lowest [17:11:56] [PASSED] drm_test_mm_highest [17:11:56] ===================== [PASSED] drm_mm ====================== [17:11:56] ============= drm_modes_analog_tv (5 subtests) ============= [17:11:56] [PASSED] drm_test_modes_analog_tv_mono_576i [17:11:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i [17:11:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [17:11:56] [PASSED] drm_test_modes_analog_tv_pal_576i [17:11:56] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [17:11:56] =============== [PASSED] drm_modes_analog_tv =============== [17:11:56] ============== drm_plane_helper (2 subtests) =============== [17:11:56] =============== drm_test_check_plane_state ================ [17:11:56] [PASSED] clipping_simple [17:11:56] [PASSED] clipping_rotate_reflect [17:11:56] [PASSED] positioning_simple [17:11:56] [PASSED] upscaling [17:11:56] [PASSED] downscaling [17:11:56] [PASSED] rounding1 [17:11:56] [PASSED] rounding2 [17:11:56] [PASSED] rounding3 [17:11:56] [PASSED] rounding4 [17:11:56] =========== [PASSED] drm_test_check_plane_state ============ [17:11:56] =========== drm_test_check_invalid_plane_state ============ [17:11:56] [PASSED] positioning_invalid [17:11:56] [PASSED] upscaling_invalid [17:11:56] [PASSED] downscaling_invalid [17:11:56] ======= [PASSED] drm_test_check_invalid_plane_state ======== [17:11:56] ================ [PASSED] drm_plane_helper ================= [17:11:56] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [17:11:56] ====== drm_test_connector_helper_tv_get_modes_check ======= [17:11:56] [PASSED] None [17:11:56] [PASSED] PAL [17:11:56] [PASSED] NTSC [17:11:56] [PASSED] Both, NTSC Default [17:11:56] [PASSED] Both, PAL Default [17:11:56] [PASSED] Both, NTSC Default, with PAL on command-line [17:11:56] [PASSED] Both, PAL Default, with NTSC on command-line [17:11:56] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [17:11:56] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [17:11:56] ================== drm_rect (9 subtests) =================== [17:11:56] [PASSED] drm_test_rect_clip_scaled_div_by_zero [17:11:56] [PASSED] drm_test_rect_clip_scaled_not_clipped [17:11:56] [PASSED] drm_test_rect_clip_scaled_clipped [17:11:56] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [17:11:56] ================= drm_test_rect_intersect ================= [17:11:56] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [17:11:56] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [17:11:56] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [17:11:56] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [17:11:56] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [17:11:56] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [17:11:56] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [17:11:56] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [17:11:56] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [17:11:56] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [17:11:56] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [17:11:56] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [17:11:56] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [17:11:56] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [17:11:56] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 stty: 'standard input': Inappropriate ioctl for device [17:11:56] ============= [PASSED] drm_test_rect_intersect ============= [17:11:56] ================ drm_test_rect_calc_hscale ================ [17:11:56] [PASSED] normal use [17:11:56] [PASSED] out of max range [17:11:56] [PASSED] out of min range [17:11:56] [PASSED] zero dst [17:11:56] [PASSED] negative src [17:11:56] [PASSED] negative dst [17:11:56] ============ [PASSED] drm_test_rect_calc_hscale ============ [17:11:56] ================ drm_test_rect_calc_vscale ================ [17:11:56] [PASSED] normal use [17:11:56] [PASSED] out of max range [17:11:56] [PASSED] out of min range [17:11:56] [PASSED] zero dst [17:11:56] [PASSED] negative src [17:11:56] [PASSED] negative dst [17:11:56] ============ [PASSED] drm_test_rect_calc_vscale ============ [17:11:56] ================== drm_test_rect_rotate =================== [17:11:56] [PASSED] reflect-x [17:11:56] [PASSED] reflect-y [17:11:56] [PASSED] rotate-0 [17:11:56] [PASSED] rotate-90 [17:11:56] [PASSED] rotate-180 [17:11:56] [PASSED] rotate-270 [17:11:56] ============== [PASSED] drm_test_rect_rotate =============== [17:11:56] ================ drm_test_rect_rotate_inv ================= [17:11:56] [PASSED] reflect-x [17:11:56] [PASSED] reflect-y [17:11:56] [PASSED] rotate-0 [17:11:56] [PASSED] rotate-90 [17:11:56] [PASSED] rotate-180 [17:11:56] [PASSED] rotate-270 [17:11:56] ============ [PASSED] drm_test_rect_rotate_inv ============= [17:11:56] ==================== [PASSED] drm_rect ===================== [17:11:56] ============ drm_sysfb_modeset_test (1 subtest) ============ [17:11:56] ============ drm_test_sysfb_build_fourcc_list ============= [17:11:56] [PASSED] no native formats [17:11:56] [PASSED] XRGB8888 as native format [17:11:56] [PASSED] remove duplicates [17:11:56] [PASSED] convert alpha formats [17:11:56] [PASSED] random formats [17:11:56] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [17:11:56] ============= [PASSED] drm_sysfb_modeset_test ============== [17:11:56] ================== drm_fixp (2 subtests) =================== [17:11:56] [PASSED] drm_test_int2fixp [17:11:56] [PASSED] drm_test_sm2fixp [17:11:56] ==================== [PASSED] drm_fixp ===================== [17:11:56] ============================================================ [17:11:56] Testing complete. Ran 630 tests: passed: 630 [17:11:56] Elapsed time: 32.960s total, 1.617s configuring, 30.876s building, 0.432s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [17:11:56] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [17:11:58] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25 [17:12:07] Starting KUnit Kernel (1/1)... [17:12:07] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [17:12:07] ================= ttm_device (5 subtests) ================== [17:12:07] [PASSED] ttm_device_init_basic [17:12:07] [PASSED] ttm_device_init_multiple [17:12:07] [PASSED] ttm_device_fini_basic [17:12:07] [PASSED] ttm_device_init_no_vma_man [17:12:07] ================== ttm_device_init_pools ================== [17:12:07] [PASSED] No DMA allocations, no DMA32 required [17:12:07] [PASSED] DMA allocations, DMA32 required [17:12:07] [PASSED] No DMA allocations, DMA32 required [17:12:07] [PASSED] DMA allocations, no DMA32 required [17:12:07] ============== [PASSED] ttm_device_init_pools ============== [17:12:07] =================== [PASSED] ttm_device ==================== [17:12:07] ================== ttm_pool (8 subtests) =================== [17:12:07] ================== ttm_pool_alloc_basic =================== [17:12:07] [PASSED] One page [17:12:07] [PASSED] More than one page [17:12:07] [PASSED] Above the allocation limit [17:12:07] [PASSED] One page, with coherent DMA mappings enabled [17:12:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [17:12:07] ============== [PASSED] ttm_pool_alloc_basic =============== [17:12:07] ============== ttm_pool_alloc_basic_dma_addr ============== [17:12:07] [PASSED] One page [17:12:07] [PASSED] More than one page [17:12:07] [PASSED] Above the allocation limit [17:12:07] [PASSED] One page, with coherent DMA mappings enabled [17:12:07] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [17:12:07] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [17:12:07] [PASSED] ttm_pool_alloc_order_caching_match [17:12:07] [PASSED] ttm_pool_alloc_caching_mismatch [17:12:07] [PASSED] ttm_pool_alloc_order_mismatch [17:12:07] [PASSED] ttm_pool_free_dma_alloc [17:12:07] [PASSED] ttm_pool_free_no_dma_alloc [17:12:07] [PASSED] ttm_pool_fini_basic [17:12:07] ==================== [PASSED] ttm_pool ===================== [17:12:07] ================ ttm_resource (8 subtests) ================= [17:12:07] ================= ttm_resource_init_basic ================= [17:12:07] [PASSED] Init resource in TTM_PL_SYSTEM [17:12:07] [PASSED] Init resource in TTM_PL_VRAM [17:12:07] [PASSED] Init resource in a private placement [17:12:07] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [17:12:07] ============= [PASSED] ttm_resource_init_basic ============= [17:12:07] [PASSED] ttm_resource_init_pinned [17:12:07] [PASSED] ttm_resource_fini_basic [17:12:07] [PASSED] ttm_resource_manager_init_basic [17:12:07] [PASSED] ttm_resource_manager_usage_basic [17:12:07] [PASSED] ttm_resource_manager_set_used_basic [17:12:07] [PASSED] ttm_sys_man_alloc_basic [17:12:07] [PASSED] ttm_sys_man_free_basic [17:12:07] ================== [PASSED] ttm_resource =================== [17:12:07] =================== ttm_tt (15 subtests) =================== [17:12:07] ==================== ttm_tt_init_basic ==================== [17:12:07] [PASSED] Page-aligned size [17:12:07] [PASSED] Extra pages requested [17:12:07] ================ [PASSED] ttm_tt_init_basic ================ [17:12:07] [PASSED] ttm_tt_init_misaligned [17:12:07] [PASSED] ttm_tt_fini_basic [17:12:07] [PASSED] ttm_tt_fini_sg [17:12:07] [PASSED] ttm_tt_fini_shmem [17:12:07] [PASSED] ttm_tt_create_basic [17:12:07] [PASSED] ttm_tt_create_invalid_bo_type [17:12:07] [PASSED] ttm_tt_create_ttm_exists [17:12:07] [PASSED] ttm_tt_create_failed [17:12:07] [PASSED] ttm_tt_destroy_basic [17:12:07] [PASSED] ttm_tt_populate_null_ttm [17:12:07] [PASSED] ttm_tt_populate_populated_ttm [17:12:07] [PASSED] ttm_tt_unpopulate_basic [17:12:07] [PASSED] ttm_tt_unpopulate_empty_ttm [17:12:07] [PASSED] ttm_tt_swapin_basic [17:12:07] ===================== [PASSED] ttm_tt ====================== [17:12:07] =================== ttm_bo (14 subtests) =================== [17:12:07] =========== ttm_bo_reserve_optimistic_no_ticket =========== [17:12:07] [PASSED] Cannot be interrupted and sleeps [17:12:07] [PASSED] Cannot be interrupted, locks straight away [17:12:07] [PASSED] Can be interrupted, sleeps [17:12:07] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [17:12:07] [PASSED] ttm_bo_reserve_locked_no_sleep [17:12:07] [PASSED] ttm_bo_reserve_no_wait_ticket [17:12:07] [PASSED] ttm_bo_reserve_double_resv [17:12:07] [PASSED] ttm_bo_reserve_interrupted [17:12:07] [PASSED] ttm_bo_reserve_deadlock [17:12:07] [PASSED] ttm_bo_unreserve_basic [17:12:07] [PASSED] ttm_bo_unreserve_pinned [17:12:07] [PASSED] ttm_bo_unreserve_bulk [17:12:07] [PASSED] ttm_bo_fini_basic [17:12:07] [PASSED] ttm_bo_fini_shared_resv [17:12:07] [PASSED] ttm_bo_pin_basic [17:12:07] [PASSED] ttm_bo_pin_unpin_resource [17:12:07] [PASSED] ttm_bo_multiple_pin_one_unpin [17:12:07] ===================== [PASSED] ttm_bo ====================== [17:12:07] ============== ttm_bo_validate (21 subtests) =============== [17:12:07] ============== ttm_bo_init_reserved_sys_man =============== [17:12:07] [PASSED] Buffer object for userspace [17:12:07] [PASSED] Kernel buffer object [17:12:07] [PASSED] Shared buffer object [17:12:07] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [17:12:07] ============== ttm_bo_init_reserved_mock_man ============== [17:12:07] [PASSED] Buffer object for userspace [17:12:07] [PASSED] Kernel buffer object [17:12:07] [PASSED] Shared buffer object [17:12:07] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [17:12:07] [PASSED] ttm_bo_init_reserved_resv [17:12:07] ================== ttm_bo_validate_basic ================== [17:12:07] [PASSED] Buffer object for userspace [17:12:07] [PASSED] Kernel buffer object [17:12:07] [PASSED] Shared buffer object [17:12:07] ============== [PASSED] ttm_bo_validate_basic ============== [17:12:07] [PASSED] ttm_bo_validate_invalid_placement [17:12:07] ============= ttm_bo_validate_same_placement ============== [17:12:07] [PASSED] System manager [17:12:07] [PASSED] VRAM manager [17:12:07] ========= [PASSED] ttm_bo_validate_same_placement ========== [17:12:07] [PASSED] ttm_bo_validate_failed_alloc [17:12:07] [PASSED] ttm_bo_validate_pinned [17:12:07] [PASSED] ttm_bo_validate_busy_placement [17:12:07] ================ ttm_bo_validate_multihop ================= [17:12:07] [PASSED] Buffer object for userspace [17:12:07] [PASSED] Kernel buffer object [17:12:07] [PASSED] Shared buffer object [17:12:07] ============ [PASSED] ttm_bo_validate_multihop ============= [17:12:07] ========== ttm_bo_validate_no_placement_signaled ========== [17:12:07] [PASSED] Buffer object in system domain, no page vector [17:12:07] [PASSED] Buffer object in system domain with an existing page vector [17:12:07] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [17:12:07] ======== ttm_bo_validate_no_placement_not_signaled ======== [17:12:07] [PASSED] Buffer object for userspace [17:12:07] [PASSED] Kernel buffer object [17:12:07] [PASSED] Shared buffer object [17:12:07] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [17:12:07] [PASSED] ttm_bo_validate_move_fence_signaled [17:12:07] ========= ttm_bo_validate_move_fence_not_signaled ========= [17:12:07] [PASSED] Waits for GPU [17:12:07] [PASSED] Tries to lock straight away [17:12:07] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [17:12:07] [PASSED] ttm_bo_validate_happy_evict [17:12:07] [PASSED] ttm_bo_validate_all_pinned_evict [17:12:07] [PASSED] ttm_bo_validate_allowed_only_evict [17:12:07] [PASSED] ttm_bo_validate_deleted_evict [17:12:07] [PASSED] ttm_bo_validate_busy_domain_evict [17:12:07] [PASSED] ttm_bo_validate_evict_gutting [17:12:07] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [17:12:07] ================= [PASSED] ttm_bo_validate ================= [17:12:07] ============================================================ [17:12:07] Testing complete. Ran 101 tests: passed: 101 [17:12:07] Elapsed time: 11.108s total, 1.624s configuring, 9.268s building, 0.173s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for Attempt to fixup reset, wedge, unload corner cases 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong ` (5 preceding siblings ...) 2026-01-27 17:12 ` ✓ CI.KUnit: success for Attempt to fixup reset, wedge, unload corner cases Patchwork @ 2026-01-27 18:08 ` Patchwork 2026-01-27 22:26 ` ✗ Xe.CI.Full: failure " Patchwork 7 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-01-27 18:08 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1502 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/160715/ State : success == Summary == CI Bug Log - changes from xe-4454-65d734d5fb564177d85062306a4873e14400fab7_BAT -> xe-pw-160715v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 11) ------------------------------ Missing (1): bat-bmg-3 Known issues ------------ Here are the changes found in xe-pw-160715v1_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@reltime: - bat-dg2-oem2: [FAIL][1] ([Intel XE#6520]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/bat-dg2-oem2/igt@xe_waitfence@reltime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * Linux: xe-4454-65d734d5fb564177d85062306a4873e14400fab7 -> xe-pw-160715v1 IGT_8720: b37a4d70080afd7426cb249787545df75f762dc0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4454-65d734d5fb564177d85062306a4873e14400fab7: 65d734d5fb564177d85062306a4873e14400fab7 xe-pw-160715v1: 160715v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/index.html [-- Attachment #2: Type: text/html, Size: 2067 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for Attempt to fixup reset, wedge, unload corner cases 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong ` (6 preceding siblings ...) 2026-01-27 18:08 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-01-27 22:26 ` Patchwork 2026-01-28 3:24 ` Matthew Brost 7 siblings, 1 reply; 19+ messages in thread From: Patchwork @ 2026-01-27 22:26 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 39566 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/160715/ State : failure == Summary == CI Bug Log - changes from xe-4454-65d734d5fb564177d85062306a4873e14400fab7_FULL -> xe-pw-160715v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-160715v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-160715v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-160715v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue: - shard-lnl: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-lnl: [PASS][4] -> [ABORT][5] +10 other tests abort [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][6] -> [ABORT][7] +10 other tests abort [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html Known issues ------------ Here are the changes found in xe-pw-160715v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-hang@pipe-a-edp-1: - shard-lnl: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#7063]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@kms_async_flips@async-flip-hang@pipe-a-edp-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_async_flips@async-flip-hang@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#7084]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d@pipe-b-edp-1: - shard-lnl: NOTRUN -> [FAIL][22] ([Intel XE#6968]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d@pipe-b-edp-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1468]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3278]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#6707]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#6715]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4354]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-output-formats: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2244]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2244]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1421]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@blocking-wf_vblank@a-dp2: - shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#6266]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@a-dp2.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1401]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2293] / [Intel XE#2380]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2293]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6312]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2311]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4141]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#656]) +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7061]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#651]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2313]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6911]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7130]) +16 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7130] / [Intel XE#7131]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7131]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1439] / [Intel XE#836]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#1489]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-dpms: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#4609]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render@edp-1.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3414] / [Intel XE#3904]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2330]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1499]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_eudebug@basic-vm-access: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4837]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access.html * igt@xe_eudebug_online@basic-breakpoint: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_eudebug_online@pagefault-one-of-many: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6665]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_eudebug_online@pagefault-one-of-many.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#6321]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#688]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_evict@evict-large-external-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2322]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-null-defer-bind: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1392]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_basic@multigpu-once-null-defer-bind.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7136]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7136]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-basic: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6874]) +9 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_multi_queue@many-execs-preempt-mode-basic.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6874]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority.html * igt@xe_exec_system_allocator@many-large-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4943]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset.html * igt@xe_exec_threads@threads-multi-queue-rebind-err: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-rebind-err.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2459] / [Intel XE#2596]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_media_fill@media-fill.html * igt@xe_module_load@load: - shard-lnl: ([PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103]) -> ([PASS][104], [PASS][105], [PASS][106], [SKIP][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129]) ([Intel XE#378]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6964]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_multigpu_svm@mgpu-coherency-fail-basic: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#6964]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html * igt@xe_pm@d3cold-i2c: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#5694]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_pm@d3cold-i2c.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4650]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#4733]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#944]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_vm@out-of-memory: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#5745]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_vm@out-of-memory.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: [PASS][137] -> [ABORT][138] ([Intel XE#3119]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_wedged@wedged-at-any-timeout.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][139] ([Intel XE#301]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][141] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][142] +1 other test pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][143] ([Intel XE#6361]) -> [PASS][144] +2 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-bmg: [FAIL][145] ([Intel XE#6361]) -> [PASS][146] +4 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-9/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-lnl: [ABORT][147] ([Intel XE#5466]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html #### Warnings #### * igt@xe_exec_fault_mode@once-userptr-invalidate-imm: - shard-lnl: [DMESG-WARN][149] ([Intel XE#4537] / [Intel XE#7063]) -> [DMESG-WARN][150] ([Intel XE#7063]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-4454-65d734d5fb564177d85062306a4873e14400fab7 -> xe-pw-160715v1 IGT_8720: b37a4d70080afd7426cb249787545df75f762dc0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4454-65d734d5fb564177d85062306a4873e14400fab7: 65d734d5fb564177d85062306a4873e14400fab7 xe-pw-160715v1: 160715v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/index.html [-- Attachment #2: Type: text/html, Size: 44107 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Attempt to fixup reset, wedge, unload corner cases 2026-01-27 22:26 ` ✗ Xe.CI.Full: failure " Patchwork @ 2026-01-28 3:24 ` Matthew Brost 0 siblings, 0 replies; 19+ messages in thread From: Matthew Brost @ 2026-01-28 3:24 UTC (permalink / raw) To: intel-xe; +Cc: Zhanjun Dong On Tue, Jan 27, 2026 at 10:26:43PM +0000, Patchwork wrote: > == Series Details == > > Series: Attempt to fixup reset, wedge, unload corner cases > URL : https://patchwork.freedesktop.org/series/160715/ > State : failure > > == Summary == > > CI Bug Log - changes from xe-4454-65d734d5fb564177d85062306a4873e14400fab7_FULL -> xe-pw-160715v1_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with xe-pw-160715v1_FULL absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in xe-pw-160715v1_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 (2 -> 2) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in xe-pw-160715v1_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: > - shard-bmg: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html > > * igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue: > - shard-lnl: NOTRUN -> [ABORT][3] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html > > * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: > - shard-lnl: [PASS][4] -> [ABORT][5] +10 other tests abort > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html > > * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: > - shard-bmg: [PASS][6] -> [ABORT][7] +10 other tests abort > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html > It looks like the fault injection texts are somehow preventing queues from being torn down on driver unload. Nothing obvious is popping out as a problem in the code. Not sure what is going on. Matt > > Known issues > ------------ > > Here are the changes found in xe-pw-160715v1_FULL that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_async_flips@async-flip-hang@pipe-a-edp-1: > - shard-lnl: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#7063]) > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@kms_async_flips@async-flip-hang@pipe-a-edp-1.html > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_async_flips@async-flip-hang@pipe-a-edp-1.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-270: > - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@linear-8bpp-rotate-90: > - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +1 other test skip > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-32bpp-rotate-0: > - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip > [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: > - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip > [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html > > * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: > - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +6 other tests skip > [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html > > * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip > [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html > > * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: > - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) > [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html > > * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: > - shard-bmg: [PASS][17] -> [INCOMPLETE][18] ([Intel XE#7084]) > [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html > [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html > > * igt@kms_chamelium_color@ctm-negative: > - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325]) > [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_chamelium_color@ctm-negative.html > > * igt@kms_chamelium_color@gamma: > - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306]) > [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_chamelium_color@gamma.html > > * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: > - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +2 other tests skip > [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html > > * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d@pipe-b-edp-1: > - shard-lnl: NOTRUN -> [FAIL][22] ([Intel XE#6968]) +3 other tests fail > [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d@pipe-b-edp-1.html > > * igt@kms_content_protection@mei-interface: > - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1468]) > [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_content_protection@mei-interface.html > > * igt@kms_content_protection@srm: > - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3278]) > [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_content_protection@srm.html > > * igt@kms_content_protection@uevent-hdcp14: > - shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#6707]) +1 other test fail > [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html > > * igt@kms_cursor_crc@cursor-random-64x21: > - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) > [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_cursor_crc@cursor-random-64x21.html > > * igt@kms_cursor_crc@cursor-rapid-movement-32x32: > - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424]) > [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html > > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309]) > [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic: > - shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#6715]) > [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html > [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html > > * igt@kms_dp_link_training@uhbr-mst: > - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4354]) > [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_dp_link_training@uhbr-mst.html > > * igt@kms_dsc@dsc-with-output-formats: > - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2244]) > [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats.html > > * igt@kms_dsc@dsc-with-output-formats-with-bpc: > - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2244]) > [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html > > * igt@kms_flip@2x-flip-vs-suspend-interruptible: > - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1421]) +1 other test skip > [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html > > * igt@kms_flip@blocking-wf_vblank@a-dp2: > - shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#6266]) +1 other test fail > [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@a-dp2.html > [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@a-dp2.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: > - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1401]) +1 other test skip > [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: > - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip > [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: > - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2293] / [Intel XE#2380]) > [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: > - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2293]) > [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html > > * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt: > - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6312]) > [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: > - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2311]) +3 other tests skip > [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: > - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4141]) +1 other test skip > [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: > - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#656]) +9 other tests skip > [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: > - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7061]) +1 other test skip > [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt: > - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#651]) +2 other tests skip > [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: > - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2313]) +4 other tests skip > [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: > - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) > [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html > > * igt@kms_joiner@basic-ultra-joiner: > - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6911]) > [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_joiner@basic-ultra-joiner.html > > * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0: > - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7130]) +16 other tests skip > [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0.html > > * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: > - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7130] / [Intel XE#7131]) +1 other test skip > [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html > > * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: > - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7131]) +3 other tests skip > [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html > > * igt@kms_pm_rpm@dpms-mode-unset-lpsp: > - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1439] / [Intel XE#836]) > [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html > > * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: > - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip > [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html > > * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: > - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#1489]) > [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html > > * igt@kms_psr@fbc-psr-dpms: > - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip > [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_psr@fbc-psr-dpms.html > > * igt@kms_psr@fbc-psr2-sprite-render: > - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406]) +2 other tests skip > [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render.html > > * igt@kms_psr@fbc-psr2-sprite-render@edp-1: > - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#4609]) > [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render@edp-1.html > > * igt@kms_rotation_crc@primary-rotation-270: > - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3414] / [Intel XE#3904]) > [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2330]) > [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html > > * igt@kms_vrr@seamless-rr-switch-drrs: > - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1499]) > [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@kms_vrr@seamless-rr-switch-drrs.html > > * igt@xe_eudebug@basic-vm-access: > - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4837]) > [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access.html > > * igt@xe_eudebug_online@basic-breakpoint: > - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip > [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_eudebug_online@basic-breakpoint.html > > * igt@xe_eudebug_online@pagefault-one-of-many: > - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6665]) > [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_eudebug_online@pagefault-one-of-many.html > > * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: > - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip > [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html > > * igt@xe_evict@evict-beng-mixed-many-threads-small: > - shard-bmg: [PASS][66] -> [INCOMPLETE][67] ([Intel XE#6321]) > [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html > [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html > > * igt@xe_evict@evict-large-external-cm: > - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#688]) > [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_evict@evict-large-external-cm.html > > * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: > - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2322]) +1 other test skip > [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html > > * igt@xe_exec_basic@multigpu-once-null-defer-bind: > - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1392]) > [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_basic@multigpu-once-null-defer-bind.html > > * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch: > - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7136]) +1 other test skip > [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html > > * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault: > - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7136]) +3 other tests skip > [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html > > * igt@xe_exec_multi_queue@many-execs-preempt-mode-basic: > - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6874]) +9 other tests skip > [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_multi_queue@many-execs-preempt-mode-basic.html > > * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority: > - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6874]) +4 other tests skip > [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority.html > > * igt@xe_exec_system_allocator@many-large-mmap-new-huge-nomemset: > - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4943]) +7 other tests skip > [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-new-huge-nomemset.html > > * igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset: > - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4943]) +7 other tests skip > [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset.html > > * igt@xe_exec_threads@threads-multi-queue-rebind-err: > - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +3 other tests skip > [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-rebind-err.html > > * igt@xe_media_fill@media-fill: > - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2459] / [Intel XE#2596]) > [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_media_fill@media-fill.html > > * igt@xe_module_load@load: > - shard-lnl: ([PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103]) -> ([PASS][104], [PASS][105], [PASS][106], [SKIP][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129]) ([Intel XE#378]) > [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html > [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html > [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html > [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html > [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html > [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html > [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html > [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html > [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@xe_module_load@load.html > [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html > [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html > [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html > [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-3/igt@xe_module_load@load.html > [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_module_load@load.html > [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html > [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html > [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@xe_module_load@load.html > [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html > [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html > [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html > [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html > [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_module_load@load.html > [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html > [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_module_load@load.html > [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-4/igt@xe_module_load@load.html > [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html > [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html > [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html > [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html > [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html > [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html > [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html > [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-1/igt@xe_module_load@load.html > [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html > [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html > [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_module_load@load.html > [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html > [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html > [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html > [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html > [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html > [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html > [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html > [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-7/igt@xe_module_load@load.html > [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_module_load@load.html > [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html > [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html > [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-8/igt@xe_module_load@load.html > [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html > [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-2/igt@xe_module_load@load.html > [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_module_load@load.html > > * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: > - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6964]) > [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html > > * igt@xe_multigpu_svm@mgpu-coherency-fail-basic: > - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#6964]) +1 other test skip > [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html > > * igt@xe_pm@d3cold-i2c: > - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#5694]) > [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_pm@d3cold-i2c.html > > * igt@xe_pmu@fn-engine-activity-sched-if-idle: > - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4650]) > [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html > > * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: > - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#4733]) > [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html > > * igt@xe_query@multigpu-query-pxp-status: > - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#944]) +1 other test skip > [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@xe_query@multigpu-query-pxp-status.html > > * igt@xe_vm@out-of-memory: > - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#5745]) > [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_vm@out-of-memory.html > > * igt@xe_wedged@wedged-at-any-timeout: > - shard-lnl: [PASS][137] -> [ABORT][138] ([Intel XE#3119]) > [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-5/igt@xe_wedged@wedged-at-any-timeout.html > [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_wedged@wedged-at-any-timeout.html > > > #### Possible fixes #### > > * igt@kms_flip@flip-vs-expired-vblank-interruptible: > - shard-lnl: [FAIL][139] ([Intel XE#301]) -> [PASS][140] +1 other test pass > [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html > > * igt@kms_flip@flip-vs-suspend-interruptible: > - shard-bmg: [INCOMPLETE][141] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][142] +1 other test pass > [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html > [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html > > * igt@kms_setmode@basic@pipe-b-edp-1: > - shard-lnl: [FAIL][143] ([Intel XE#6361]) -> [PASS][144] +2 other tests pass > [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html > [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html > > * igt@kms_setmode@basic@pipe-b-hdmi-a-3: > - shard-bmg: [FAIL][145] ([Intel XE#6361]) -> [PASS][146] +4 other tests pass > [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-bmg-9/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html > [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-bmg-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html > > * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: > - shard-lnl: [ABORT][147] ([Intel XE#5466]) -> [PASS][148] > [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html > [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html > > > #### Warnings #### > > * igt@xe_exec_fault_mode@once-userptr-invalidate-imm: > - shard-lnl: [DMESG-WARN][149] ([Intel XE#4537] / [Intel XE#7063]) -> [DMESG-WARN][150] ([Intel XE#7063]) > [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4454-65d734d5fb564177d85062306a4873e14400fab7/shard-lnl-8/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html > [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/shard-lnl-4/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 > [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 > [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 > [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 > [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 > [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 > [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 > [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 > [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 > [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 > [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 > [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 > [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 > [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 > [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 > [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 > [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 > [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 > [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 > [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 > [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 > [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 > [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 > [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 > [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 > [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 > [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 > [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 > [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 > [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 > [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 > [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 > [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 > [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 > [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 > [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 > [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 > [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 > [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 > [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 > [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 > [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 > [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537 > [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 > [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 > [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 > [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 > [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 > [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 > [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 > [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745 > [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 > [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 > [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 > [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 > [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 > [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 > [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 > [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 > [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 > [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 > [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 > [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 > [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 > [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 > [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 > [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063 > [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 > [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 > [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 > [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 > [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 > [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 > [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 > [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 > > > Build changes > ------------- > > * Linux: xe-4454-65d734d5fb564177d85062306a4873e14400fab7 -> xe-pw-160715v1 > > IGT_8720: b37a4d70080afd7426cb249787545df75f762dc0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-4454-65d734d5fb564177d85062306a4873e14400fab7: 65d734d5fb564177d85062306a4873e14400fab7 > xe-pw-160715v1: 160715v1 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160715v1/index.html ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v9 0/7] Attempt to fixup reset, wedge, unload corner cases
@ 2026-03-10 22:50 Zhanjun Dong
2026-03-11 16:20 ` ✗ Xe.CI.FULL: failure for " Patchwork
0 siblings, 1 reply; 19+ messages in thread
From: Zhanjun Dong @ 2026-03-10 22:50 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
We have several bug reports [1], [2], [3] describing failures in reset,
wedge, and unload corner cases where memory is not properly freed or
fences fail to signal. This patch attempts to address the issue by
forcefully killing any remaining queues on driver unload and wedging the
device if not in mode 2.
Zhanjun Dong
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466
[2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530
[3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029
---
History started from v2 (v1 not found):
v9:
- Limit 1 author per patch to avoid confusion in git bisect
v8:
- Bug fix for Assertion `xe_guc_read_stopped(guc) == 1` failed
- Add kernel-doc (Michal)
- Rename function __xe_guc_submit_reset_prepare (Michal)
- Remove empty errout: block, change goto to return (Michal)
v7:
- Add "Open-code GGTT MMIO access protection" and rebase with baseline changes
v6:
- Split guc_submit_fini into 2 parts, device related by devm and software
only part by drmm
v5:
- Removed redundant xe_guc_ct_stop() and __xe_guc_submit_reset_prepare()
calls (Michal and Matthew)
- Split patch 3 into 2 patches(new #3 and #4), #3 is for fixes old patch purpose,
#4 add as separate commit uses the enum for better code maintainability (Matthew)
v4:
- Make guc_submit_fini a devm managed action
- Squash patch 2 with 6 from v3
- Commit message update (Matthew)
v3:
- Add patch 3-6 in series
- For "Trigger queue cleanup if not in wedged mode 2":
Add guc_ct_stop and reset prepare in patch of:
Sync with baseline changes
Matthew Brost (2):
drm/xe: Always kill exec queues in xe_guc_submit_pause_abort
drm/xe: Open-code GGTT MMIO access protection
Zhanjun Dong (5):
drm/xe: Forcefully tear down exec queues in GuC submit fini
drm/xe: Trigger queue cleanup if not in wedged mode 2
drm/xe: Use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET enum instead of
magic number
drm/xe/guc: Ensure CT state transitions via STOP before DISABLED
drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup
drivers/gpu/drm/xe/xe_ggtt.c | 15 +++---
drivers/gpu/drm/xe/xe_guc.c | 26 ++++++++-
drivers/gpu/drm/xe/xe_guc.h | 1 +
drivers/gpu/drm/xe/xe_guc_ct.c | 1 +
drivers/gpu/drm/xe/xe_guc_submit.c | 87 +++++++++++++++++++++---------
drivers/gpu/drm/xe/xe_uc.c | 22 +++-----
6 files changed, 104 insertions(+), 48 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.FULL: failure for Attempt to fixup reset, wedge, unload corner cases 2026-03-10 22:50 [PATCH v9 0/7] " Zhanjun Dong @ 2026-03-11 16:20 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-03-11 16:20 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 64450 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/162978/ State : failure == Summary == CI Bug Log - changes from xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce_FULL -> xe-pw-162978v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-162978v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-162978v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-162978v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-10/igt@xe_wedged@wedged-at-any-timeout.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in xe-pw-162978v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +5 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2887]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2390] / [Intel XE#6974]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +4 other tests fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2341]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1424]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2291]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2286] / [Intel XE#6035]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#1340]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4354]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2244]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#7542] / [i915#4767]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-6/igt@kms_fbcon_fbt@fbc-suspend.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-panning: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2316]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2316]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#301]) +2 other tests fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1397] / [Intel XE#7385]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7351]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7179]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7179]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2311]) +11 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4141]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#656]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6312]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2312]) +11 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2313]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#1503]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@kms_hdr@static-toggle-suspend.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6901]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7130]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-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-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7283]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2393]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#4596]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7376] / [Intel XE#870]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2392] / [Intel XE#6927]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2499]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1489]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1406]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#1435]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-modifiers: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6503]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_vrr@flip-basic-fastset: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1499]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1447] / [Intel XE#7469]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_compute@ccs-mode-compute-kernel.html - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6599]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4837]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_eudebug_online@pagefault-one-of-many: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6665]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_eudebug_online@pagefault-one-of-many.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][78] ([Intel XE#6321]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html * igt@xe_evict@evict-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7140]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_evict@evict-small-multi-queue.html * igt@xe_exec_balancer@once-cm-parallel-rebind: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#7482]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_balancer@once-cm-parallel-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1392]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7136]) +7 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7136]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html * igt@xe_exec_multi_queue@max-queues-basic: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#6874]) +17 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-basic.html * igt@xe_exec_multi_queue@max-queues-priority-smem: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#6874]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_multi_queue@max-queues-priority-smem.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7138]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7138]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#2284] / [Intel XE#7370]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_pm@d3cold-mocs.html - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2284] / [Intel XE#7370]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_pm@d3cold-mocs.html * igt@xe_prefetch_fault@prefetch-fault: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7596]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault.html * igt@xe_pxp@display-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4733] / [Intel XE#7417]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@xe_pxp@display-pxp-fb.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#944]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@xe_query@multigpu-query-topology.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][97] ([Intel XE#6819] / [Intel XE#6891]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][99] ([Intel XE#6819]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][101] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][103] ([Intel XE#2291]) -> [PASS][104] +2 other tests pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][105] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][106] +1 other test pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][107] ([Intel XE#2316]) -> [PASS][108] +5 other tests pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-10/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [SKIP][109] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [DMESG-FAIL][111] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][113] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][114] +1 other test pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][115] ([Intel XE#1503]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-10/igt@kms_hdr@invalid-hdr.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][117] ([Intel XE#7086]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [SKIP][119] ([Intel XE#4596]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][121] ([Intel XE#1435]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12: - shard-lnl: [DMESG-WARN][123] -> [PASS][124] +1 other test pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-2/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-5/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][125] ([Intel XE#1499]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_vrr@negative-basic.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][127] ([Intel XE#2142]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_exec_system_allocator@many-execqueues-new-busy: - shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [PASS][130] +144 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-new-busy.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_exec_system_allocator@many-execqueues-new-busy.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [FAIL][131] ([Intel XE#5625]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-lnl: [ABORT][133] ([Intel XE#5466]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-lnl-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-lnl-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html - shard-bmg: [ABORT][135] ([Intel XE#5466] / [Intel XE#6652] / [Intel XE#7577]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2327]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#1124]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#367] / [Intel XE#7354]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#2887]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#2252]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][147] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][148] ([Intel XE#2341]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-bmg: [FAIL][149] ([Intel XE#3304] / [Intel XE#7374]) -> [SKIP][150] ([Intel XE#7194]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#2341]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_content_protection@content-type-change.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][153] ([Intel XE#2341]) -> [FAIL][154] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_content_protection@legacy.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [FAIL][155] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][156] ([Intel XE#7194]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [SKIP][157] ([Intel XE#7194]) -> [FAIL][158] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [FAIL][160] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_content_protection@srm.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [FAIL][161] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][162] ([Intel XE#7194]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_content_protection@uevent-hdcp14.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2321] / [Intel XE#7355]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#2244]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#6126] / [Intel XE#776]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#7178] / [Intel XE#7349]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][171] ([Intel XE#2312]) -> [SKIP][172] ([Intel XE#2311]) +14 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#2311]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#4141]) +8 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#4141]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][179] ([Intel XE#4141]) -> [SKIP][180] ([Intel XE#2312]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][181] ([Intel XE#2311]) -> [SKIP][182] ([Intel XE#2312]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: - shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2313]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#2313]) +13 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][189] ([Intel XE#2313]) -> [SKIP][190] ([Intel XE#2312]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][191] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][192] ([Intel XE#3544]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#6901]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#5021] / [Intel XE#7377]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#1489]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][199] ([Intel XE#6703]) -> [SKIP][200] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][201] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][202] ([Intel XE#1729] / [Intel XE#7424]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#4837]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_eudebug@basic-exec-queues.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug_online@interrupt-reconnect: - shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_eudebug_online@interrupt-reconnect.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_eudebug_online@interrupt-reconnect.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#2322] / [Intel XE#7372]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm: - shard-bmg: [SKIP][209] ([Intel XE#6703]) -> [SKIP][210] ([Intel XE#7136]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate: - shard-bmg: [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#6874]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic: - shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#7138]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_mmap@small-bar.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_mmap@small-bar.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][217] ([Intel XE#6703]) -> [SKIP][218] ([Intel XE#1420]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#944]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/shard-bmg-7/igt@xe_query@multigpu-query-invalid-size.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6891]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6891 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7469 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7542]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7542 [Intel XE#7577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7577 [Intel XE#7596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7596 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 Build changes ------------- * Linux: xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce -> xe-pw-162978v1 IGT_8792: 8792 xe-4693-ab86ea7989502faeabd9bceb2264d8dbfed6e8ce: ab86ea7989502faeabd9bceb2264d8dbfed6e8ce xe-pw-162978v1: 162978v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162978v1/index.html [-- Attachment #2: Type: text/html, Size: 76563 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v7 0/7] Attempt to fixup reset, wedge, unload corner cases
@ 2026-02-19 18:06 Zhanjun Dong
2026-02-20 12:59 ` ✗ Xe.CI.FULL: failure for " Patchwork
0 siblings, 1 reply; 19+ messages in thread
From: Zhanjun Dong @ 2026-02-19 18:06 UTC (permalink / raw)
To: intel-xe; +Cc: Wajdeczko, Michal, Zhanjun Dong
We have several bug reports [1], [2], [3] describing failures in reset,
wedge, and unload corner cases where memory is not properly freed or
fences fail to signal. This patch attempts to address the issue by
forcefully killing any remaining queues on driver unload and wedging the
device if not in mode 2.
Zhanjun Dong
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466
[2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530
[3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029
---
History started from v2 (v1 not found):
v7:
- Add "Open-code GGTT MMIO access protection" and rebase with baseline changes
v6:
- Split guc_submit_fini into 2 parts, device related by devm and software
only part by drmm
v5:
- Removed redundant xe_guc_ct_stop() and __xe_guc_submit_reset_prepare()
calls (Michal and Matthew)
- Split patch 3 into 2 patches(new #3 and #4), #3 is for fixes old patch purpose,
#4 add as separate commit uses the enum for better code maintainability (Matthew)
v4:
- Make guc_submit_fini a devm managed action
- Squash patch 2 with 6 from v3
- Commit message update (Matthew)
v3:
- Add patch 3-6 in series
- For "Trigger queue cleanup if not in wedged mode 2":
Add guc_ct_stop and reset prepare in patch of:
Sync with baseline changes
Matthew Brost (2):
drm/xe: Always kill exec queues in xe_guc_submit_pause_abort
drm/xe: Open-code GGTT MMIO access protection
Zhanjun Dong (5):
drm/xe: Forcefully tear down exec queues in GuC submit fini
drm/xe: Trigger queue cleanup if not in wedged mode 2
drm/xe: Use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET enum instead of
magic number
drm/xe/guc: Ensure CT state transitions via STOP before DISABLED
drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup
drivers/gpu/drm/xe/xe_ggtt.c | 15 +++---
drivers/gpu/drm/xe/xe_guc.c | 18 ++++++-
drivers/gpu/drm/xe/xe_guc.h | 1 +
drivers/gpu/drm/xe/xe_guc_ct.c | 1 +
drivers/gpu/drm/xe/xe_guc_submit.c | 86 +++++++++++++++++++++---------
drivers/gpu/drm/xe/xe_uc.c | 2 -
6 files changed, 88 insertions(+), 35 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.FULL: failure for Attempt to fixup reset, wedge, unload corner cases 2026-02-19 18:06 [PATCH v7 0/7] " Zhanjun Dong @ 2026-02-20 12:59 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-02-20 12:59 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 47018 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/161847/ State : failure == Summary == CI Bug Log - changes from xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c_FULL -> xe-pw-161847v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-161847v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-161847v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-161847v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-9/igt@xe_survivability@runtime-survivability.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@xe_survivability@runtime-survivability.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in xe-pw-161847v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +11 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1467]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2191]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#367]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3432]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3432]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2652]) +7 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +12 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2325]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#306]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@common-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6507]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][28] ([Intel XE#6968]) +3 other tests fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#6973]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6974]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2341]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#6707]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2321]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2320]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1508]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4331]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2244]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2373]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7178]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7178]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7179]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#656]) +14 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7061]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2311]) +26 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4141]) +19 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2352]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7061]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2313]) +29 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6901]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4329] / [Intel XE#6912]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7130]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7283]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7283]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#599]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4596]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#5020]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2763] / [Intel XE#6886]) +14 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2391]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1128] / [Intel XE#1406]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2387]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render@edp-1.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2330]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2413]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1435]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6503]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2426]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#4459]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1499]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#2142]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6599]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1447]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#5191]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_eudebug@basic-vm-access-faultable: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access-faultable.html * igt@xe_eudebug@vm-bind-clear: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837]) +8 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html * igt@xe_eudebug_online@pagefault-one-of-many: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#6665]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@xe_eudebug_online@pagefault-one-of-many.html - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6665]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@xe_eudebug_online@pagefault-one-of-many.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4837] / [Intel XE#6665]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1392]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2322]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#7136]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#7136]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#6874]) +13 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd.html * igt@xe_exec_multi_queue@one-queue-priority-smem: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#6874]) +31 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@xe_exec_multi_queue@one-queue-priority-smem.html * igt@xe_exec_threads@threads-many-queues: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#7166]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@xe_exec_threads@threads-many-queues.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7138]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7138]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#5100]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-6/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#586]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-coherency-prefetch: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6964]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#6964]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2427] / [Intel XE#6953]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2284]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#5742]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-2/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#584]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#579]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#7258]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-9/igt@xe_pm_residency@aspm_link_residency.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#4733]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-9/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#944]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_vram@vf-access-after-resize-down: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#6376]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-1/igt@xe_sriov_vram@vf-access-after-resize-down.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [FAIL][118] ([Intel XE#5993]) -> [PASS][119] +3 other tests pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [SKIP][120] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [FAIL][122] ([Intel XE#6361]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][124] ([Intel XE#4227]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-2/igt@kms_vrr@flip-basic.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@kms_vrr@flip-basic.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][126] ([Intel XE#6321]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [FAIL][128] ([Intel XE#5625]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: [ABORT][130] -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-lnl: [ABORT][132] ([Intel XE#5466]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html - shard-bmg: [ABORT][134] ([Intel XE#5466] / [Intel XE#6652]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][136] ([Intel XE#6569]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: [SKIP][138] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][139] ([Intel XE#2652]) +45 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][140] ([Intel XE#4633]) -> [FAIL][141] ([Intel XE#6715]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [INCOMPLETE][142] ([Intel XE#1727]) -> [SKIP][143] ([Intel XE#4141]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][144] ([Intel XE#3544]) -> [SKIP][145] ([Intel XE#3374] / [Intel XE#3544]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: [SKIP][146] ([Intel XE#6886]) -> [SKIP][147] ([Intel XE#2763] / [Intel XE#6886]) +45 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: [SKIP][148] ([Intel XE#6886]) -> [SKIP][149] ([Intel XE#2763] / [Intel XE#6886]) +14 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8762 -> IGT_8763 * Linux: xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c -> xe-pw-161847v1 IGT_8762: d3c67e0f1fa76ac3d71095825bbc9df0d307e4fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8763: 8763 xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c: cc2c646d39200973cc76d0fa0851d73c9636c27c xe-pw-161847v1: 161847v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161847v1/index.html [-- Attachment #2: Type: text/html, Size: 53073 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v6 0/6] Attempt to fixup reset, wedge, unload corner cases
@ 2026-02-11 22:20 Zhanjun Dong
2026-02-13 5:44 ` ✗ Xe.CI.FULL: failure for " Patchwork
0 siblings, 1 reply; 19+ messages in thread
From: Zhanjun Dong @ 2026-02-11 22:20 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
We have several bug reports [1], [2], [3] describing failures in reset,
wedge, and unload corner cases where memory is not properly freed or
fences fail to signal. This patch attempts to address the issue by
forcefully killing any remaining queues on driver unload and wedging the
device if not in mode 2.
Zhanjun Dong
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466
[2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530
[3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029
---
History started from v2 (v1 not found):
v6:
- Split guc_submit_fini into 2 parts, device related by devm and software
only part by drmm
v5:
- Removed redundant xe_guc_ct_stop() and __xe_guc_submit_reset_prepare()
calls (Michal and Matthew)
- Split patch 3 into 2 patches(new #3 and #4), #3 is for fixes old patch purpose,
#4 add as separate commit uses the enum for better code maintainability (Matthew)
v4:
- Make guc_submit_fini a devm managed action
- Squash patch 2 with 6 from v3
- Commit message update (Matthew)
v3:
- Add patch 3-6 in series
- For "Trigger queue cleanup if not in wedged mode 2":
Add guc_ct_stop and reset prepare in patch of:
Sync with baseline changes
Matthew Brost (1):
drm/xe: Always kill exec queues in xe_guc_submit_pause_abort
Zhanjun Dong (5):
drm/xe: Forcefully tear down exec queues in GuC submit fini
drm/xe: Trigger queue cleanup if not in wedged mode 2
drm/xe: Use XE_WEDGED_MODE_UPON_ANY_HANG_NO_RESET enum instead of
magic number
drm/xe/guc: Ensure CT state transitions via STOP before DISABLED
drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup
drivers/gpu/drm/xe/xe_guc.c | 18 ++++++-
drivers/gpu/drm/xe/xe_guc.h | 1 +
drivers/gpu/drm/xe/xe_guc_ct.c | 1 +
drivers/gpu/drm/xe/xe_guc_submit.c | 86 +++++++++++++++++++++---------
drivers/gpu/drm/xe/xe_uc.c | 2 -
5 files changed, 79 insertions(+), 29 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.FULL: failure for Attempt to fixup reset, wedge, unload corner cases 2026-02-11 22:20 [PATCH v6 0/6] " Zhanjun Dong @ 2026-02-13 5:44 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-02-13 5:44 UTC (permalink / raw) To: Zhanjun Dong; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 35817 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/161515/ State : failure == Summary == CI Bug Log - changes from xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68_FULL -> xe-pw-161515v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-161515v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-161515v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-161515v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-4/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-1/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-0.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-7/igt@xe_pm_residency@aspm_link_residency.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-10/igt@xe_wedged@wedged-at-any-timeout.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html New tests --------- New tests have been introduced between xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68_FULL and xe-pw-161515v1_FULL: ### New IGT tests (1) ### * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [3.93] s Known issues ------------ Here are the changes found in xe-pw-161515v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#3718] / [Intel XE#6078]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2: - shard-bmg: [PASS][9] -> [FAIL][10] ([Intel XE#6078]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2191]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2669]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3432]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2325]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6507]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6507]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3304]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6974]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@suspend-resume@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#1178] / [Intel XE#3304]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-8/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2321]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][35] -> [FAIL][36] ([i915#4767]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1138]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-nonexisting-fb: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1421]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1397] / [Intel XE#1745]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1397]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7178]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7179]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7179]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4141]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2311]) +15 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7061]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7061]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#651]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2313]) +15 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6911]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6900]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7130]) +13 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7131]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7111] / [Intel XE#7131]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7130]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6886]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#870]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#2387]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1406]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@pr-suspend: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_psr@pr-suspend.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2330]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6503]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1499]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#2142]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_eudebug@basic-vm-access-userptr-faultable: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4837]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_eudebug@basic-vm-access-userptr-faultable.html * igt@xe_eudebug@connect-user: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4837]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@xe_eudebug@connect-user.html * igt@xe_eudebug_online@pagefault-read: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4837] / [Intel XE#6665]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_eudebug_online@pagefault-read.html * igt@xe_evict@evict-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#688]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_evict@evict-large-external-cm.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2322]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_fault_mode@once-multi-queue: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7136]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7136]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html * igt@xe_exec_multi_queue@many-execs-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +14 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html * igt@xe_exec_multi_queue@many-execs-priority: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#6874]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_exec_multi_queue@many-execs-priority.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#5625]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_exec_threads@threads-multi-queue-mixed-rebind: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7138]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7138]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6964]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3428]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-1/igt@xe_pm@s3-vm-bind-unbind-all.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-3/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pxp@pxp-optout: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4733]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@xe_pxp@pxp-optout.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#944]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_admin@default-sched-attributes-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7174]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_sriov_admin@default-sched-attributes-vfs-disabled.html * igt@xe_sriov_flr@flr-twice: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4273]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_sriov_flr@flr-twice.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#3119]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-2/igt@xe_wedged@wedged-at-any-timeout.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [FAIL][96] ([Intel XE#5299]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][98] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][99] +1 other test pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [INCOMPLETE][100] ([Intel XE#6891]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-134: - shard-bmg: [INCOMPLETE][102] -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms@plane-134.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms@plane-134.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-lnl: [ABORT][104] ([Intel XE#5466]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html - shard-bmg: [ABORT][106] ([Intel XE#5466]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_pm@s3-basic: - shard-bmg: [DMESG-WARN][108] ([Intel XE#3428]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-3/igt@xe_pm@s3-basic.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-5/igt@xe_pm@s3-basic.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][110] ([Intel XE#3544]) -> [SKIP][111] ([Intel XE#3374] / [Intel XE#3544]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][112] ([Intel XE#2426]) -> [SKIP][113] ([Intel XE#2509]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6891]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6891 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 Build changes ------------- * Linux: xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68 -> xe-pw-161515v1 IGT_8751: af788251f1ef729d17c802aec2c4547b52059e58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68: b4bfe7d753afaf6ea4950111a309a4e2ef5aef68 xe-pw-161515v1: 161515v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161515v1/index.html [-- Attachment #2: Type: text/html, Size: 40760 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3 0/6] Attempt to fixup reset, wedge, unload corner cases
@ 2026-01-20 20:16 Zhanjun Dong
2026-01-21 3:20 ` ✗ Xe.CI.Full: failure for " Patchwork
0 siblings, 1 reply; 19+ messages in thread
From: Zhanjun Dong @ 2026-01-20 20:16 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong
We have several bug reports [1], [2], [3] describing failures in reset,
wedge, and unload corner cases where memory is not properly freed or
fences fail to signal. This patch attempts to address the issue by
forcefully killing any remaining queues on driver unload and wedging the
device if not in mode 2.
Zhanjun Dong
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466
[2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530
[3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029
---
History started from v2 (v1 not found):
v3:
- Add patch 3-6 in series
- For "Trigger queue cleanup if not in wedged mode 2":
Add guc_ct_stop and reset prepare in patch of:
Sync with baseline changes
Matthew Brost (3):
drm/xe: Always kill exec queues in xe_guc_submit_pause_abort
drm/xe: Forcefully tear down exec queues in GuC submit fini
drm/xe: Trigger queue cleanup if not in wedged mode 2
Zhanjun Dong (3):
drm/xe/guc: Ensure CT state transitions via STOP before DISABLED
drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup
drm/xe/guc: Fix page fault by moving guc_submit_fini to devm
drivers/gpu/drm/xe/xe_guc_ct.c | 1 +
drivers/gpu/drm/xe/xe_guc_submit.c | 68 +++++++++++++++++++-----------
drivers/gpu/drm/xe/xe_uc.c | 2 -
3 files changed, 45 insertions(+), 26 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.Full: failure for Attempt to fixup reset, wedge, unload corner cases 2026-01-20 20:16 [PATCH v3 0/6] " Zhanjun Dong @ 2026-01-21 3:20 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2026-01-21 3:20 UTC (permalink / raw) To: Dong, Zhanjun; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 45957 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/160378/ State : failure == Summary == CI Bug Log - changes from xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1_FULL -> xe-pw-160378v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-160378v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-160378v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-160378v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-busy-nomemset: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-busy-nomemset.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-busy-nomemset.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [PASS][3] -> [ABORT][4] +11 other tests abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: NOTRUN -> [ABORT][5] +2 other tests abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][6] -> [ABORT][7] +8 other tests abort [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-9/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html Known issues ------------ Here are the changes found in xe-pw-160378v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2233]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +11 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2325]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2390] / [Intel XE#6974]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6974]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2320]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#309]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2244]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4422]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4156]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2375]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2293]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7064] / [Intel XE#7081]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7064]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1397] / [Intel XE#1745]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1397]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1401] / [Intel XE#1745]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2311]) +19 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7061]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4141]) +13 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2352]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#651]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7061]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +26 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-lnl: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#7063]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#3374] / [Intel XE#3544]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4298]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6911]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2393]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#4596]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#5020]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6886]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#870]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#736]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2392]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1439] / [Intel XE#3141]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1406]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#2414]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-lnl: [PASS][64] -> [SKIP][65] ([Intel XE#1406] / [Intel XE#4692]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2330]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3414] / [Intel XE#3904]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-8/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2413]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1435]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@filter-formats: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6503]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@kms_sharpness_filter@filter-formats.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#362]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#4459]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1499]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1499]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#2142]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6599]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4837]) +9 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#688]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@xe_evict@evict-cm-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2322]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1392]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#6874]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html * igt@xe_exec_multi_queue@one-queue-priority-smem: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6874]) +25 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-priority-smem.html * igt@xe_exec_reset@gt-reset-stress: - shard-lnl: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#7023]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-2/igt@xe_exec_reset@gt-reset-stress.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-1/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_exec_system_allocator@once-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4943]) +18 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@process-many-stride-malloc-nomemset: - shard-bmg: [PASS][89] -> [ABORT][90] ([Intel XE#3970]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-7/igt@xe_exec_system_allocator@process-many-stride-malloc-nomemset.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_exec_system_allocator@process-many-stride-malloc-nomemset.html * igt@xe_exec_system_allocator@process-many-stride-mmap-new-huge: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4943]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-5/igt@xe_exec_system_allocator@process-many-stride-mmap-new-huge.html * igt@xe_module_load@load: - shard-bmg: ([PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115]) -> ([PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [SKIP][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141]) ([Intel XE#2457]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-7/igt@xe_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-1/igt@xe_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-4/igt@xe_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@xe_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-1/igt@xe_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-1/igt@xe_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-3/igt@xe_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-4/igt@xe_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-7/igt@xe_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@xe_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-3/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-3/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-10/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-9/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-7/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-9/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-8/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-8/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-10/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-4/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-8/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-10/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-1/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#6964]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2248]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-9/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2236]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2284] / [Intel XE#366]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-8/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4733]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#944]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-7/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#944]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [FAIL][149] ([Intel XE#6569]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][150] -> [FAIL][151] ([Intel XE#6569]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_vm@out-of-memory: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#5745]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-4/igt@xe_vm@out-of-memory.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][153] ([Intel XE#4665]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-8/igt@intel_hwmon@hwmon-write.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [INCOMPLETE][155] ([Intel XE#2705] / [Intel XE#5643] / [Intel XE#6819]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: [ABORT][157] ([Intel XE#5545]) -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][159] ([Intel XE#718]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][161] ([Intel XE#6321]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-lnl: [DMESG-WARN][163] ([Intel XE#4537] / [Intel XE#7063]) -> [PASS][164] +2 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-5/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro-dontunmap: - shard-lnl: [DMESG-WARN][165] ([Intel XE#7063]) -> [PASS][166] +6 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-5/igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro-dontunmap.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-3/igt@xe_exec_system_allocator@many-execqueues-mmap-remap-ro-dontunmap.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [FAIL][167] ([Intel XE#5625]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][169] ([Intel XE#6569]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643 [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7023 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063 [Intel XE#7064]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7064 [Intel XE#7081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7081 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8708 -> IGT_8709 * Linux: xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1 -> xe-pw-160378v1 IGT_8708: 8708 IGT_8709: 16ce286cac6acc9669a1c758572ae9fceb483c46 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4419-fa2241b92adb500a9c016188d338aa3f6f8a95a1: fa2241b92adb500a9c016188d338aa3f6f8a95a1 xe-pw-160378v1: 160378v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160378v1/index.html [-- Attachment #2: Type: text/html, Size: 50729 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 0/3] Attempt to fixup reset, wedge, unload corner cases @ 2025-12-18 21:44 Matthew Brost 2025-12-20 1:22 ` ✗ Xe.CI.Full: failure for " Patchwork 0 siblings, 1 reply; 19+ messages in thread From: Matthew Brost @ 2025-12-18 21:44 UTC (permalink / raw) To: intel-xe We have several bug reports [1], [2], [3] describing failures in reset, wedge, and unload corner cases where memory is not properly freed or fences fail to signal. This patch attempts to address the issue by forcefully killing any remaining queues on driver unload and wedging the device if not in mode 2. Matt [1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466 [2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530 [3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029 Matthew Brost (3): drm/xe: Always kill exec queues in xe_guc_submit_pause_abort drm/xe: Forcefully tear down exec queues in GuC submit fini drm/xe: Trigger queue cleanup if not in wedged mode 2 drivers/gpu/drm/xe/xe_guc_submit.c | 61 ++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 21 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for Attempt to fixup reset, wedge, unload corner cases 2025-12-18 21:44 [PATCH v2 0/3] " Matthew Brost @ 2025-12-20 1:22 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-12-20 1:22 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 77249 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/159247/ State : failure == Summary == CI Bug Log - changes from xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4_FULL -> xe-pw-159247v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-159247v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-159247v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-159247v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-10/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html Known issues ------------ Here are the changes found in xe-pw-159247v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@all-cards: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6914]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@core_getversion@all-cards.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@core_getversion@all-cards.html * igt@core_hotunplug@unbind-rebind: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#6779]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#4674]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@core_setmaster@master-drop-set-user.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@core_setmaster@master-drop-set-user.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2724]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#1178]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2286]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#4302]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2244]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2316]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#6703]) +429 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2293]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4141]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +11 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6901]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#4596]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#5020]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6886]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_psr@psr2-sprite-blt.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6503]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_sharpness_filter@filter-tap.html * igt@xe_eudebug@multigpu-basic-client: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4837]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_eudebug_online@pagefault-read: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4837] / [Intel XE#6665]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_eudebug_online@pagefault-read.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2322]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6874]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4943]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#5625]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#6913]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_module_load@reload-no-display.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_module_load@reload-no-display.html * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#6251]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#944]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@xe_query@multigpu-query-invalid-size.html #### Possible fixes #### * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [SKIP][55] ([Intel XE#6779]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@core_hotunplug@hotreplug-lateclose.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][57] ([Intel XE#6910]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@core_setmaster@master-drop-set-root.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html * igt@device_reset@unbind-reset-rebind: - shard-bmg: [SKIP][59] ([Intel XE#6815]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@device_reset@unbind-reset-rebind.html * igt@fbdev@nullptr: - shard-bmg: [SKIP][61] ([Intel XE#2134]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@fbdev@nullptr.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@fbdev@nullptr.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-bmg: [INCOMPLETE][63] ([Intel XE#2705] / [Intel XE#6766]) -> [PASS][64] +1 other test pass [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-10/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-bmg: [FAIL][65] -> [PASS][66] +1 other test pass [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-right-edge.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][67] ([Intel XE#2291]) -> [PASS][68] +1 other test pass [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [SKIP][69] ([Intel XE#2316]) -> [PASS][70] +1 other test pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][71] ([Intel XE#301]) -> [PASS][72] +1 other test pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_pipe_crc_basic@disable-crc-after-crtc: - shard-bmg: [SKIP][73] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][74] +5 other tests pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [SKIP][75] ([Intel XE#6693]) -> [PASS][76] +1 other test pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race: - shard-bmg: [SKIP][77] ([Intel XE#6703]) -> [PASS][78] +426 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_system_allocator@many-stride-malloc-prefetch: - shard-bmg: [WARN][79] ([Intel XE#5786]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][81] ([Intel XE#6913]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_module_load@reload.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_module_load@reload.html #### Warnings #### * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][83] ([Intel XE#6703]) -> [SKIP][84] ([Intel XE#2327]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][85] ([Intel XE#2327]) -> [SKIP][86] ([Intel XE#6703]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#1124]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][89] ([Intel XE#2328]) -> [SKIP][90] ([Intel XE#6703]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][91] ([Intel XE#6703]) -> [SKIP][92] ([Intel XE#610]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][93] ([Intel XE#1124]) -> [SKIP][94] ([Intel XE#6703]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][95] ([Intel XE#6703]) -> [SKIP][96] ([Intel XE#2314] / [Intel XE#2894]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][97] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][98] ([Intel XE#6703]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: [SKIP][99] ([Intel XE#367]) -> [SKIP][100] ([Intel XE#6703]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [SKIP][102] ([Intel XE#367]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][103] ([Intel XE#2887]) -> [SKIP][104] ([Intel XE#6557] / [Intel XE#6703]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][105] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][106] ([Intel XE#6703]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][107] ([Intel XE#3432]) -> [SKIP][108] ([Intel XE#6703]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][109] ([Intel XE#2887]) -> [SKIP][110] ([Intel XE#6703]) +6 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2887]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][113] ([Intel XE#2724]) -> [SKIP][114] ([Intel XE#6703]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [SKIP][116] ([Intel XE#2724]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cdclk@plane-scaling.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@degamma: - shard-bmg: [SKIP][117] ([Intel XE#2325]) -> [SKIP][118] ([Intel XE#6703]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_chamelium_color@degamma.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#2252]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][121] ([Intel XE#2252]) -> [SKIP][122] ([Intel XE#6703]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][123] ([Intel XE#6703]) -> [SKIP][124] ([Intel XE#2390]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][125] ([Intel XE#2341]) -> [SKIP][126] ([Intel XE#6703]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_content_protection@lic-type-1.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#2341]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_content_protection@mei-interface.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [FAIL][130] ([Intel XE#1178]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_content_protection@srm.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][131] ([Intel XE#6707]) -> [SKIP][132] ([Intel XE#6703]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_content_protection@uevent.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-bmg: [SKIP][133] ([Intel XE#2320]) -> [SKIP][134] ([Intel XE#6703]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#2320]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: [SKIP][137] ([Intel XE#2321]) -> [SKIP][138] ([Intel XE#6703]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#2321]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-bmg: [SKIP][141] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][142] ([Intel XE#2320]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][143] ([Intel XE#2291]) -> [SKIP][144] ([Intel XE#6703]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][145] ([Intel XE#6703]) -> [SKIP][146] ([Intel XE#2291]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#4354]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: [SKIP][149] ([Intel XE#4331]) -> [SKIP][150] ([Intel XE#6703]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][151] ([Intel XE#2244]) -> [SKIP][152] ([Intel XE#6703]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: [SKIP][153] ([Intel XE#4422]) -> [SKIP][154] ([Intel XE#6703]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#776]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-bmg: [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#1138]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_feature_discovery@display-4x.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#2374]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_feature_discovery@psr1.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [SKIP][161] ([Intel XE#2316]) -> [SKIP][162] ([Intel XE#6703]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: [SKIP][163] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][164] ([Intel XE#6703]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-bmg: [SKIP][165] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][166] ([Intel XE#2293] / [Intel XE#2380]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][169] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][170] ([Intel XE#2311]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#2312]) +8 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][173] ([Intel XE#2312]) -> [SKIP][174] ([Intel XE#2311]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: [SKIP][175] ([Intel XE#2311]) -> [SKIP][176] ([Intel XE#6703]) +19 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#2311]) +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#4141]) +9 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#4141]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][183] ([Intel XE#4141]) -> [SKIP][184] ([Intel XE#2312]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][185] ([Intel XE#4141]) -> [SKIP][186] ([Intel XE#6703]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: [SKIP][187] ([Intel XE#6703]) -> [SKIP][188] ([Intel XE#2352]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][189] ([Intel XE#2311]) -> [SKIP][190] ([Intel XE#2312]) +7 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][191] ([Intel XE#2312]) -> [SKIP][192] ([Intel XE#6703]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][193] ([Intel XE#2313]) -> [SKIP][194] ([Intel XE#2312]) +7 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#2313]) +19 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][197] ([Intel XE#2313]) -> [SKIP][198] ([Intel XE#6557] / [Intel XE#6703]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][199] ([Intel XE#2313]) -> [SKIP][200] ([Intel XE#6703]) +19 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][201] ([Intel XE#2312]) -> [SKIP][202] ([Intel XE#2313]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#4298]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][205] ([Intel XE#6911]) -> [SKIP][206] ([Intel XE#6703]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#2393]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][209] ([Intel XE#2393]) -> [SKIP][210] ([Intel XE#6703]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_plane_lowres@tiling-yf.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][211] ([Intel XE#4596]) -> [SKIP][212] ([Intel XE#5021]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#6886]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#2938]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][217] ([Intel XE#870]) -> [SKIP][218] ([Intel XE#6703]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_pm_backlight@fade-with-dpms.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: [SKIP][219] ([Intel XE#2391]) -> [SKIP][220] ([Intel XE#6703]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][221] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][222] ([Intel XE#6693]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][223] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][224] ([Intel XE#6693]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][225] ([Intel XE#6693]) -> [SKIP][226] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][227] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][228] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: [SKIP][229] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][230] ([Intel XE#1406] / [Intel XE#6703]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][231] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][232] ([Intel XE#1406] / [Intel XE#6703]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][233] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][234] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_psr@psr-primary-page-flip.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-primary-page-flip: - shard-bmg: [SKIP][235] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][236] ([Intel XE#1406] / [Intel XE#6703]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_psr@psr2-primary-page-flip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][237] ([Intel XE#1406] / [Intel XE#2234]) -> [SKIP][238] ([Intel XE#1406] / [Intel XE#6703]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_psr@psr2-primary-render.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][239] ([Intel XE#1406] / [Intel XE#2414]) -> [SKIP][240] ([Intel XE#1406] / [Intel XE#6703]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][241] ([Intel XE#6703]) -> [SKIP][242] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][243] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][244] ([Intel XE#6703]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][245] ([Intel XE#1435]) -> [SKIP][246] ([Intel XE#6703]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: [SKIP][247] ([Intel XE#6703]) -> [SKIP][248] ([Intel XE#6503]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: [SKIP][249] ([Intel XE#6503]) -> [SKIP][250] ([Intel XE#6703]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-plane.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][251] ([Intel XE#1499]) -> [SKIP][252] ([Intel XE#6703]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: [SKIP][253] ([Intel XE#6703]) -> [SKIP][254] ([Intel XE#6599]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-bmg: [SKIP][255] ([Intel XE#6703]) -> [SKIP][256] ([Intel XE#4837]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_eudebug@basic-vm-access-userptr.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][257] ([Intel XE#4837]) -> [SKIP][258] ([Intel XE#6703]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-vm-destroy.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-vm-destroy.html * igt@xe_eudebug_online@pagefault-read-stress: - shard-bmg: [SKIP][259] ([Intel XE#6665] / [Intel XE#6681]) -> [SKIP][260] ([Intel XE#6703]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_eudebug_online@pagefault-read-stress.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html * igt@xe_eudebug_online@single-step: - shard-bmg: [SKIP][261] ([Intel XE#6703]) -> [SKIP][262] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_eudebug_online@single-step.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-bmg: [SKIP][263] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][264] ([Intel XE#6703]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt@xe_eudebug_sriov@deny-sriov: - shard-bmg: [SKIP][265] ([Intel XE#5793]) -> [SKIP][266] ([Intel XE#6703]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_eudebug_sriov@deny-sriov.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][267] ([Intel XE#6321]) -> [SKIP][268] ([Intel XE#6703]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: [SKIP][269] ([Intel XE#6703]) -> [SKIP][270] ([Intel XE#2322]) +5 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][271] ([Intel XE#2322]) -> [SKIP][272] ([Intel XE#6703]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate: - shard-bmg: [SKIP][273] ([Intel XE#6874]) -> [SKIP][274] ([Intel XE#6703]) +21 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: [SKIP][275] ([Intel XE#6703]) -> [SKIP][276] ([Intel XE#6874]) +19 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset: - shard-bmg: [SKIP][277] ([Intel XE#6703]) -> [SKIP][278] ([Intel XE#5007]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@once-large-mmap-huge: - shard-bmg: [SKIP][279] ([Intel XE#4943]) -> [SKIP][280] ([Intel XE#6703]) +16 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_exec_system_allocator@once-large-mmap-huge.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_exec_system_allocator@once-large-mmap-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge: - shard-bmg: [SKIP][281] ([Intel XE#6703]) -> [SKIP][282] ([Intel XE#4943]) +16 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: [SKIP][283] ([Intel XE#6703]) -> [SKIP][284] ([Intel XE#6281]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: [SKIP][285] ([Intel XE#6703]) -> [SKIP][286] ([Intel XE#2236]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3hot-i2c: - shard-bmg: [SKIP][287] ([Intel XE#6703]) -> [SKIP][288] ([Intel XE#5742]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pm@d3hot-i2c.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: [SKIP][289] ([Intel XE#2284]) -> [SKIP][290] ([Intel XE#6703]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: [SKIP][291] ([Intel XE#4733]) -> [SKIP][292] ([Intel XE#6703]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-bmg: [SKIP][293] ([Intel XE#6703]) -> [SKIP][294] ([Intel XE#4733]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-suspend.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][295] ([Intel XE#944]) -> [SKIP][296] ([Intel XE#6703]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][297] ([Intel XE#6703]) -> [SKIP][298] ([Intel XE#944]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/shard-bmg-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4674]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4674 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6815 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6910 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6913]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6913 [Intel XE#6914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6914 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4 -> xe-pw-159247v1 IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4: c25fd3953a459143758264a6c4dab32107bb48c4 xe-pw-159247v1: 159247v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159247v1/index.html [-- Attachment #2: Type: text/html, Size: 96228 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* [RFC PATCH 0/3] Attempt to fixup reset, wedge, unload corner cases @ 2025-12-12 23:34 Matthew Brost 2025-12-13 22:08 ` ✗ Xe.CI.Full: failure for " Patchwork 0 siblings, 1 reply; 19+ messages in thread From: Matthew Brost @ 2025-12-12 23:34 UTC (permalink / raw) To: intel-xe We have several bug reports [1], [2], [3] describing failures in reset, wedge, and unload corner cases where memory is not properly freed or fences fail to signal. This patch attempts to address the issue by forcefully killing any remaining queues on driver unload and wedging the device if not in mode 2. Sending as RFC for now, as I don’t have sufficient coverage to test and ensure everything works correctly. Matt [1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5466 [2] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5530 [3] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6029 Matthew Brost (3): drm/xe: Always kill exec queues in xe_guc_submit_pause_abort drm/xe: Forcefully tear down exec queues in GuC submit fini drm/xe: Trigger queue cleanup if not in wedged mode 2 drivers/gpu/drm/xe/xe_guc_submit.c | 40 +++++++++++++++++++----------- 1 file changed, 26 insertions(+), 14 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for Attempt to fixup reset, wedge, unload corner cases 2025-12-12 23:34 [RFC PATCH 0/3] " Matthew Brost @ 2025-12-13 22:08 ` Patchwork 0 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-12-13 22:08 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 22694 bytes --] == Series Details == Series: Attempt to fixup reset, wedge, unload corner cases URL : https://patchwork.freedesktop.org/series/158884/ State : failure == Summary == CI Bug Log - changes from xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f_FULL -> xe-pw-158884v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-158884v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-158884v1_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-158884v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][1] +13 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [PASS][2] -> [TIMEOUT][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-lnl-8/igt@xe_pm@d3hot-basic-exec.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-lnl-3/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pmu@engine-activity-accuracy-2: - shard-bmg: NOTRUN -> [ABORT][4] +8 other tests abort [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-8/igt@xe_pmu@engine-activity-accuracy-2.html * igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1: - shard-bmg: [PASS][5] -> [ABORT][6] +14 other tests abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-1/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-2/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html Known issues ------------ Here are the changes found in xe-pw-158884v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3432]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6507]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2286]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#301]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2293]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2311]) +11 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313]) +12 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2501]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1406] / [Intel XE#2387]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-suspend: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2413]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_vrr@flip-basic-fastset: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1499]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2142]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_eudebug@discovery-empty-clients: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4837]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_eudebug_online@interrupt-other.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6665] / [Intel XE#6681]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#6321]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2322]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4943]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html * igt@xe_pm@d3hot-i2c: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#5742]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_pm@d3hot-i2c.html * igt@xe_pmu@engine-activity-accuracy-50: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#6251]) +2 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4733]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_query@multigpu-query-pxp-status: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#944]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_query@multigpu-query-pxp-status.html #### Possible fixes #### * igt@xe_module_load@load: - shard-bmg: ([PASS][48], [SKIP][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68]) ([Intel XE#2457]) -> ([PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-8/igt@xe_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-1/igt@xe_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-8/igt@xe_module_load@load.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-4/igt@xe_module_load@load.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-1/igt@xe_module_load@load.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-3/igt@xe_module_load@load.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-1/igt@xe_module_load@load.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-3/igt@xe_module_load@load.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-5/igt@xe_module_load@load.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-2/igt@xe_module_load@load.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-1/igt@xe_module_load@load.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-2/igt@xe_module_load@load.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-2/igt@xe_module_load@load.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-5/igt@xe_module_load@load.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-3/igt@xe_module_load@load.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-5/igt@xe_module_load@load.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-5/igt@xe_module_load@load.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-4/igt@xe_module_load@load.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-4/igt@xe_module_load@load.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-2/igt@xe_module_load@load.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-bmg-8/igt@xe_module_load@load.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-8/igt@xe_module_load@load.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-8/igt@xe_module_load@load.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-8/igt@xe_module_load@load.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-3/igt@xe_module_load@load.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-3/igt@xe_module_load@load.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_module_load@load.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_module_load@load.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-3/igt@xe_module_load@load.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-2/igt@xe_module_load@load.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-2/igt@xe_module_load@load.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_module_load@load.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-1/igt@xe_module_load@load.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-2/igt@xe_module_load@load.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@xe_module_load@load.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-5/igt@xe_module_load@load.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-bmg-4/igt@xe_module_load@load.html * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0: - shard-lnl: [FAIL][87] ([Intel XE#6251]) -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f -> xe-pw-158884v1 IGT_8665: 1806ab9c982ccaaa9d60cdde16bc1dc3bb250654 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4235-54801dbae9da83dcad253f7fbe0e09864bfc028f: 54801dbae9da83dcad253f7fbe0e09864bfc028f xe-pw-158884v1: 158884v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158884v1/index.html [-- Attachment #2: Type: text/html, Size: 24928 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2026-03-11 16:20 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-01-27 17:04 [PATCH v4 0/5] Attempt to fixup reset, wedge, unload corner cases Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 1/5] drm/xe: Always kill exec queues in xe_guc_submit_pause_abort Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 2/5] drm/xe: Forcefully tear down exec queues in GuC submit fini Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 3/5] drm/xe: Trigger queue cleanup if not in wedged mode 2 Zhanjun Dong 2026-01-27 22:02 ` Michal Wajdeczko 2026-01-28 3:39 ` Matthew Brost 2026-01-28 21:55 ` Dong, Zhanjun 2026-01-27 17:04 ` [PATCH v4 4/5] drm/xe/guc: Ensure CT state transitions via STOP before DISABLED Zhanjun Dong 2026-01-27 17:04 ` [PATCH v4 5/5] drm/xe/uc: Drop xe_guc_sanitize in favor of managed cleanup Zhanjun Dong 2026-01-27 17:12 ` ✓ CI.KUnit: success for Attempt to fixup reset, wedge, unload corner cases Patchwork 2026-01-27 18:08 ` ✓ Xe.CI.BAT: " Patchwork 2026-01-27 22:26 ` ✗ Xe.CI.Full: failure " Patchwork 2026-01-28 3:24 ` Matthew Brost -- strict thread matches above, loose matches on Subject: below -- 2026-03-10 22:50 [PATCH v9 0/7] " Zhanjun Dong 2026-03-11 16:20 ` ✗ Xe.CI.FULL: failure for " Patchwork 2026-02-19 18:06 [PATCH v7 0/7] " Zhanjun Dong 2026-02-20 12:59 ` ✗ Xe.CI.FULL: failure for " Patchwork 2026-02-11 22:20 [PATCH v6 0/6] " Zhanjun Dong 2026-02-13 5:44 ` ✗ Xe.CI.FULL: failure for " Patchwork 2026-01-20 20:16 [PATCH v3 0/6] " Zhanjun Dong 2026-01-21 3:20 ` ✗ Xe.CI.Full: failure for " Patchwork 2025-12-18 21:44 [PATCH v2 0/3] " Matthew Brost 2025-12-20 1:22 ` ✗ Xe.CI.Full: failure for " Patchwork 2025-12-12 23:34 [RFC PATCH 0/3] " Matthew Brost 2025-12-13 22:08 ` ✗ Xe.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox