* [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration
@ 2025-10-31 20:13 Matthew Brost
2025-10-31 22:25 ` ✓ CI.KUnit: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Matthew Brost @ 2025-10-31 20:13 UTC (permalink / raw)
To: intel-xe; +Cc: michal.wajdeczko, tomasz.lis
The LRC software ring tail is reset to the first unsignaled pending
job's head.
Fix the re-emission logic to begin submitting from the first unsignaled
job detected, rather than scanning all pending jobs, which can cause
imbalance.
v2:
- Include missing local changes
Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause")
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++--
drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++--------
2 files changed, 14 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
index 9955397aaaa9..357afaec68d7 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
@@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched)
static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched)
{
struct drm_sched_job *s_job;
+ bool skip_emit = false;
list_for_each_entry(s_job, &sched->base.pending_list, list) {
struct drm_sched_fence *s_fence = s_job->s_fence;
struct dma_fence *hw_fence = s_fence->parent;
- if (to_xe_sched_job(s_job)->skip_emit ||
- (hw_fence && !dma_fence_is_signaled(hw_fence)))
+ skip_emit |= to_xe_sched_job(s_job)->skip_emit;
+ if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence)))
sched->base.ops->run_job(s_job);
}
}
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index d4ffdb71ef3d..f25b71aca498 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q)
job = xe_sched_first_pending_job(sched);
if (job) {
+ job->skip_emit = true;
+
/*
* Adjust software tail so jobs submitted overwrite previous
* position in ring buffer with new GGTT addresses.
@@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc,
struct xe_exec_queue *q)
{
struct xe_gpu_scheduler *sched = &q->guc->sched;
- struct drm_sched_job *s_job;
struct xe_sched_job *job = NULL;
+ bool skip_emit = false;
- list_for_each_entry(s_job, &sched->base.pending_list, list) {
- job = to_xe_sched_job(s_job);
-
- xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d",
- q->guc->id, xe_sched_job_seqno(job));
+ list_for_each_entry(job, &sched->base.pending_list, drm.list) {
+ skip_emit |= job->skip_emit;
+ if (skip_emit) {
+ xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d",
+ q->guc->id, xe_sched_job_seqno(job));
- q->ring_ops->emit_job(job);
- job->skip_emit = true;
+ q->ring_ops->emit_job(job);
+ job->skip_emit = true;
+ }
}
if (job)
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ CI.KUnit: success for drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-10-31 20:13 [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration Matthew Brost @ 2025-10-31 22:25 ` Patchwork 2025-10-31 23:43 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-10-31 22:25 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe == Series Details == Series: drm/xe/vf: Start re-emission from first unsignaled job during VF migration URL : https://patchwork.freedesktop.org/series/156869/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [22:24:27] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [22:24:31] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [22:25:02] Starting KUnit Kernel (1/1)... [22:25:02] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [22:25:02] ================== guc_buf (11 subtests) =================== [22:25:02] [PASSED] test_smallest [22:25:02] [PASSED] test_largest [22:25:02] [PASSED] test_granular [22:25:02] [PASSED] test_unique [22:25:02] [PASSED] test_overlap [22:25:02] [PASSED] test_reusable [22:25:02] [PASSED] test_too_big [22:25:02] [PASSED] test_flush [22:25:02] [PASSED] test_lookup [22:25:02] [PASSED] test_data [22:25:02] [PASSED] test_class [22:25:02] ===================== [PASSED] guc_buf ===================== [22:25:02] =================== guc_dbm (7 subtests) =================== [22:25:02] [PASSED] test_empty [22:25:02] [PASSED] test_default [22:25:02] ======================== test_size ======================== [22:25:02] [PASSED] 4 [22:25:02] [PASSED] 8 [22:25:02] [PASSED] 32 [22:25:02] [PASSED] 256 [22:25:02] ==================== [PASSED] test_size ==================== [22:25:02] ======================= test_reuse ======================== [22:25:02] [PASSED] 4 [22:25:02] [PASSED] 8 [22:25:02] [PASSED] 32 [22:25:02] [PASSED] 256 [22:25:02] =================== [PASSED] test_reuse ==================== [22:25:02] =================== test_range_overlap ==================== [22:25:02] [PASSED] 4 [22:25:02] [PASSED] 8 [22:25:02] [PASSED] 32 [22:25:02] [PASSED] 256 [22:25:02] =============== [PASSED] test_range_overlap ================ [22:25:02] =================== test_range_compact ==================== [22:25:02] [PASSED] 4 [22:25:02] [PASSED] 8 [22:25:02] [PASSED] 32 [22:25:02] [PASSED] 256 [22:25:02] =============== [PASSED] test_range_compact ================ [22:25:02] ==================== test_range_spare ===================== [22:25:02] [PASSED] 4 [22:25:02] [PASSED] 8 [22:25:02] [PASSED] 32 [22:25:02] [PASSED] 256 [22:25:02] ================ [PASSED] test_range_spare ================= [22:25:02] ===================== [PASSED] guc_dbm ===================== [22:25:02] =================== guc_idm (6 subtests) =================== [22:25:02] [PASSED] bad_init [22:25:02] [PASSED] no_init [22:25:02] [PASSED] init_fini [22:25:02] [PASSED] check_used [22:25:02] [PASSED] check_quota [22:25:02] [PASSED] check_all [22:25:02] ===================== [PASSED] guc_idm ===================== [22:25:02] ================== no_relay (3 subtests) =================== [22:25:02] [PASSED] xe_drops_guc2pf_if_not_ready [22:25:02] [PASSED] xe_drops_guc2vf_if_not_ready [22:25:02] [PASSED] xe_rejects_send_if_not_ready [22:25:02] ==================== [PASSED] no_relay ===================== [22:25:02] ================== pf_relay (14 subtests) ================== [22:25:02] [PASSED] pf_rejects_guc2pf_too_short [22:25:02] [PASSED] pf_rejects_guc2pf_too_long [22:25:02] [PASSED] pf_rejects_guc2pf_no_payload [22:25:02] [PASSED] pf_fails_no_payload [22:25:02] [PASSED] pf_fails_bad_origin [22:25:02] [PASSED] pf_fails_bad_type [22:25:02] [PASSED] pf_txn_reports_error [22:25:02] [PASSED] pf_txn_sends_pf2guc [22:25:02] [PASSED] pf_sends_pf2guc [22:25:02] [SKIPPED] pf_loopback_nop [22:25:02] [SKIPPED] pf_loopback_echo [22:25:02] [SKIPPED] pf_loopback_fail [22:25:02] [SKIPPED] pf_loopback_busy [22:25:02] [SKIPPED] pf_loopback_retry [22:25:02] ==================== [PASSED] pf_relay ===================== [22:25:02] ================== vf_relay (3 subtests) =================== [22:25:02] [PASSED] vf_rejects_guc2vf_too_short [22:25:02] [PASSED] vf_rejects_guc2vf_too_long [22:25:02] [PASSED] vf_rejects_guc2vf_no_payload [22:25:02] ==================== [PASSED] vf_relay ===================== [22:25:02] ===================== lmtt (1 subtest) ===================== [22:25:02] ======================== test_ops ========================= [22:25:02] [PASSED] 2-level [22:25:02] [PASSED] multi-level [22:25:02] ==================== [PASSED] test_ops ===================== [22:25:02] ====================== [PASSED] lmtt ======================= [22:25:02] ================= pf_service (11 subtests) ================= [22:25:02] [PASSED] pf_negotiate_any [22:25:02] [PASSED] pf_negotiate_base_match [22:25:02] [PASSED] pf_negotiate_base_newer [22:25:02] [PASSED] pf_negotiate_base_next [22:25:02] [SKIPPED] pf_negotiate_base_older [22:25:02] [PASSED] pf_negotiate_base_prev [22:25:02] [PASSED] pf_negotiate_latest_match [22:25:02] [PASSED] pf_negotiate_latest_newer [22:25:02] [PASSED] pf_negotiate_latest_next [22:25:02] [SKIPPED] pf_negotiate_latest_older [22:25:02] [SKIPPED] pf_negotiate_latest_prev [22:25:02] =================== [PASSED] pf_service ==================== [22:25:02] ================= xe_guc_g2g (2 subtests) ================== [22:25:02] ============== xe_live_guc_g2g_kunit_default ============== [22:25:02] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [22:25:02] ============== xe_live_guc_g2g_kunit_allmem =============== [22:25:02] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [22:25:02] =================== [SKIPPED] xe_guc_g2g =================== [22:25:02] =================== xe_mocs (2 subtests) =================== [22:25:02] ================ xe_live_mocs_kernel_kunit ================ [22:25:02] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [22:25:02] ================ xe_live_mocs_reset_kunit ================= [22:25:02] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [22:25:02] ==================== [SKIPPED] xe_mocs ===================== [22:25:02] ================= xe_migrate (2 subtests) ================== [22:25:02] ================= xe_migrate_sanity_kunit ================= [22:25:02] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [22:25:02] ================== xe_validate_ccs_kunit ================== [22:25:02] ============= [SKIPPED] xe_validate_ccs_kunit ============== [22:25:02] =================== [SKIPPED] xe_migrate =================== [22:25:02] ================== xe_dma_buf (1 subtest) ================== [22:25:02] ==================== xe_dma_buf_kunit ===================== [22:25:02] ================ [SKIPPED] xe_dma_buf_kunit ================ [22:25:02] =================== [SKIPPED] xe_dma_buf =================== [22:25:02] ================= xe_bo_shrink (1 subtest) ================= [22:25:02] =================== xe_bo_shrink_kunit ==================== [22:25:02] =============== [SKIPPED] xe_bo_shrink_kunit =============== [22:25:02] ================== [SKIPPED] xe_bo_shrink ================== [22:25:02] ==================== xe_bo (2 subtests) ==================== [22:25:02] ================== xe_ccs_migrate_kunit =================== [22:25:02] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [22:25:02] ==================== xe_bo_evict_kunit ==================== [22:25:02] =============== [SKIPPED] xe_bo_evict_kunit ================ [22:25:02] ===================== [SKIPPED] xe_bo ====================== [22:25:02] ==================== args (11 subtests) ==================== [22:25:02] [PASSED] count_args_test [22:25:02] [PASSED] call_args_example [22:25:02] [PASSED] call_args_test [22:25:02] [PASSED] drop_first_arg_example [22:25:02] [PASSED] drop_first_arg_test [22:25:02] [PASSED] first_arg_example [22:25:02] [PASSED] first_arg_test [22:25:02] [PASSED] last_arg_example [22:25:02] [PASSED] last_arg_test [22:25:02] [PASSED] pick_arg_example [22:25:02] [PASSED] sep_comma_example [22:25:02] ====================== [PASSED] args ======================= [22:25:02] =================== xe_pci (3 subtests) ==================== [22:25:02] ==================== check_graphics_ip ==================== [22:25:02] [PASSED] 12.00 Xe_LP [22:25:02] [PASSED] 12.10 Xe_LP+ [22:25:02] [PASSED] 12.55 Xe_HPG [22:25:02] [PASSED] 12.60 Xe_HPC [22:25:02] [PASSED] 12.70 Xe_LPG [22:25:02] [PASSED] 12.71 Xe_LPG [22:25:02] [PASSED] 12.74 Xe_LPG+ [22:25:02] [PASSED] 20.01 Xe2_HPG [22:25:02] [PASSED] 20.02 Xe2_HPG [22:25:02] [PASSED] 20.04 Xe2_LPG [22:25:02] [PASSED] 30.00 Xe3_LPG [22:25:02] [PASSED] 30.01 Xe3_LPG [22:25:02] [PASSED] 30.03 Xe3_LPG [22:25:02] [PASSED] 30.04 Xe3_LPG [22:25:02] [PASSED] 30.05 Xe3_LPG [22:25:02] [PASSED] 35.11 Xe3p_XPC [22:25:02] ================ [PASSED] check_graphics_ip ================ [22:25:02] ===================== check_media_ip ====================== [22:25:02] [PASSED] 12.00 Xe_M [22:25:02] [PASSED] 12.55 Xe_HPM [22:25:02] [PASSED] 13.00 Xe_LPM+ [22:25:02] [PASSED] 13.01 Xe2_HPM [22:25:02] [PASSED] 20.00 Xe2_LPM [22:25:02] [PASSED] 30.00 Xe3_LPM [22:25:02] [PASSED] 30.02 Xe3_LPM [22:25:02] [PASSED] 35.00 Xe3p_LPM [22:25:02] [PASSED] 35.03 Xe3p_HPM [22:25:02] ================= [PASSED] check_media_ip ================== [22:25:02] =================== check_platform_desc =================== [22:25:02] [PASSED] 0x9A60 (TIGERLAKE) [22:25:02] [PASSED] 0x9A68 (TIGERLAKE) [22:25:02] [PASSED] 0x9A70 (TIGERLAKE) [22:25:02] [PASSED] 0x9A40 (TIGERLAKE) [22:25:02] [PASSED] 0x9A49 (TIGERLAKE) [22:25:02] [PASSED] 0x9A59 (TIGERLAKE) [22:25:02] [PASSED] 0x9A78 (TIGERLAKE) [22:25:02] [PASSED] 0x9AC0 (TIGERLAKE) [22:25:02] [PASSED] 0x9AC9 (TIGERLAKE) [22:25:02] [PASSED] 0x9AD9 (TIGERLAKE) [22:25:02] [PASSED] 0x9AF8 (TIGERLAKE) [22:25:02] [PASSED] 0x4C80 (ROCKETLAKE) [22:25:02] [PASSED] 0x4C8A (ROCKETLAKE) [22:25:02] [PASSED] 0x4C8B (ROCKETLAKE) [22:25:02] [PASSED] 0x4C8C (ROCKETLAKE) [22:25:02] [PASSED] 0x4C90 (ROCKETLAKE) [22:25:02] [PASSED] 0x4C9A (ROCKETLAKE) [22:25:02] [PASSED] 0x4680 (ALDERLAKE_S) [22:25:02] [PASSED] 0x4682 (ALDERLAKE_S) [22:25:02] [PASSED] 0x4688 (ALDERLAKE_S) [22:25:02] [PASSED] 0x468A (ALDERLAKE_S) [22:25:02] [PASSED] 0x468B (ALDERLAKE_S) [22:25:02] [PASSED] 0x4690 (ALDERLAKE_S) [22:25:02] [PASSED] 0x4692 (ALDERLAKE_S) [22:25:02] [PASSED] 0x4693 (ALDERLAKE_S) [22:25:02] [PASSED] 0x46A0 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46A1 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46A2 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46A3 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46A6 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46A8 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46AA (ALDERLAKE_P) [22:25:02] [PASSED] 0x462A (ALDERLAKE_P) [22:25:02] [PASSED] 0x4626 (ALDERLAKE_P) [22:25:02] [PASSED] 0x4628 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46B0 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46B1 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46B2 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46B3 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46C0 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46C1 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46C2 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46C3 (ALDERLAKE_P) [22:25:02] [PASSED] 0x46D0 (ALDERLAKE_N) [22:25:02] [PASSED] 0x46D1 (ALDERLAKE_N) [22:25:02] [PASSED] 0x46D2 (ALDERLAKE_N) [22:25:02] [PASSED] 0x46D3 (ALDERLAKE_N) [22:25:02] [PASSED] 0x46D4 (ALDERLAKE_N) [22:25:02] [PASSED] 0xA721 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7A1 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7A9 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7AC (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7AD (ALDERLAKE_P) [22:25:02] [PASSED] 0xA720 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7A0 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7A8 (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7AA (ALDERLAKE_P) [22:25:02] [PASSED] 0xA7AB (ALDERLAKE_P) [22:25:02] [PASSED] 0xA780 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA781 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA782 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA783 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA788 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA789 (ALDERLAKE_S) [22:25:02] [PASSED] 0xA78A (ALDERLAKE_S) [22:25:02] [PASSED] 0xA78B (ALDERLAKE_S) [22:25:02] [PASSED] 0x4905 (DG1) [22:25:02] [PASSED] 0x4906 (DG1) [22:25:02] [PASSED] 0x4907 (DG1) [22:25:02] [PASSED] 0x4908 (DG1) [22:25:02] [PASSED] 0x4909 (DG1) [22:25:02] [PASSED] 0x56C0 (DG2) [22:25:02] [PASSED] 0x56C2 (DG2) [22:25:02] [PASSED] 0x56C1 (DG2) [22:25:02] [PASSED] 0x7D51 (METEORLAKE) [22:25:02] [PASSED] 0x7DD1 (METEORLAKE) [22:25:02] [PASSED] 0x7D41 (METEORLAKE) [22:25:02] [PASSED] 0x7D67 (METEORLAKE) [22:25:02] [PASSED] 0xB640 (METEORLAKE) [22:25:02] [PASSED] 0x56A0 (DG2) [22:25:02] [PASSED] 0x56A1 (DG2) [22:25:02] [PASSED] 0x56A2 (DG2) [22:25:02] [PASSED] 0x56BE (DG2) [22:25:02] [PASSED] 0x56BF (DG2) [22:25:02] [PASSED] 0x5690 (DG2) [22:25:02] [PASSED] 0x5691 (DG2) [22:25:02] [PASSED] 0x5692 (DG2) [22:25:02] [PASSED] 0x56A5 (DG2) [22:25:02] [PASSED] 0x56A6 (DG2) [22:25:02] [PASSED] 0x56B0 (DG2) [22:25:02] [PASSED] 0x56B1 (DG2) [22:25:02] [PASSED] 0x56BA (DG2) [22:25:02] [PASSED] 0x56BB (DG2) [22:25:02] [PASSED] 0x56BC (DG2) [22:25:02] [PASSED] 0x56BD (DG2) [22:25:02] [PASSED] 0x5693 (DG2) [22:25:02] [PASSED] 0x5694 (DG2) [22:25:02] [PASSED] 0x5695 (DG2) [22:25:02] [PASSED] 0x56A3 (DG2) [22:25:02] [PASSED] 0x56A4 (DG2) [22:25:02] [PASSED] 0x56B2 (DG2) [22:25:02] [PASSED] 0x56B3 (DG2) [22:25:02] [PASSED] 0x5696 (DG2) [22:25:02] [PASSED] 0x5697 (DG2) [22:25:02] [PASSED] 0xB69 (PVC) [22:25:02] [PASSED] 0xB6E (PVC) [22:25:02] [PASSED] 0xBD4 (PVC) [22:25:02] [PASSED] 0xBD5 (PVC) [22:25:02] [PASSED] 0xBD6 (PVC) [22:25:02] [PASSED] 0xBD7 (PVC) [22:25:02] [PASSED] 0xBD8 (PVC) [22:25:02] [PASSED] 0xBD9 (PVC) [22:25:02] [PASSED] 0xBDA (PVC) [22:25:02] [PASSED] 0xBDB (PVC) [22:25:02] [PASSED] 0xBE0 (PVC) [22:25:02] [PASSED] 0xBE1 (PVC) [22:25:02] [PASSED] 0xBE5 (PVC) [22:25:02] [PASSED] 0x7D40 (METEORLAKE) [22:25:02] [PASSED] 0x7D45 (METEORLAKE) [22:25:02] [PASSED] 0x7D55 (METEORLAKE) [22:25:02] [PASSED] 0x7D60 (METEORLAKE) [22:25:02] [PASSED] 0x7DD5 (METEORLAKE) [22:25:02] [PASSED] 0x6420 (LUNARLAKE) [22:25:02] [PASSED] 0x64A0 (LUNARLAKE) [22:25:02] [PASSED] 0x64B0 (LUNARLAKE) [22:25:02] [PASSED] 0xE202 (BATTLEMAGE) [22:25:02] [PASSED] 0xE209 (BATTLEMAGE) [22:25:02] [PASSED] 0xE20B (BATTLEMAGE) [22:25:02] [PASSED] 0xE20C (BATTLEMAGE) [22:25:02] [PASSED] 0xE20D (BATTLEMAGE) [22:25:02] [PASSED] 0xE210 (BATTLEMAGE) [22:25:02] [PASSED] 0xE211 (BATTLEMAGE) [22:25:02] [PASSED] 0xE212 (BATTLEMAGE) [22:25:02] [PASSED] 0xE216 (BATTLEMAGE) [22:25:02] [PASSED] 0xE220 (BATTLEMAGE) [22:25:02] [PASSED] 0xE221 (BATTLEMAGE) [22:25:02] [PASSED] 0xE222 (BATTLEMAGE) [22:25:02] [PASSED] 0xE223 (BATTLEMAGE) [22:25:02] [PASSED] 0xB080 (PANTHERLAKE) [22:25:02] [PASSED] 0xB081 (PANTHERLAKE) [22:25:02] [PASSED] 0xB082 (PANTHERLAKE) [22:25:02] [PASSED] 0xB083 (PANTHERLAKE) [22:25:02] [PASSED] 0xB084 (PANTHERLAKE) [22:25:02] [PASSED] 0xB085 (PANTHERLAKE) [22:25:02] [PASSED] 0xB086 (PANTHERLAKE) [22:25:02] [PASSED] 0xB087 (PANTHERLAKE) [22:25:02] [PASSED] 0xB08F (PANTHERLAKE) [22:25:02] [PASSED] 0xB090 (PANTHERLAKE) [22:25:02] [PASSED] 0xB0A0 (PANTHERLAKE) [22:25:02] [PASSED] 0xB0B0 (PANTHERLAKE) [22:25:02] [PASSED] 0xD740 (NOVALAKE_S) [22:25:02] [PASSED] 0xD741 (NOVALAKE_S) [22:25:02] [PASSED] 0xD742 (NOVALAKE_S) [22:25:02] [PASSED] 0xD743 (NOVALAKE_S) [22:25:02] [PASSED] 0xD744 (NOVALAKE_S) [22:25:02] [PASSED] 0xD745 (NOVALAKE_S) [22:25:02] [PASSED] 0x674C (CRESCENTISLAND) [22:25:02] [PASSED] 0xFD80 (PANTHERLAKE) [22:25:02] [PASSED] 0xFD81 (PANTHERLAKE) [22:25:02] =============== [PASSED] check_platform_desc =============== [22:25:02] ===================== [PASSED] xe_pci ====================== [22:25:02] =================== xe_rtp (2 subtests) ==================== [22:25:02] =============== xe_rtp_process_to_sr_tests ================ [22:25:02] [PASSED] coalesce-same-reg [22:25:02] [PASSED] no-match-no-add [22:25:02] [PASSED] match-or [22:25:02] [PASSED] match-or-xfail [22:25:02] [PASSED] no-match-no-add-multiple-rules [22:25:02] [PASSED] two-regs-two-entries [22:25:02] [PASSED] clr-one-set-other [22:25:02] [PASSED] set-field [22:25:02] [PASSED] conflict-duplicate [22:25:02] [PASSED] conflict-not-disjoint [22:25:02] [PASSED] conflict-reg-type [22:25:02] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [22:25:02] ================== xe_rtp_process_tests =================== [22:25:02] [PASSED] active1 [22:25:02] [PASSED] active2 [22:25:02] [PASSED] active-inactive [22:25:02] [PASSED] inactive-active [22:25:02] [PASSED] inactive-1st_or_active-inactive [22:25:02] [PASSED] inactive-2nd_or_active-inactive [22:25:02] [PASSED] inactive-last_or_active-inactive stty: 'standard input': Inappropriate ioctl for device [22:25:02] [PASSED] inactive-no_or_active-inactive [22:25:02] ============== [PASSED] xe_rtp_process_tests =============== [22:25:02] ===================== [PASSED] xe_rtp ====================== [22:25:02] ==================== xe_wa (1 subtest) ===================== [22:25:02] ======================== xe_wa_gt ========================= [22:25:02] [PASSED] TIGERLAKE B0 [22:25:02] [PASSED] DG1 A0 [22:25:02] [PASSED] DG1 B0 [22:25:02] [PASSED] ALDERLAKE_S A0 [22:25:02] [PASSED] ALDERLAKE_S B0 [22:25:02] [PASSED] ALDERLAKE_S C0 [22:25:02] [PASSED] ALDERLAKE_S D0 [22:25:02] [PASSED] ALDERLAKE_P A0 [22:25:02] [PASSED] ALDERLAKE_P B0 [22:25:02] [PASSED] ALDERLAKE_P C0 [22:25:02] [PASSED] ALDERLAKE_S RPLS D0 [22:25:02] [PASSED] ALDERLAKE_P RPLU E0 [22:25:02] [PASSED] DG2 G10 C0 [22:25:02] [PASSED] DG2 G11 B1 [22:25:02] [PASSED] DG2 G12 A1 [22:25:02] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [22:25:02] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [22:25:02] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [22:25:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [22:25:02] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [22:25:02] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [22:25:02] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [22:25:02] ==================== [PASSED] xe_wa_gt ===================== [22:25:02] ====================== [PASSED] xe_wa ====================== [22:25:02] ============================================================ [22:25:02] Testing complete. Ran 318 tests: passed: 300, skipped: 18 [22:25:02] Elapsed time: 34.897s total, 4.210s configuring, 30.322s building, 0.345s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [22:25:02] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [22:25:04] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [22:25:29] Starting KUnit Kernel (1/1)... [22:25:29] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [22:25:29] ============ drm_test_pick_cmdline (2 subtests) ============ [22:25:29] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [22:25:29] =============== drm_test_pick_cmdline_named =============== [22:25:29] [PASSED] NTSC [22:25:29] [PASSED] NTSC-J [22:25:29] [PASSED] PAL [22:25:29] [PASSED] PAL-M [22:25:29] =========== [PASSED] drm_test_pick_cmdline_named =========== [22:25:29] ============== [PASSED] drm_test_pick_cmdline ============== [22:25:29] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [22:25:29] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [22:25:29] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [22:25:29] =========== drm_validate_clone_mode (2 subtests) =========== [22:25:29] ============== drm_test_check_in_clone_mode =============== [22:25:29] [PASSED] in_clone_mode [22:25:29] [PASSED] not_in_clone_mode [22:25:29] ========== [PASSED] drm_test_check_in_clone_mode =========== [22:25:29] =============== drm_test_check_valid_clones =============== [22:25:29] [PASSED] not_in_clone_mode [22:25:29] [PASSED] valid_clone [22:25:29] [PASSED] invalid_clone [22:25:29] =========== [PASSED] drm_test_check_valid_clones =========== [22:25:29] ============= [PASSED] drm_validate_clone_mode ============= [22:25:29] ============= drm_validate_modeset (1 subtest) ============= [22:25:29] [PASSED] drm_test_check_connector_changed_modeset [22:25:29] ============== [PASSED] drm_validate_modeset =============== [22:25:29] ====== drm_test_bridge_get_current_state (2 subtests) ====== [22:25:29] [PASSED] drm_test_drm_bridge_get_current_state_atomic [22:25:29] [PASSED] drm_test_drm_bridge_get_current_state_legacy [22:25:29] ======== [PASSED] drm_test_bridge_get_current_state ======== [22:25:29] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [22:25:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [22:25:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [22:25:29] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [22:25:29] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [22:25:29] ============== drm_bridge_alloc (2 subtests) =============== [22:25:29] [PASSED] drm_test_drm_bridge_alloc_basic [22:25:29] [PASSED] drm_test_drm_bridge_alloc_get_put [22:25:29] ================ [PASSED] drm_bridge_alloc ================= [22:25:29] ================== drm_buddy (8 subtests) ================== [22:25:29] [PASSED] drm_test_buddy_alloc_limit [22:25:29] [PASSED] drm_test_buddy_alloc_optimistic [22:25:29] [PASSED] drm_test_buddy_alloc_pessimistic [22:25:29] [PASSED] drm_test_buddy_alloc_pathological [22:25:29] [PASSED] drm_test_buddy_alloc_contiguous [22:25:29] [PASSED] drm_test_buddy_alloc_clear [22:25:29] [PASSED] drm_test_buddy_alloc_range_bias [22:25:29] [PASSED] drm_test_buddy_fragmentation_performance [22:25:29] ==================== [PASSED] drm_buddy ==================== [22:25:29] ============= drm_cmdline_parser (40 subtests) ============= [22:25:29] [PASSED] drm_test_cmdline_force_d_only [22:25:29] [PASSED] drm_test_cmdline_force_D_only_dvi [22:25:29] [PASSED] drm_test_cmdline_force_D_only_hdmi [22:25:29] [PASSED] drm_test_cmdline_force_D_only_not_digital [22:25:29] [PASSED] drm_test_cmdline_force_e_only [22:25:29] [PASSED] drm_test_cmdline_res [22:25:29] [PASSED] drm_test_cmdline_res_vesa [22:25:29] [PASSED] drm_test_cmdline_res_vesa_rblank [22:25:29] [PASSED] drm_test_cmdline_res_rblank [22:25:29] [PASSED] drm_test_cmdline_res_bpp [22:25:29] [PASSED] drm_test_cmdline_res_refresh [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [22:25:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [22:25:29] [PASSED] drm_test_cmdline_res_margins_force_on [22:25:29] [PASSED] drm_test_cmdline_res_vesa_margins [22:25:29] [PASSED] drm_test_cmdline_name [22:25:29] [PASSED] drm_test_cmdline_name_bpp [22:25:29] [PASSED] drm_test_cmdline_name_option [22:25:29] [PASSED] drm_test_cmdline_name_bpp_option [22:25:29] [PASSED] drm_test_cmdline_rotate_0 [22:25:29] [PASSED] drm_test_cmdline_rotate_90 [22:25:29] [PASSED] drm_test_cmdline_rotate_180 [22:25:29] [PASSED] drm_test_cmdline_rotate_270 [22:25:29] [PASSED] drm_test_cmdline_hmirror [22:25:29] [PASSED] drm_test_cmdline_vmirror [22:25:29] [PASSED] drm_test_cmdline_margin_options [22:25:29] [PASSED] drm_test_cmdline_multiple_options [22:25:29] [PASSED] drm_test_cmdline_bpp_extra_and_option [22:25:29] [PASSED] drm_test_cmdline_extra_and_option [22:25:29] [PASSED] drm_test_cmdline_freestanding_options [22:25:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [22:25:29] [PASSED] drm_test_cmdline_panel_orientation [22:25:29] ================ drm_test_cmdline_invalid ================= [22:25:29] [PASSED] margin_only [22:25:29] [PASSED] interlace_only [22:25:29] [PASSED] res_missing_x [22:25:29] [PASSED] res_missing_y [22:25:29] [PASSED] res_bad_y [22:25:29] [PASSED] res_missing_y_bpp [22:25:29] [PASSED] res_bad_bpp [22:25:29] [PASSED] res_bad_refresh [22:25:29] [PASSED] res_bpp_refresh_force_on_off [22:25:29] [PASSED] res_invalid_mode [22:25:29] [PASSED] res_bpp_wrong_place_mode [22:25:29] [PASSED] name_bpp_refresh [22:25:29] [PASSED] name_refresh [22:25:29] [PASSED] name_refresh_wrong_mode [22:25:29] [PASSED] name_refresh_invalid_mode [22:25:29] [PASSED] rotate_multiple [22:25:29] [PASSED] rotate_invalid_val [22:25:29] [PASSED] rotate_truncated [22:25:29] [PASSED] invalid_option [22:25:29] [PASSED] invalid_tv_option [22:25:29] [PASSED] truncated_tv_option [22:25:29] ============ [PASSED] drm_test_cmdline_invalid ============= [22:25:29] =============== drm_test_cmdline_tv_options =============== [22:25:29] [PASSED] NTSC [22:25:29] [PASSED] NTSC_443 [22:25:29] [PASSED] NTSC_J [22:25:29] [PASSED] PAL [22:25:29] [PASSED] PAL_M [22:25:29] [PASSED] PAL_N [22:25:29] [PASSED] SECAM [22:25:29] [PASSED] MONO_525 [22:25:29] [PASSED] MONO_625 [22:25:29] =========== [PASSED] drm_test_cmdline_tv_options =========== [22:25:29] =============== [PASSED] drm_cmdline_parser ================ [22:25:29] ========== drmm_connector_hdmi_init (20 subtests) ========== [22:25:29] [PASSED] drm_test_connector_hdmi_init_valid [22:25:29] [PASSED] drm_test_connector_hdmi_init_bpc_8 [22:25:29] [PASSED] drm_test_connector_hdmi_init_bpc_10 [22:25:29] [PASSED] drm_test_connector_hdmi_init_bpc_12 [22:25:29] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [22:25:29] [PASSED] drm_test_connector_hdmi_init_bpc_null [22:25:29] [PASSED] drm_test_connector_hdmi_init_formats_empty [22:25:29] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [22:25:29] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [22:25:29] [PASSED] supported_formats=0x9 yuv420_allowed=1 [22:25:29] [PASSED] supported_formats=0x9 yuv420_allowed=0 [22:25:29] [PASSED] supported_formats=0x3 yuv420_allowed=1 [22:25:29] [PASSED] supported_formats=0x3 yuv420_allowed=0 [22:25:29] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [22:25:29] [PASSED] drm_test_connector_hdmi_init_null_ddc [22:25:29] [PASSED] drm_test_connector_hdmi_init_null_product [22:25:29] [PASSED] drm_test_connector_hdmi_init_null_vendor [22:25:29] [PASSED] drm_test_connector_hdmi_init_product_length_exact [22:25:29] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [22:25:29] [PASSED] drm_test_connector_hdmi_init_product_valid [22:25:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [22:25:29] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [22:25:29] [PASSED] drm_test_connector_hdmi_init_vendor_valid [22:25:29] ========= drm_test_connector_hdmi_init_type_valid ========= [22:25:29] [PASSED] HDMI-A [22:25:29] [PASSED] HDMI-B [22:25:29] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [22:25:29] ======== drm_test_connector_hdmi_init_type_invalid ======== [22:25:29] [PASSED] Unknown [22:25:29] [PASSED] VGA [22:25:29] [PASSED] DVI-I [22:25:29] [PASSED] DVI-D [22:25:29] [PASSED] DVI-A [22:25:29] [PASSED] Composite [22:25:29] [PASSED] SVIDEO [22:25:29] [PASSED] LVDS [22:25:29] [PASSED] Component [22:25:29] [PASSED] DIN [22:25:29] [PASSED] DP [22:25:29] [PASSED] TV [22:25:29] [PASSED] eDP [22:25:29] [PASSED] Virtual [22:25:29] [PASSED] DSI [22:25:29] [PASSED] DPI [22:25:29] [PASSED] Writeback [22:25:29] [PASSED] SPI [22:25:29] [PASSED] USB [22:25:29] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [22:25:29] ============ [PASSED] drmm_connector_hdmi_init ============= [22:25:29] ============= drmm_connector_init (3 subtests) ============= [22:25:29] [PASSED] drm_test_drmm_connector_init [22:25:29] [PASSED] drm_test_drmm_connector_init_null_ddc [22:25:29] ========= drm_test_drmm_connector_init_type_valid ========= [22:25:29] [PASSED] Unknown [22:25:29] [PASSED] VGA [22:25:29] [PASSED] DVI-I [22:25:29] [PASSED] DVI-D [22:25:29] [PASSED] DVI-A [22:25:29] [PASSED] Composite [22:25:29] [PASSED] SVIDEO [22:25:29] [PASSED] LVDS [22:25:29] [PASSED] Component [22:25:29] [PASSED] DIN [22:25:29] [PASSED] DP [22:25:29] [PASSED] HDMI-A [22:25:29] [PASSED] HDMI-B [22:25:29] [PASSED] TV [22:25:29] [PASSED] eDP [22:25:29] [PASSED] Virtual [22:25:29] [PASSED] DSI [22:25:29] [PASSED] DPI [22:25:29] [PASSED] Writeback [22:25:29] [PASSED] SPI [22:25:29] [PASSED] USB [22:25:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [22:25:29] =============== [PASSED] drmm_connector_init =============== [22:25:29] ========= drm_connector_dynamic_init (6 subtests) ========== [22:25:29] [PASSED] drm_test_drm_connector_dynamic_init [22:25:29] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [22:25:29] [PASSED] drm_test_drm_connector_dynamic_init_not_added [22:25:29] [PASSED] drm_test_drm_connector_dynamic_init_properties [22:25:29] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [22:25:29] [PASSED] Unknown [22:25:29] [PASSED] VGA [22:25:29] [PASSED] DVI-I [22:25:29] [PASSED] DVI-D [22:25:29] [PASSED] DVI-A [22:25:29] [PASSED] Composite [22:25:29] [PASSED] SVIDEO [22:25:29] [PASSED] LVDS [22:25:29] [PASSED] Component [22:25:29] [PASSED] DIN [22:25:29] [PASSED] DP [22:25:29] [PASSED] HDMI-A [22:25:29] [PASSED] HDMI-B [22:25:29] [PASSED] TV [22:25:29] [PASSED] eDP [22:25:29] [PASSED] Virtual [22:25:29] [PASSED] DSI [22:25:29] [PASSED] DPI [22:25:29] [PASSED] Writeback [22:25:29] [PASSED] SPI [22:25:29] [PASSED] USB [22:25:29] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [22:25:29] ======== drm_test_drm_connector_dynamic_init_name ========= [22:25:29] [PASSED] Unknown [22:25:29] [PASSED] VGA [22:25:29] [PASSED] DVI-I [22:25:29] [PASSED] DVI-D [22:25:29] [PASSED] DVI-A [22:25:29] [PASSED] Composite [22:25:29] [PASSED] SVIDEO [22:25:29] [PASSED] LVDS [22:25:29] [PASSED] Component [22:25:29] [PASSED] DIN [22:25:29] [PASSED] DP [22:25:29] [PASSED] HDMI-A [22:25:29] [PASSED] HDMI-B [22:25:29] [PASSED] TV [22:25:29] [PASSED] eDP [22:25:29] [PASSED] Virtual [22:25:29] [PASSED] DSI [22:25:29] [PASSED] DPI [22:25:29] [PASSED] Writeback [22:25:29] [PASSED] SPI [22:25:29] [PASSED] USB [22:25:29] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [22:25:29] =========== [PASSED] drm_connector_dynamic_init ============ [22:25:29] ==== drm_connector_dynamic_register_early (4 subtests) ===== [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [22:25:29] ====== [PASSED] drm_connector_dynamic_register_early ======= [22:25:29] ======= drm_connector_dynamic_register (7 subtests) ======== [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_on_list [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_no_init [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [22:25:29] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [22:25:29] ========= [PASSED] drm_connector_dynamic_register ========== [22:25:29] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [22:25:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [22:25:29] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [22:25:29] === [PASSED] drm_connector_attach_broadcast_rgb_property === [22:25:29] ========== drm_get_tv_mode_from_name (2 subtests) ========== [22:25:29] ========== drm_test_get_tv_mode_from_name_valid =========== [22:25:29] [PASSED] NTSC [22:25:29] [PASSED] NTSC-443 [22:25:29] [PASSED] NTSC-J [22:25:29] [PASSED] PAL [22:25:29] [PASSED] PAL-M [22:25:29] [PASSED] PAL-N [22:25:29] [PASSED] SECAM [22:25:29] [PASSED] Mono [22:25:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [22:25:29] [PASSED] drm_test_get_tv_mode_from_name_truncated [22:25:29] ============ [PASSED] drm_get_tv_mode_from_name ============ [22:25:29] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [22:25:29] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [22:25:29] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [22:25:29] [PASSED] VIC 96 [22:25:29] [PASSED] VIC 97 [22:25:29] [PASSED] VIC 101 [22:25:29] [PASSED] VIC 102 [22:25:29] [PASSED] VIC 106 [22:25:29] [PASSED] VIC 107 [22:25:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [22:25:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [22:25:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [22:25:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [22:25:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [22:25:29] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [22:25:29] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [22:25:29] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [22:25:29] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [22:25:29] [PASSED] Automatic [22:25:29] [PASSED] Full [22:25:29] [PASSED] Limited 16:235 [22:25:29] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [22:25:29] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [22:25:29] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [22:25:29] == drm_hdmi_connector_get_output_format_name (2 subtests) == [22:25:29] === drm_test_drm_hdmi_connector_get_output_format_name ==== [22:25:29] [PASSED] RGB [22:25:29] [PASSED] YUV 4:2:0 [22:25:29] [PASSED] YUV 4:2:2 [22:25:29] [PASSED] YUV 4:4:4 [22:25:29] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [22:25:29] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [22:25:29] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [22:25:29] ============= drm_damage_helper (21 subtests) ============== [22:25:29] [PASSED] drm_test_damage_iter_no_damage [22:25:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src [22:25:29] [PASSED] drm_test_damage_iter_no_damage_src_moved [22:25:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [22:25:29] [PASSED] drm_test_damage_iter_no_damage_not_visible [22:25:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc [22:25:29] [PASSED] drm_test_damage_iter_no_damage_no_fb [22:25:29] [PASSED] drm_test_damage_iter_simple_damage [22:25:29] [PASSED] drm_test_damage_iter_single_damage [22:25:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src [22:25:29] [PASSED] drm_test_damage_iter_single_damage_outside_src [22:25:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src [22:25:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [22:25:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [22:25:29] [PASSED] drm_test_damage_iter_single_damage_src_moved [22:25:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [22:25:29] [PASSED] drm_test_damage_iter_damage [22:25:29] [PASSED] drm_test_damage_iter_damage_one_intersect [22:25:29] [PASSED] drm_test_damage_iter_damage_one_outside [22:25:29] [PASSED] drm_test_damage_iter_damage_src_moved [22:25:29] [PASSED] drm_test_damage_iter_damage_not_visible [22:25:29] ================ [PASSED] drm_damage_helper ================ [22:25:29] ============== drm_dp_mst_helper (3 subtests) ============== [22:25:29] ============== drm_test_dp_mst_calc_pbn_mode ============== [22:25:29] [PASSED] Clock 154000 BPP 30 DSC disabled [22:25:29] [PASSED] Clock 234000 BPP 30 DSC disabled [22:25:29] [PASSED] Clock 297000 BPP 24 DSC disabled [22:25:29] [PASSED] Clock 332880 BPP 24 DSC enabled [22:25:29] [PASSED] Clock 324540 BPP 24 DSC enabled [22:25:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [22:25:29] ============== drm_test_dp_mst_calc_pbn_div =============== [22:25:29] [PASSED] Link rate 2000000 lane count 4 [22:25:29] [PASSED] Link rate 2000000 lane count 2 [22:25:29] [PASSED] Link rate 2000000 lane count 1 [22:25:29] [PASSED] Link rate 1350000 lane count 4 [22:25:29] [PASSED] Link rate 1350000 lane count 2 [22:25:29] [PASSED] Link rate 1350000 lane count 1 [22:25:29] [PASSED] Link rate 1000000 lane count 4 [22:25:29] [PASSED] Link rate 1000000 lane count 2 [22:25:29] [PASSED] Link rate 1000000 lane count 1 [22:25:29] [PASSED] Link rate 810000 lane count 4 [22:25:29] [PASSED] Link rate 810000 lane count 2 [22:25:29] [PASSED] Link rate 810000 lane count 1 [22:25:29] [PASSED] Link rate 540000 lane count 4 [22:25:29] [PASSED] Link rate 540000 lane count 2 [22:25:29] [PASSED] Link rate 540000 lane count 1 [22:25:29] [PASSED] Link rate 270000 lane count 4 [22:25:29] [PASSED] Link rate 270000 lane count 2 [22:25:29] [PASSED] Link rate 270000 lane count 1 [22:25:29] [PASSED] Link rate 162000 lane count 4 [22:25:29] [PASSED] Link rate 162000 lane count 2 [22:25:29] [PASSED] Link rate 162000 lane count 1 [22:25:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [22:25:29] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [22:25:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number [22:25:29] [PASSED] DP_POWER_UP_PHY with port number [22:25:29] [PASSED] DP_POWER_DOWN_PHY with port number [22:25:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [22:25:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number [22:25:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [22:25:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [22:25:29] [PASSED] DP_QUERY_PAYLOAD with port number [22:25:29] [PASSED] DP_QUERY_PAYLOAD with VCPI [22:25:29] [PASSED] DP_REMOTE_DPCD_READ with port number [22:25:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [22:25:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [22:25:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number [22:25:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [22:25:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array [22:25:29] [PASSED] DP_REMOTE_I2C_READ with port number [22:25:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [22:25:29] [PASSED] DP_REMOTE_I2C_READ with transactions array [22:25:29] [PASSED] DP_REMOTE_I2C_WRITE with port number [22:25:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [22:25:29] [PASSED] DP_REMOTE_I2C_WRITE with data array [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [22:25:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [22:25:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [22:25:29] ================ [PASSED] drm_dp_mst_helper ================ [22:25:29] ================== drm_exec (7 subtests) =================== [22:25:29] [PASSED] sanitycheck [22:25:29] [PASSED] test_lock [22:25:29] [PASSED] test_lock_unlock [22:25:29] [PASSED] test_duplicates [22:25:29] [PASSED] test_prepare [22:25:29] [PASSED] test_prepare_array [22:25:29] [PASSED] test_multiple_loops [22:25:29] ==================== [PASSED] drm_exec ===================== [22:25:29] =========== drm_format_helper_test (17 subtests) =========== [22:25:29] ============== drm_test_fb_xrgb8888_to_gray8 ============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [22:25:29] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [22:25:29] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [22:25:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [22:25:29] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [22:25:29] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [22:25:29] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [22:25:29] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [22:25:29] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [22:25:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [22:25:29] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [22:25:29] ============== drm_test_fb_xrgb8888_to_mono =============== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [22:25:29] ==================== drm_test_fb_swab ===================== [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ================ [PASSED] drm_test_fb_swab ================= [22:25:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [22:25:29] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [22:25:29] [PASSED] single_pixel_source_buffer [22:25:29] [PASSED] single_pixel_clip_rectangle [22:25:29] [PASSED] well_known_colors [22:25:29] [PASSED] destination_pitch [22:25:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [22:25:29] ================= drm_test_fb_clip_offset ================= [22:25:29] [PASSED] pass through [22:25:29] [PASSED] horizontal offset [22:25:29] [PASSED] vertical offset [22:25:29] [PASSED] horizontal and vertical offset [22:25:29] [PASSED] horizontal offset (custom pitch) [22:25:29] [PASSED] vertical offset (custom pitch) [22:25:29] [PASSED] horizontal and vertical offset (custom pitch) [22:25:29] ============= [PASSED] drm_test_fb_clip_offset ============= [22:25:29] =================== drm_test_fb_memcpy ==================== [22:25:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [22:25:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [22:25:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [22:25:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [22:25:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [22:25:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [22:25:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [22:25:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [22:25:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [22:25:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [22:25:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [22:25:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [22:25:29] =============== [PASSED] drm_test_fb_memcpy ================ [22:25:29] ============= [PASSED] drm_format_helper_test ============== [22:25:29] ================= drm_format (18 subtests) ================= [22:25:29] [PASSED] drm_test_format_block_width_invalid [22:25:29] [PASSED] drm_test_format_block_width_one_plane [22:25:29] [PASSED] drm_test_format_block_width_two_plane [22:25:29] [PASSED] drm_test_format_block_width_three_plane [22:25:29] [PASSED] drm_test_format_block_width_tiled [22:25:29] [PASSED] drm_test_format_block_height_invalid [22:25:29] [PASSED] drm_test_format_block_height_one_plane [22:25:29] [PASSED] drm_test_format_block_height_two_plane [22:25:29] [PASSED] drm_test_format_block_height_three_plane [22:25:29] [PASSED] drm_test_format_block_height_tiled [22:25:29] [PASSED] drm_test_format_min_pitch_invalid [22:25:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [22:25:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [22:25:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [22:25:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [22:25:29] [PASSED] drm_test_format_min_pitch_two_plane [22:25:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [22:25:29] [PASSED] drm_test_format_min_pitch_tiled [22:25:29] =================== [PASSED] drm_format ==================== [22:25:29] ============== drm_framebuffer (10 subtests) =============== [22:25:29] ========== drm_test_framebuffer_check_src_coords ========== [22:25:29] [PASSED] Success: source fits into fb [22:25:29] [PASSED] Fail: overflowing fb with x-axis coordinate [22:25:29] [PASSED] Fail: overflowing fb with y-axis coordinate [22:25:29] [PASSED] Fail: overflowing fb with source width [22:25:29] [PASSED] Fail: overflowing fb with source height [22:25:29] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [22:25:29] [PASSED] drm_test_framebuffer_cleanup [22:25:29] =============== drm_test_framebuffer_create =============== [22:25:29] [PASSED] ABGR8888 normal sizes [22:25:29] [PASSED] ABGR8888 max sizes [22:25:29] [PASSED] ABGR8888 pitch greater than min required [22:25:29] [PASSED] ABGR8888 pitch less than min required [22:25:29] [PASSED] ABGR8888 Invalid width [22:25:29] [PASSED] ABGR8888 Invalid buffer handle [22:25:29] [PASSED] No pixel format [22:25:29] [PASSED] ABGR8888 Width 0 [22:25:29] [PASSED] ABGR8888 Height 0 [22:25:29] [PASSED] ABGR8888 Out of bound height * pitch combination [22:25:29] [PASSED] ABGR8888 Large buffer offset [22:25:29] [PASSED] ABGR8888 Buffer offset for inexistent plane [22:25:29] [PASSED] ABGR8888 Invalid flag [22:25:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [22:25:29] [PASSED] ABGR8888 Valid buffer modifier [22:25:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [22:25:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] NV12 Normal sizes [22:25:29] [PASSED] NV12 Max sizes [22:25:29] [PASSED] NV12 Invalid pitch [22:25:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [22:25:29] [PASSED] NV12 different modifier per-plane [22:25:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [22:25:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] NV12 Modifier for inexistent plane [22:25:29] [PASSED] NV12 Handle for inexistent plane [22:25:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [22:25:29] [PASSED] YVU420 Normal sizes [22:25:29] [PASSED] YVU420 Max sizes [22:25:29] [PASSED] YVU420 Invalid pitch [22:25:29] [PASSED] YVU420 Different pitches [22:25:29] [PASSED] YVU420 Different buffer offsets/pitches [22:25:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [22:25:29] [PASSED] YVU420 Valid modifier [22:25:29] [PASSED] YVU420 Different modifiers per plane [22:25:29] [PASSED] YVU420 Modifier for inexistent plane [22:25:29] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [22:25:29] [PASSED] X0L2 Normal sizes [22:25:29] [PASSED] X0L2 Max sizes [22:25:29] [PASSED] X0L2 Invalid pitch [22:25:29] [PASSED] X0L2 Pitch greater than minimum required [22:25:29] [PASSED] X0L2 Handle for inexistent plane [22:25:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [22:25:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [22:25:29] [PASSED] X0L2 Valid modifier [22:25:29] [PASSED] X0L2 Modifier for inexistent plane [22:25:29] =========== [PASSED] drm_test_framebuffer_create =========== [22:25:29] [PASSED] drm_test_framebuffer_free [22:25:29] [PASSED] drm_test_framebuffer_init [22:25:29] [PASSED] drm_test_framebuffer_init_bad_format [22:25:29] [PASSED] drm_test_framebuffer_init_dev_mismatch [22:25:29] [PASSED] drm_test_framebuffer_lookup [22:25:29] [PASSED] drm_test_framebuffer_lookup_inexistent [22:25:29] [PASSED] drm_test_framebuffer_modifiers_not_supported [22:25:29] ================= [PASSED] drm_framebuffer ================= [22:25:29] ================ drm_gem_shmem (8 subtests) ================ [22:25:29] [PASSED] drm_gem_shmem_test_obj_create [22:25:29] [PASSED] drm_gem_shmem_test_obj_create_private [22:25:29] [PASSED] drm_gem_shmem_test_pin_pages [22:25:29] [PASSED] drm_gem_shmem_test_vmap [22:25:29] [PASSED] drm_gem_shmem_test_get_pages_sgt [22:25:29] [PASSED] drm_gem_shmem_test_get_sg_table [22:25:29] [PASSED] drm_gem_shmem_test_madvise [22:25:29] [PASSED] drm_gem_shmem_test_purge [22:25:29] ================== [PASSED] drm_gem_shmem ================== [22:25:29] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [22:25:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [22:25:29] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [22:25:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [22:25:29] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [22:25:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [22:25:29] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [22:25:29] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [22:25:29] [PASSED] Automatic [22:25:29] [PASSED] Full [22:25:29] [PASSED] Limited 16:235 [22:25:29] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [22:25:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [22:25:29] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [22:25:29] [PASSED] drm_test_check_disable_connector [22:25:29] [PASSED] drm_test_check_hdmi_funcs_reject_rate [22:25:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [22:25:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [22:25:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [22:25:29] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [22:25:29] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [22:25:29] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [22:25:29] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [22:25:29] [PASSED] drm_test_check_output_bpc_dvi [22:25:29] [PASSED] drm_test_check_output_bpc_format_vic_1 [22:25:29] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [22:25:29] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [22:25:29] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [22:25:29] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [22:25:29] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [22:25:29] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [22:25:29] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [22:25:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [22:25:29] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [22:25:29] [PASSED] drm_test_check_broadcast_rgb_value [22:25:29] [PASSED] drm_test_check_bpc_8_value [22:25:29] [PASSED] drm_test_check_bpc_10_value [22:25:29] [PASSED] drm_test_check_bpc_12_value [22:25:29] [PASSED] drm_test_check_format_value [22:25:29] [PASSED] drm_test_check_tmds_char_value [22:25:29] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [22:25:29] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [22:25:29] [PASSED] drm_test_check_mode_valid [22:25:29] [PASSED] drm_test_check_mode_valid_reject [22:25:29] [PASSED] drm_test_check_mode_valid_reject_rate [22:25:29] [PASSED] drm_test_check_mode_valid_reject_max_clock [22:25:29] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [22:25:29] ================= drm_managed (2 subtests) ================= [22:25:29] [PASSED] drm_test_managed_release_action [22:25:29] [PASSED] drm_test_managed_run_action [22:25:29] =================== [PASSED] drm_managed =================== [22:25:29] =================== drm_mm (6 subtests) ==================== [22:25:29] [PASSED] drm_test_mm_init [22:25:29] [PASSED] drm_test_mm_debug [22:25:29] [PASSED] drm_test_mm_align32 [22:25:29] [PASSED] drm_test_mm_align64 [22:25:29] [PASSED] drm_test_mm_lowest [22:25:29] [PASSED] drm_test_mm_highest [22:25:29] ===================== [PASSED] drm_mm ====================== [22:25:29] ============= drm_modes_analog_tv (5 subtests) ============= [22:25:29] [PASSED] drm_test_modes_analog_tv_mono_576i [22:25:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i [22:25:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [22:25:29] [PASSED] drm_test_modes_analog_tv_pal_576i [22:25:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [22:25:29] =============== [PASSED] drm_modes_analog_tv =============== [22:25:29] ============== drm_plane_helper (2 subtests) =============== [22:25:29] =============== drm_test_check_plane_state ================ [22:25:29] [PASSED] clipping_simple [22:25:29] [PASSED] clipping_rotate_reflect [22:25:29] [PASSED] positioning_simple [22:25:29] [PASSED] upscaling [22:25:29] [PASSED] downscaling [22:25:29] [PASSED] rounding1 [22:25:29] [PASSED] rounding2 [22:25:29] [PASSED] rounding3 [22:25:29] [PASSED] rounding4 [22:25:29] =========== [PASSED] drm_test_check_plane_state ============ [22:25:29] =========== drm_test_check_invalid_plane_state ============ [22:25:29] [PASSED] positioning_invalid [22:25:29] [PASSED] upscaling_invalid [22:25:29] [PASSED] downscaling_invalid [22:25:29] ======= [PASSED] drm_test_check_invalid_plane_state ======== [22:25:29] ================ [PASSED] drm_plane_helper ================= [22:25:29] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [22:25:29] ====== drm_test_connector_helper_tv_get_modes_check ======= [22:25:29] [PASSED] None [22:25:29] [PASSED] PAL [22:25:29] [PASSED] NTSC [22:25:29] [PASSED] Both, NTSC Default [22:25:29] [PASSED] Both, PAL Default [22:25:29] [PASSED] Both, NTSC Default, with PAL on command-line [22:25:29] [PASSED] Both, PAL Default, with NTSC on command-line [22:25:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [22:25:29] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [22:25:29] ================== drm_rect (9 subtests) =================== [22:25:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero [22:25:29] [PASSED] drm_test_rect_clip_scaled_not_clipped [22:25:29] [PASSED] drm_test_rect_clip_scaled_clipped [22:25:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [22:25:29] ================= drm_test_rect_intersect ================= [22:25:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [22:25:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [22:25:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [22:25:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [22:25:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [22:25:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [22:25:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [22:25:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [22:25:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [22:25:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [22:25:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [22:25:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [22:25:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [22:25:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [22:25:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [22:25:29] ============= [PASSED] drm_test_rect_intersect ============= [22:25:29] ================ drm_test_rect_calc_hscale ================ [22:25:29] [PASSED] normal use [22:25:29] [PASSED] out of max range [22:25:29] [PASSED] out of min range [22:25:29] [PASSED] zero dst [22:25:29] [PASSED] negative src [22:25:29] [PASSED] negative dst [22:25:29] ============ [PASSED] drm_test_rect_calc_hscale ============ [22:25:29] ================ drm_test_rect_calc_vscale ================ [22:25:29] [PASSED] normal use stty: 'standard input': Inappropriate ioctl for device [22:25:29] [PASSED] out of max range [22:25:29] [PASSED] out of min range [22:25:29] [PASSED] zero dst [22:25:29] [PASSED] negative src [22:25:29] [PASSED] negative dst [22:25:29] ============ [PASSED] drm_test_rect_calc_vscale ============ [22:25:29] ================== drm_test_rect_rotate =================== [22:25:29] [PASSED] reflect-x [22:25:29] [PASSED] reflect-y [22:25:29] [PASSED] rotate-0 [22:25:29] [PASSED] rotate-90 [22:25:29] [PASSED] rotate-180 [22:25:29] [PASSED] rotate-270 [22:25:29] ============== [PASSED] drm_test_rect_rotate =============== [22:25:29] ================ drm_test_rect_rotate_inv ================= [22:25:29] [PASSED] reflect-x [22:25:29] [PASSED] reflect-y [22:25:29] [PASSED] rotate-0 [22:25:29] [PASSED] rotate-90 [22:25:29] [PASSED] rotate-180 [22:25:29] [PASSED] rotate-270 [22:25:29] ============ [PASSED] drm_test_rect_rotate_inv ============= [22:25:29] ==================== [PASSED] drm_rect ===================== [22:25:29] ============ drm_sysfb_modeset_test (1 subtest) ============ [22:25:29] ============ drm_test_sysfb_build_fourcc_list ============= [22:25:29] [PASSED] no native formats [22:25:29] [PASSED] XRGB8888 as native format [22:25:29] [PASSED] remove duplicates [22:25:29] [PASSED] convert alpha formats [22:25:29] [PASSED] random formats [22:25:29] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [22:25:29] ============= [PASSED] drm_sysfb_modeset_test ============== [22:25:29] ============================================================ [22:25:29] Testing complete. Ran 622 tests: passed: 622 [22:25:29] Elapsed time: 27.179s total, 1.667s configuring, 25.093s building, 0.388s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [22:25:29] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [22:25:31] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [22:25:40] Starting KUnit Kernel (1/1)... [22:25:40] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [22:25:40] ================= ttm_device (5 subtests) ================== [22:25:40] [PASSED] ttm_device_init_basic [22:25:40] [PASSED] ttm_device_init_multiple [22:25:40] [PASSED] ttm_device_fini_basic [22:25:40] [PASSED] ttm_device_init_no_vma_man [22:25:40] ================== ttm_device_init_pools ================== [22:25:40] [PASSED] No DMA allocations, no DMA32 required [22:25:40] [PASSED] DMA allocations, DMA32 required [22:25:40] [PASSED] No DMA allocations, DMA32 required [22:25:40] [PASSED] DMA allocations, no DMA32 required [22:25:40] ============== [PASSED] ttm_device_init_pools ============== [22:25:40] =================== [PASSED] ttm_device ==================== [22:25:40] ================== ttm_pool (8 subtests) =================== [22:25:40] ================== ttm_pool_alloc_basic =================== [22:25:40] [PASSED] One page [22:25:40] [PASSED] More than one page [22:25:40] [PASSED] Above the allocation limit [22:25:40] [PASSED] One page, with coherent DMA mappings enabled [22:25:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [22:25:40] ============== [PASSED] ttm_pool_alloc_basic =============== [22:25:40] ============== ttm_pool_alloc_basic_dma_addr ============== [22:25:40] [PASSED] One page [22:25:40] [PASSED] More than one page [22:25:40] [PASSED] Above the allocation limit [22:25:40] [PASSED] One page, with coherent DMA mappings enabled [22:25:40] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [22:25:40] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [22:25:40] [PASSED] ttm_pool_alloc_order_caching_match [22:25:40] [PASSED] ttm_pool_alloc_caching_mismatch [22:25:40] [PASSED] ttm_pool_alloc_order_mismatch [22:25:40] [PASSED] ttm_pool_free_dma_alloc [22:25:40] [PASSED] ttm_pool_free_no_dma_alloc [22:25:40] [PASSED] ttm_pool_fini_basic [22:25:40] ==================== [PASSED] ttm_pool ===================== [22:25:40] ================ ttm_resource (8 subtests) ================= [22:25:40] ================= ttm_resource_init_basic ================= [22:25:40] [PASSED] Init resource in TTM_PL_SYSTEM [22:25:40] [PASSED] Init resource in TTM_PL_VRAM [22:25:40] [PASSED] Init resource in a private placement [22:25:40] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [22:25:40] ============= [PASSED] ttm_resource_init_basic ============= [22:25:40] [PASSED] ttm_resource_init_pinned [22:25:40] [PASSED] ttm_resource_fini_basic [22:25:40] [PASSED] ttm_resource_manager_init_basic [22:25:40] [PASSED] ttm_resource_manager_usage_basic [22:25:40] [PASSED] ttm_resource_manager_set_used_basic [22:25:40] [PASSED] ttm_sys_man_alloc_basic [22:25:40] [PASSED] ttm_sys_man_free_basic [22:25:40] ================== [PASSED] ttm_resource =================== [22:25:40] =================== ttm_tt (15 subtests) =================== [22:25:40] ==================== ttm_tt_init_basic ==================== [22:25:40] [PASSED] Page-aligned size [22:25:40] [PASSED] Extra pages requested [22:25:40] ================ [PASSED] ttm_tt_init_basic ================ [22:25:40] [PASSED] ttm_tt_init_misaligned [22:25:40] [PASSED] ttm_tt_fini_basic [22:25:40] [PASSED] ttm_tt_fini_sg [22:25:40] [PASSED] ttm_tt_fini_shmem [22:25:40] [PASSED] ttm_tt_create_basic [22:25:40] [PASSED] ttm_tt_create_invalid_bo_type [22:25:40] [PASSED] ttm_tt_create_ttm_exists [22:25:40] [PASSED] ttm_tt_create_failed [22:25:40] [PASSED] ttm_tt_destroy_basic [22:25:40] [PASSED] ttm_tt_populate_null_ttm [22:25:40] [PASSED] ttm_tt_populate_populated_ttm [22:25:40] [PASSED] ttm_tt_unpopulate_basic [22:25:40] [PASSED] ttm_tt_unpopulate_empty_ttm [22:25:40] [PASSED] ttm_tt_swapin_basic [22:25:40] ===================== [PASSED] ttm_tt ====================== [22:25:40] =================== ttm_bo (14 subtests) =================== [22:25:40] =========== ttm_bo_reserve_optimistic_no_ticket =========== [22:25:40] [PASSED] Cannot be interrupted and sleeps [22:25:40] [PASSED] Cannot be interrupted, locks straight away [22:25:40] [PASSED] Can be interrupted, sleeps [22:25:40] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [22:25:40] [PASSED] ttm_bo_reserve_locked_no_sleep [22:25:40] [PASSED] ttm_bo_reserve_no_wait_ticket [22:25:41] [PASSED] ttm_bo_reserve_double_resv [22:25:41] [PASSED] ttm_bo_reserve_interrupted [22:25:41] [PASSED] ttm_bo_reserve_deadlock [22:25:41] [PASSED] ttm_bo_unreserve_basic [22:25:41] [PASSED] ttm_bo_unreserve_pinned [22:25:41] [PASSED] ttm_bo_unreserve_bulk [22:25:41] [PASSED] ttm_bo_fini_basic [22:25:41] [PASSED] ttm_bo_fini_shared_resv [22:25:41] [PASSED] ttm_bo_pin_basic [22:25:41] [PASSED] ttm_bo_pin_unpin_resource [22:25:41] [PASSED] ttm_bo_multiple_pin_one_unpin [22:25:41] ===================== [PASSED] ttm_bo ====================== [22:25:41] ============== ttm_bo_validate (21 subtests) =============== [22:25:41] ============== ttm_bo_init_reserved_sys_man =============== [22:25:41] [PASSED] Buffer object for userspace [22:25:41] [PASSED] Kernel buffer object [22:25:41] [PASSED] Shared buffer object [22:25:41] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [22:25:41] ============== ttm_bo_init_reserved_mock_man ============== [22:25:41] [PASSED] Buffer object for userspace [22:25:41] [PASSED] Kernel buffer object [22:25:41] [PASSED] Shared buffer object [22:25:41] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [22:25:41] [PASSED] ttm_bo_init_reserved_resv [22:25:41] ================== ttm_bo_validate_basic ================== [22:25:41] [PASSED] Buffer object for userspace [22:25:41] [PASSED] Kernel buffer object [22:25:41] [PASSED] Shared buffer object [22:25:41] ============== [PASSED] ttm_bo_validate_basic ============== [22:25:41] [PASSED] ttm_bo_validate_invalid_placement [22:25:41] ============= ttm_bo_validate_same_placement ============== [22:25:41] [PASSED] System manager [22:25:41] [PASSED] VRAM manager [22:25:41] ========= [PASSED] ttm_bo_validate_same_placement ========== [22:25:41] [PASSED] ttm_bo_validate_failed_alloc [22:25:41] [PASSED] ttm_bo_validate_pinned [22:25:41] [PASSED] ttm_bo_validate_busy_placement [22:25:41] ================ ttm_bo_validate_multihop ================= [22:25:41] [PASSED] Buffer object for userspace [22:25:41] [PASSED] Kernel buffer object [22:25:41] [PASSED] Shared buffer object [22:25:41] ============ [PASSED] ttm_bo_validate_multihop ============= [22:25:41] ========== ttm_bo_validate_no_placement_signaled ========== [22:25:41] [PASSED] Buffer object in system domain, no page vector [22:25:41] [PASSED] Buffer object in system domain with an existing page vector [22:25:41] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [22:25:41] ======== ttm_bo_validate_no_placement_not_signaled ======== [22:25:41] [PASSED] Buffer object for userspace [22:25:41] [PASSED] Kernel buffer object [22:25:41] [PASSED] Shared buffer object [22:25:41] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [22:25:41] [PASSED] ttm_bo_validate_move_fence_signaled [22:25:41] ========= ttm_bo_validate_move_fence_not_signaled ========= [22:25:41] [PASSED] Waits for GPU [22:25:41] [PASSED] Tries to lock straight away [22:25:41] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [22:25:41] [PASSED] ttm_bo_validate_happy_evict [22:25:41] [PASSED] ttm_bo_validate_all_pinned_evict [22:25:41] [PASSED] ttm_bo_validate_allowed_only_evict [22:25:41] [PASSED] ttm_bo_validate_deleted_evict [22:25:41] [PASSED] ttm_bo_validate_busy_domain_evict [22:25:41] [PASSED] ttm_bo_validate_evict_gutting [22:25:41] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [22:25:41] ================= [PASSED] ttm_bo_validate ================= [22:25:41] ============================================================ [22:25:41] Testing complete. Ran 101 tests: passed: 101 [22:25:41] Elapsed time: 11.193s total, 1.633s configuring, 9.343s building, 0.189s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-10-31 20:13 [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration Matthew Brost 2025-10-31 22:25 ` ✓ CI.KUnit: success for " Patchwork @ 2025-10-31 23:43 ` Patchwork 2025-11-01 1:33 ` [PATCH v2] " Lis, Tomasz 2025-11-01 13:52 ` ✗ Xe.CI.Full: failure for " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-10-31 23:43 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 944 bytes --] == Series Details == Series: drm/xe/vf: Start re-emission from first unsignaled job during VF migration URL : https://patchwork.freedesktop.org/series/156869/ State : success == Summary == CI Bug Log - changes from xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9_BAT -> xe-pw-156869v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8604 -> IGT_8605 * Linux: xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9 -> xe-pw-156869v1 IGT_8604: 8604 IGT_8605: 8605 xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9: 203c9c05c014fd3a624e9cb07d86820b3ad63bf9 xe-pw-156869v1: 156869v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/index.html [-- Attachment #2: Type: text/html, Size: 1506 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-10-31 20:13 [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration Matthew Brost 2025-10-31 22:25 ` ✓ CI.KUnit: success for " Patchwork 2025-10-31 23:43 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-11-01 1:33 ` Lis, Tomasz 2025-11-07 7:48 ` Matthew Brost 2025-11-01 13:52 ` ✗ Xe.CI.Full: failure for " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Lis, Tomasz @ 2025-11-01 1:33 UTC (permalink / raw) To: Matthew Brost, intel-xe; +Cc: michal.wajdeczko [-- Attachment #1: Type: text/plain, Size: 4078 bytes --] On 10/31/2025 9:13 PM, Matthew Brost wrote: > The LRC software ring tail is reset to the first unsignaled pending > job's head. > > Fix the re-emission logic to begin submitting from the first unsignaled > job detected, rather than scanning all pending jobs, which can cause > imbalance. > > v2: > - Include missing local changes > > Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause") > Signed-off-by: Matthew Brost<matthew.brost@intel.com> > --- > drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++-- > drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++-------- > 2 files changed, 14 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > index 9955397aaaa9..357afaec68d7 100644 > --- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h > +++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > @@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched) > static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched) > { > struct drm_sched_job *s_job; > + bool skip_emit = false; > > list_for_each_entry(s_job, &sched->base.pending_list, list) { > struct drm_sched_fence *s_fence = s_job->s_fence; > struct dma_fence *hw_fence = s_fence->parent; > > - if (to_xe_sched_job(s_job)->skip_emit || > - (hw_fence && !dma_fence_is_signaled(hw_fence))) > + skip_emit |= to_xe_sched_job(s_job)->skip_emit; > + if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence))) This looks ok, but what is the mechanism which could lead to a job after the first `skip_emit=1` job to have the `skip_emit` flag lifted? Wouldn't the only possibility be that jobs were executed out of order? > sched->base.ops->run_job(s_job); > } > } > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c > index d4ffdb71ef3d..f25b71aca498 100644 > --- a/drivers/gpu/drm/xe/xe_guc_submit.c > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c > @@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q) > > job = xe_sched_first_pending_job(sched); > if (job) { > + job->skip_emit = true; > + > /* > * Adjust software tail so jobs submitted overwrite previous > * position in ring buffer with new GGTT addresses. > @@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc, > struct xe_exec_queue *q) > { > struct xe_gpu_scheduler *sched = &q->guc->sched; > - struct drm_sched_job *s_job; > struct xe_sched_job *job = NULL; > + bool skip_emit = false; > > - list_for_each_entry(s_job, &sched->base.pending_list, list) { > - job = to_xe_sched_job(s_job); > - > - xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > - q->guc->id, xe_sched_job_seqno(job)); > + list_for_each_entry(job, &sched->base.pending_list, drm.list) { > + skip_emit |= job->skip_emit; All emitted jobs have the skip_emit set, unless their EQ got submitted to GuC which clears it, but if it got unsubmitted without finishing then the flag is raised again. So this does seem to select unfinished jobs. Though this introduces an assertion that within Command Streamer ring area of a job, there are no GGTT references between seqno increment and end of the job commands. Maybe worth commenting in code that we're working on that assumption? Example issue would be if someone introduces saving some kind of metrics there. (this assumption was in power before this patch too, but now as we're skipping fixups for finished jobs still in pending list, it becomes more important) Also we're emitting jobs which have a flag names "skip_emit" set. This disconnect needs a comment too. -Tomasz > + if (skip_emit) { > + xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > + q->guc->id, xe_sched_job_seqno(job)); > > - q->ring_ops->emit_job(job); > - job->skip_emit = true; > + q->ring_ops->emit_job(job); > + job->skip_emit = true; > + } > } > > if (job) [-- Attachment #2: Type: text/html, Size: 5486 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-11-01 1:33 ` [PATCH v2] " Lis, Tomasz @ 2025-11-07 7:48 ` Matthew Brost 2025-11-19 2:48 ` Lis, Tomasz 0 siblings, 1 reply; 9+ messages in thread From: Matthew Brost @ 2025-11-07 7:48 UTC (permalink / raw) To: Lis, Tomasz; +Cc: intel-xe, michal.wajdeczko On Sat, Nov 01, 2025 at 02:33:07AM +0100, Lis, Tomasz wrote: > > On 10/31/2025 9:13 PM, Matthew Brost wrote: > > The LRC software ring tail is reset to the first unsignaled pending > > job's head. > > > > Fix the re-emission logic to begin submitting from the first unsignaled > > job detected, rather than scanning all pending jobs, which can cause > > imbalance. > > > > v2: > > - Include missing local changes > > > > Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause") > > Signed-off-by: Matthew Brost<matthew.brost@intel.com> > > --- > > drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++-- > > drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++-------- > > 2 files changed, 14 insertions(+), 10 deletions(-) > > > > diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > index 9955397aaaa9..357afaec68d7 100644 > > --- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > +++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > @@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched) > > static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched) > > { > > struct drm_sched_job *s_job; > > + bool skip_emit = false; > > list_for_each_entry(s_job, &sched->base.pending_list, list) { > > struct drm_sched_fence *s_fence = s_job->s_fence; > > struct dma_fence *hw_fence = s_fence->parent; > > - if (to_xe_sched_job(s_job)->skip_emit || > > - (hw_fence && !dma_fence_is_signaled(hw_fence))) > > + skip_emit |= to_xe_sched_job(s_job)->skip_emit; > > + if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence))) > > This looks ok, but what is the mechanism which could lead to a job after the > first `skip_emit=1` job to have the `skip_emit` flag lifted? > This shouldn't be possible with the current code, since we're checking hw_fence. If we were relying on the software fence (i.e., the job's finished fence), the state wouldn't be stable. I think our eventually the is goal is to use the software fence [1] to avoid DRM scheduler's violations, so defensively / future proofed coded here. [1] https://patchwork.freedesktop.org/series/155314/ > Wouldn't the only possibility be that jobs were executed out of order? > > > sched->base.ops->run_job(s_job); > > } > > } > > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c > > index d4ffdb71ef3d..f25b71aca498 100644 > > --- a/drivers/gpu/drm/xe/xe_guc_submit.c > > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c > > @@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q) > > job = xe_sched_first_pending_job(sched); > > if (job) { > > + job->skip_emit = true; > > + > > /* > > * Adjust software tail so jobs submitted overwrite previous > > * position in ring buffer with new GGTT addresses. > > @@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc, > > struct xe_exec_queue *q) > > { > > struct xe_gpu_scheduler *sched = &q->guc->sched; > > - struct drm_sched_job *s_job; > > struct xe_sched_job *job = NULL; > > + bool skip_emit = false; > > - list_for_each_entry(s_job, &sched->base.pending_list, list) { > > - job = to_xe_sched_job(s_job); > > - > > - xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > > - q->guc->id, xe_sched_job_seqno(job)); > > + list_for_each_entry(job, &sched->base.pending_list, drm.list) { > > + skip_emit |= job->skip_emit; > > All emitted jobs have the skip_emit set, unless their EQ got submitted to > GuC which clears it, but if it got unsubmitted without finishing then the > flag is raised again. > > So this does seem to select unfinished jobs. > > Though this introduces an assertion that within Command Streamer ring area > of a job, there are no GGTT references between seqno increment and end of > the job commands. Maybe worth commenting in code that we're working on that > assumption? Example issue would be if someone introduces saving some kind of > metrics there. > > (this assumption was in power before this patch too, but now as we're > skipping fixups for finished jobs still in pending list, it becomes more > important) > > Also we're emitting jobs which have a flag names "skip_emit" set. This > disconnect needs a comment too. > I am not following this comment. The idea is that in guc_exec_queue_pause, we set skip_emit—this acts as a marker to iterate over and resubmit jobs regardless of other conditions. As I mentioned, if this marker were based on a software fence, the state could change between guc_exec_queue_pause and guc_exec_queue_unpause_prepare. The current code uses the hardware fence, but that could change between pause / unpause too. We need to keep the iteration consistent because it also affects the KMD software state. Even if a job signals during this flow, there's no issue with the hardware; the key is maintaining a consistent software state throughout the iteration phases: pause, unpause_prepare, and unpause. Matt > -Tomasz > > > + if (skip_emit) { > > + xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > > + q->guc->id, xe_sched_job_seqno(job)); > > - q->ring_ops->emit_job(job); > > - job->skip_emit = true; > > + q->ring_ops->emit_job(job); > > + job->skip_emit = true; > > + } > > } > > if (job) ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-11-07 7:48 ` Matthew Brost @ 2025-11-19 2:48 ` Lis, Tomasz 2025-11-19 19:55 ` Matthew Brost 0 siblings, 1 reply; 9+ messages in thread From: Lis, Tomasz @ 2025-11-19 2:48 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe, michal.wajdeczko [-- Attachment #1: Type: text/plain, Size: 7232 bytes --] On 11/7/2025 8:48 AM, Matthew Brost wrote: > On Sat, Nov 01, 2025 at 02:33:07AM +0100, Lis, Tomasz wrote: >> On 10/31/2025 9:13 PM, Matthew Brost wrote: >>> The LRC software ring tail is reset to the first unsignaled pending >>> job's head. >>> >>> Fix the re-emission logic to begin submitting from the first unsignaled >>> job detected, rather than scanning all pending jobs, which can cause >>> imbalance. >>> >>> v2: >>> - Include missing local changes Explanation of previous remarks and a request for a code comment below; but other than that: Reviewed-by: Tomasz Lis <tomasz.lis@intel.com> >>> Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause") >>> Signed-off-by: Matthew Brost<matthew.brost@intel.com> >>> --- >>> drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++-- >>> drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++-------- >>> 2 files changed, 14 insertions(+), 10 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>> index 9955397aaaa9..357afaec68d7 100644 >>> --- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>> +++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>> @@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched) >>> static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched) >>> { >>> struct drm_sched_job *s_job; >>> + bool skip_emit = false; >>> list_for_each_entry(s_job, &sched->base.pending_list, list) { >>> struct drm_sched_fence *s_fence = s_job->s_fence; >>> struct dma_fence *hw_fence = s_fence->parent; >>> - if (to_xe_sched_job(s_job)->skip_emit || >>> - (hw_fence && !dma_fence_is_signaled(hw_fence))) >>> + skip_emit |= to_xe_sched_job(s_job)->skip_emit; >>> + if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence))) >> This looks ok, but what is the mechanism which could lead to a job after the >> first `skip_emit=1` job to have the `skip_emit` flag lifted? >> > This shouldn't be possible with the current code, since we're checking > hw_fence. If we were relying on the software fence (i.e., the job's > finished fence), the state wouldn't be stable. I think our eventually > the is goal is to use the software fence [1] to avoid DRM scheduler's > violations, so defensively / future proofed coded here. > > [1]https://patchwork.freedesktop.org/series/155314/ Makes sense. >> Wouldn't the only possibility be that jobs were executed out of order? >> >>> sched->base.ops->run_job(s_job); >>> } >>> } >>> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c >>> index d4ffdb71ef3d..f25b71aca498 100644 >>> --- a/drivers/gpu/drm/xe/xe_guc_submit.c >>> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c >>> @@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q) >>> job = xe_sched_first_pending_job(sched); >>> if (job) { >>> + job->skip_emit = true; >>> + >>> /* >>> * Adjust software tail so jobs submitted overwrite previous >>> * position in ring buffer with new GGTT addresses. >>> @@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc, >>> struct xe_exec_queue *q) >>> { >>> struct xe_gpu_scheduler *sched = &q->guc->sched; >>> - struct drm_sched_job *s_job; >>> struct xe_sched_job *job = NULL; >>> + bool skip_emit = false; >>> - list_for_each_entry(s_job, &sched->base.pending_list, list) { >>> - job = to_xe_sched_job(s_job); >>> - >>> - xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", >>> - q->guc->id, xe_sched_job_seqno(job)); >>> + list_for_each_entry(job, &sched->base.pending_list, drm.list) { >>> + skip_emit |= job->skip_emit; >> All emitted jobs have the skip_emit set, unless their EQ got submitted to >> GuC which clears it, but if it got unsubmitted without finishing then the >> flag is raised again. >> >> So this does seem to select unfinished jobs. >> >> Though this introduces an assertion that within Command Streamer ring area >> of a job, there are no GGTT references between seqno increment and end of >> the job commands. Maybe worth commenting in code that we're working on that >> assumption? Example issue would be if someone introduces saving some kind of >> metrics there. >> >> (this assumption was in power before this patch too, but now as we're >> skipping fixups for finished jobs still in pending list, it becomes more >> important) >> >> Also we're emitting jobs which have a flag names "skip_emit" set. This >> disconnect needs a comment too. >> > I am not following this comment. What I described might be non-issue; but regardless, let me try again: Every job has an area allocated on the ring buffer; the area contains commands, which: 1. Jump to the user batch buffer 2. Increase seqno (by GGTT write) 3. Trigger user interrupt 4. Do some finishing commands What I tried to describe before is a situation where commands from (1) and (2) were executed, but then the context got preempted, before reaching end of (4). In such case, the code with `skip_emit` would consider the job finished and would not apply any fixups. This could become a problem if during (4) we did some GGTT writes. Now, it this realistic: * Currently we do add some workaround commands to (4), but MMIO writes only. But since there is a precedence of placing WAs there, a GGTT write could be added at some point. * But the whole premise requires that there will be preemption point between end of (2) and end of (4). This is not a case, and I would be very surprised if that ever changed. So, the above is not an issue. A second remark I had is that we're introducing a code like this: if (skip_emit) then do_emit(); The issue there is that someone reading the code will see it as self-contradictory. The first thought will be "did they forgot to negate the condition here"? The code is ok, but a comment would help to avoid this confusion. Ie. /* * If emitting will be skipped when re-scheduling the job, then the emitted * commands need to be refreshed now, to keep GGTT references valid. */ -Tomasz > The idea is that in guc_exec_queue_pause, we set skip_emit—this acts as > a marker to iterate over and resubmit jobs regardless of other > conditions. As I mentioned, if this marker were based on a software > fence, the state could change between guc_exec_queue_pause and > guc_exec_queue_unpause_prepare. The current code uses the hardware > fence, but that could change between pause / unpause too. > > We need to keep the iteration consistent because it also affects the KMD > software state. Even if a job signals during this flow, there's no issue > with the hardware; the key is maintaining a consistent software state > throughout the iteration phases: pause, unpause_prepare, and unpause. > > Matt > >> -Tomasz >> >>> + if (skip_emit) { >>> + xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", >>> + q->guc->id, xe_sched_job_seqno(job)); >>> - q->ring_ops->emit_job(job); >>> - job->skip_emit = true; >>> + q->ring_ops->emit_job(job); >>> + job->skip_emit = true; >>> + } >>> } >>> if (job) [-- Attachment #2: Type: text/html, Size: 9639 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-11-19 2:48 ` Lis, Tomasz @ 2025-11-19 19:55 ` Matthew Brost 2025-11-20 0:31 ` Lis, Tomasz 0 siblings, 1 reply; 9+ messages in thread From: Matthew Brost @ 2025-11-19 19:55 UTC (permalink / raw) To: Lis, Tomasz; +Cc: intel-xe, michal.wajdeczko On Wed, Nov 19, 2025 at 03:48:28AM +0100, Lis, Tomasz wrote: > > On 11/7/2025 8:48 AM, Matthew Brost wrote: > > On Sat, Nov 01, 2025 at 02:33:07AM +0100, Lis, Tomasz wrote: > > > On 10/31/2025 9:13 PM, Matthew Brost wrote: > > > > The LRC software ring tail is reset to the first unsignaled pending > > > > job's head. > > > > > > > > Fix the re-emission logic to begin submitting from the first unsignaled > > > > job detected, rather than scanning all pending jobs, which can cause > > > > imbalance. > > > > > > > > v2: > > > > - Include missing local changes > > Explanation of previous remarks and a request for a code comment below; but > other than that: > > Reviewed-by: Tomasz Lis <tomasz.lis@intel.com> > > > > > Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause") > > > > Signed-off-by: Matthew Brost<matthew.brost@intel.com> > > > > --- > > > > drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++-- > > > > drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++-------- > > > > 2 files changed, 14 insertions(+), 10 deletions(-) > > > > > > > > diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > > > index 9955397aaaa9..357afaec68d7 100644 > > > > --- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > > > +++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h > > > > @@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched) > > > > static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched) > > > > { > > > > struct drm_sched_job *s_job; > > > > + bool skip_emit = false; > > > > list_for_each_entry(s_job, &sched->base.pending_list, list) { > > > > struct drm_sched_fence *s_fence = s_job->s_fence; > > > > struct dma_fence *hw_fence = s_fence->parent; > > > > - if (to_xe_sched_job(s_job)->skip_emit || > > > > - (hw_fence && !dma_fence_is_signaled(hw_fence))) > > > > + skip_emit |= to_xe_sched_job(s_job)->skip_emit; > > > > + if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence))) > > > This looks ok, but what is the mechanism which could lead to a job after the > > > first `skip_emit=1` job to have the `skip_emit` flag lifted? > > > > > This shouldn't be possible with the current code, since we're checking > > hw_fence. If we were relying on the software fence (i.e., the job's > > finished fence), the state wouldn't be stable. I think our eventually > > the is goal is to use the software fence [1] to avoid DRM scheduler's > > violations, so defensively / future proofed coded here. > > > > [1]https://patchwork.freedesktop.org/series/155314/ > Makes sense. > > > Wouldn't the only possibility be that jobs were executed out of order? > > > > > > > sched->base.ops->run_job(s_job); > > > > } > > > > } > > > > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c > > > > index d4ffdb71ef3d..f25b71aca498 100644 > > > > --- a/drivers/gpu/drm/xe/xe_guc_submit.c > > > > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c > > > > @@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q) > > > > job = xe_sched_first_pending_job(sched); > > > > if (job) { > > > > + job->skip_emit = true; > > > > + > > > > /* > > > > * Adjust software tail so jobs submitted overwrite previous > > > > * position in ring buffer with new GGTT addresses. > > > > @@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc, > > > > struct xe_exec_queue *q) > > > > { > > > > struct xe_gpu_scheduler *sched = &q->guc->sched; > > > > - struct drm_sched_job *s_job; > > > > struct xe_sched_job *job = NULL; > > > > + bool skip_emit = false; > > > > - list_for_each_entry(s_job, &sched->base.pending_list, list) { > > > > - job = to_xe_sched_job(s_job); > > > > - > > > > - xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > > > > - q->guc->id, xe_sched_job_seqno(job)); > > > > + list_for_each_entry(job, &sched->base.pending_list, drm.list) { > > > > + skip_emit |= job->skip_emit; > > > All emitted jobs have the skip_emit set, unless their EQ got submitted to > > > GuC which clears it, but if it got unsubmitted without finishing then the > > > flag is raised again. > > > > > > So this does seem to select unfinished jobs. > > > > > > Though this introduces an assertion that within Command Streamer ring area > > > of a job, there are no GGTT references between seqno increment and end of > > > the job commands. Maybe worth commenting in code that we're working on that > > > assumption? Example issue would be if someone introduces saving some kind of > > > metrics there. > > > > > > (this assumption was in power before this patch too, but now as we're > > > skipping fixups for finished jobs still in pending list, it becomes more > > > important) > > > > > > Also we're emitting jobs which have a flag names "skip_emit" set. This > > > disconnect needs a comment too. > > > > > I am not following this comment. > > What I described might be non-issue; but regardless, let me try again: > > Every job has an area allocated on the ring buffer; the area contains > commands, which: > > 1. Jump to the user batch buffer > > 2. Increase seqno (by GGTT write) > > 3. Trigger user interrupt > > 4. Do some finishing commands > Right now (4) is only emit_pipe_control_to_ring_end which doesn't touch the GGTT. It is odd we even have (4), that kinda looks like a bug to me. Will check up on that. > > What I tried to describe before is a situation where commands from (1) and > (2) were > > executed, but then the context got preempted, before reaching end of (4). In > such > > case, the code with `skip_emit` would consider the job finished and would > not apply > > any fixups. This could become a problem if during (4) we did some GGTT > writes. > > Now, it this realistic: > > * Currently we do add some workaround commands to (4), but MMIO writes only. > > But since there is a precedence of placing WAs there, a GGTT write could be > added > > at some point. I believe WA are added in the context switching out, which this step is non-preemptable (i.e., it is part of the preemption process). > > * But the whole premise requires that there will be preemption point between > end > > of (2) and end of (4). This is not a case, and I would be very surprised if > that ever (3) has a preemption point which is why the case where we have (4) looks wrong. Writing the seqno + user interrupt should always be the last thing. > > changed. > > So, the above is not an issue. > > > A second remark I had is that we're introducing a code like this: > > if (skip_emit) then do_emit(); > > The issue there is that someone reading the code will see it as > self-contradictory. > > The first thought will be "did they forgot to negate the condition here"? > > The code is ok, but a comment would help to avoid this confusion. Ie. > Let me rename this variable for clarity. How about 'vf_restore_replay'? Matt > /* > > * If emitting will be skipped when re-scheduling the job, then the emitted > > * commands need to be refreshed now, to keep GGTT references valid. > > */ > > -Tomasz > > > The idea is that in guc_exec_queue_pause, we set skip_emit—this acts as > > a marker to iterate over and resubmit jobs regardless of other > > conditions. As I mentioned, if this marker were based on a software > > fence, the state could change between guc_exec_queue_pause and > > guc_exec_queue_unpause_prepare. The current code uses the hardware > > fence, but that could change between pause / unpause too. > > > > We need to keep the iteration consistent because it also affects the KMD > > software state. Even if a job signals during this flow, there's no issue > > with the hardware; the key is maintaining a consistent software state > > throughout the iteration phases: pause, unpause_prepare, and unpause. > > > > Matt > > > > > -Tomasz > > > > > > > + if (skip_emit) { > > > > + xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", > > > > + q->guc->id, xe_sched_job_seqno(job)); > > > > - q->ring_ops->emit_job(job); > > > > - job->skip_emit = true; > > > > + q->ring_ops->emit_job(job); > > > > + job->skip_emit = true; > > > > + } > > > > } > > > > if (job) ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-11-19 19:55 ` Matthew Brost @ 2025-11-20 0:31 ` Lis, Tomasz 0 siblings, 0 replies; 9+ messages in thread From: Lis, Tomasz @ 2025-11-20 0:31 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe, michal.wajdeczko On 11/19/2025 8:55 PM, Matthew Brost wrote: > On Wed, Nov 19, 2025 at 03:48:28AM +0100, Lis, Tomasz wrote: >> On 11/7/2025 8:48 AM, Matthew Brost wrote: >>> On Sat, Nov 01, 2025 at 02:33:07AM +0100, Lis, Tomasz wrote: >>>> On 10/31/2025 9:13 PM, Matthew Brost wrote: >>>>> The LRC software ring tail is reset to the first unsignaled pending >>>>> job's head. >>>>> >>>>> Fix the re-emission logic to begin submitting from the first unsignaled >>>>> job detected, rather than scanning all pending jobs, which can cause >>>>> imbalance. >>>>> >>>>> v2: >>>>> - Include missing local changes >> Explanation of previous remarks and a request for a code comment below; but >> other than that: >> >> Reviewed-by: Tomasz Lis <tomasz.lis@intel.com> >> >>>>> Fixes: c25c1010df88 ("drm/xe/vf: Replay GuC submission state on pause / unpause") >>>>> Signed-off-by: Matthew Brost<matthew.brost@intel.com> >>>>> --- >>>>> drivers/gpu/drm/xe/xe_gpu_scheduler.h | 5 +++-- >>>>> drivers/gpu/drm/xe/xe_guc_submit.c | 19 +++++++++++-------- >>>>> 2 files changed, 14 insertions(+), 10 deletions(-) >>>>> >>>>> diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>>>> index 9955397aaaa9..357afaec68d7 100644 >>>>> --- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>>>> +++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h >>>>> @@ -54,13 +54,14 @@ static inline void xe_sched_tdr_queue_imm(struct xe_gpu_scheduler *sched) >>>>> static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched) >>>>> { >>>>> struct drm_sched_job *s_job; >>>>> + bool skip_emit = false; >>>>> list_for_each_entry(s_job, &sched->base.pending_list, list) { >>>>> struct drm_sched_fence *s_fence = s_job->s_fence; >>>>> struct dma_fence *hw_fence = s_fence->parent; >>>>> - if (to_xe_sched_job(s_job)->skip_emit || >>>>> - (hw_fence && !dma_fence_is_signaled(hw_fence))) >>>>> + skip_emit |= to_xe_sched_job(s_job)->skip_emit; >>>>> + if (skip_emit || (hw_fence && !dma_fence_is_signaled(hw_fence))) >>>> This looks ok, but what is the mechanism which could lead to a job after the >>>> first `skip_emit=1` job to have the `skip_emit` flag lifted? >>>> >>> This shouldn't be possible with the current code, since we're checking >>> hw_fence. If we were relying on the software fence (i.e., the job's >>> finished fence), the state wouldn't be stable. I think our eventually >>> the is goal is to use the software fence [1] to avoid DRM scheduler's >>> violations, so defensively / future proofed coded here. >>> >>> [1]https://patchwork.freedesktop.org/series/155314/ >> Makes sense. >>>> Wouldn't the only possibility be that jobs were executed out of order? >>>> >>>>> sched->base.ops->run_job(s_job); >>>>> } >>>>> } >>>>> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c >>>>> index d4ffdb71ef3d..f25b71aca498 100644 >>>>> --- a/drivers/gpu/drm/xe/xe_guc_submit.c >>>>> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c >>>>> @@ -2152,6 +2152,8 @@ static void guc_exec_queue_pause(struct xe_guc *guc, struct xe_exec_queue *q) >>>>> job = xe_sched_first_pending_job(sched); >>>>> if (job) { >>>>> + job->skip_emit = true; >>>>> + >>>>> /* >>>>> * Adjust software tail so jobs submitted overwrite previous >>>>> * position in ring buffer with new GGTT addresses. >>>>> @@ -2241,17 +2243,18 @@ static void guc_exec_queue_unpause_prepare(struct xe_guc *guc, >>>>> struct xe_exec_queue *q) >>>>> { >>>>> struct xe_gpu_scheduler *sched = &q->guc->sched; >>>>> - struct drm_sched_job *s_job; >>>>> struct xe_sched_job *job = NULL; >>>>> + bool skip_emit = false; >>>>> - list_for_each_entry(s_job, &sched->base.pending_list, list) { >>>>> - job = to_xe_sched_job(s_job); >>>>> - >>>>> - xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", >>>>> - q->guc->id, xe_sched_job_seqno(job)); >>>>> + list_for_each_entry(job, &sched->base.pending_list, drm.list) { >>>>> + skip_emit |= job->skip_emit; >>>> All emitted jobs have the skip_emit set, unless their EQ got submitted to >>>> GuC which clears it, but if it got unsubmitted without finishing then the >>>> flag is raised again. >>>> >>>> So this does seem to select unfinished jobs. >>>> >>>> Though this introduces an assertion that within Command Streamer ring area >>>> of a job, there are no GGTT references between seqno increment and end of >>>> the job commands. Maybe worth commenting in code that we're working on that >>>> assumption? Example issue would be if someone introduces saving some kind of >>>> metrics there. >>>> >>>> (this assumption was in power before this patch too, but now as we're >>>> skipping fixups for finished jobs still in pending list, it becomes more >>>> important) >>>> >>>> Also we're emitting jobs which have a flag names "skip_emit" set. This >>>> disconnect needs a comment too. >>>> >>> I am not following this comment. >> What I described might be non-issue; but regardless, let me try again: >> >> Every job has an area allocated on the ring buffer; the area contains >> commands, which: >> >> 1. Jump to the user batch buffer >> >> 2. Increase seqno (by GGTT write) >> >> 3. Trigger user interrupt >> >> 4. Do some finishing commands >> > Right now (4) is only emit_pipe_control_to_ring_end which doesn't touch > the GGTT. It is odd we even have (4), that kinda looks like a bug to me. > Will check up on that. > >> What I tried to describe before is a situation where commands from (1) and >> (2) were >> >> executed, but then the context got preempted, before reaching end of (4). In >> such >> >> case, the code with `skip_emit` would consider the job finished and would >> not apply >> >> any fixups. This could become a problem if during (4) we did some GGTT >> writes. >> >> Now, it this realistic: >> >> * Currently we do add some workaround commands to (4), but MMIO writes only. >> >> But since there is a precedence of placing WAs there, a GGTT write could be >> added >> >> at some point. > I believe WA are added in the context switching out, which this step is > non-preemptable (i.e., it is part of the preemption process). > >> * But the whole premise requires that there will be preemption point between >> end >> >> of (2) and end of (4). This is not a case, and I would be very surprised if >> that ever > (3) has a preemption point which is why the case where we have (4) looks > wrong. Writing the seqno + user interrupt should always be the last > thing. > >> changed. >> >> So, the above is not an issue. >> >> >> A second remark I had is that we're introducing a code like this: >> >> if (skip_emit) then do_emit(); >> >> The issue there is that someone reading the code will see it as >> self-contradictory. >> >> The first thought will be "did they forgot to negate the condition here"? >> >> The code is ok, but a comment would help to avoid this confusion. Ie. >> > Let me rename this variable for clarity. How about 'vf_restore_replay'? Ok, that will work too. -Tomasz > > Matt > >> /* >> >> * If emitting will be skipped when re-scheduling the job, then the emitted >> >> * commands need to be refreshed now, to keep GGTT references valid. >> >> */ >> >> -Tomasz >> >>> The idea is that in guc_exec_queue_pause, we set skip_emit—this acts as >>> a marker to iterate over and resubmit jobs regardless of other >>> conditions. As I mentioned, if this marker were based on a software >>> fence, the state could change between guc_exec_queue_pause and >>> guc_exec_queue_unpause_prepare. The current code uses the hardware >>> fence, but that could change between pause / unpause too. >>> >>> We need to keep the iteration consistent because it also affects the KMD >>> software state. Even if a job signals during this flow, there's no issue >>> with the hardware; the key is maintaining a consistent software state >>> throughout the iteration phases: pause, unpause_prepare, and unpause. >>> >>> Matt >>> >>>> -Tomasz >>>> >>>>> + if (skip_emit) { >>>>> + xe_gt_dbg(guc_to_gt(guc), "Replay JOB - guc_id=%d, seqno=%d", >>>>> + q->guc->id, xe_sched_job_seqno(job)); >>>>> - q->ring_ops->emit_job(job); >>>>> - job->skip_emit = true; >>>>> + q->ring_ops->emit_job(job); >>>>> + job->skip_emit = true; >>>>> + } >>>>> } >>>>> if (job) ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/vf: Start re-emission from first unsignaled job during VF migration 2025-10-31 20:13 [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration Matthew Brost ` (2 preceding siblings ...) 2025-11-01 1:33 ` [PATCH v2] " Lis, Tomasz @ 2025-11-01 13:52 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-11-01 13:52 UTC (permalink / raw) To: Matthew Brost; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 83765 bytes --] == Series Details == Series: drm/xe/vf: Start re-emission from first unsignaled job during VF migration URL : https://patchwork.freedesktop.org/series/156869/ State : failure == Summary == CI Bug Log - changes from xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9_FULL -> xe-pw-156869v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-156869v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-156869v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-156869v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@plain-flip-ts-check@a-hdmi-a3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html * igt@xe_ccs@suspend-resume: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-5/igt@xe_ccs@suspend-resume.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-4/igt@xe_ccs@suspend-resume.html #### Warnings #### * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-adlp: [SKIP][5] ([Intel XE#944]) -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html Known issues ------------ Here are the changes found in xe-pw-156869v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1125]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#5993]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y: - shard-adlp: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#4543]) +17 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-adlp: NOTRUN -> [DMESG-FAIL][12] ([Intel XE#4543]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#607]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#607]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1477]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#1124]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html - shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +104 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#787]) +11 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-8/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][30] ([Intel XE#6168]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4416]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#306]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#306]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_chamelium_color@ctm-limited-range.html - shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#306]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#373]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#373]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_content_protection@atomic.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2341]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#308]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2321]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2320]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2291]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#323]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#455]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1340]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#4494] / [i915#3804]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4354]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1137]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1421]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#2316]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-8/igt@kms_flip@2x-plain-flip.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][63] -> [FAIL][64] ([Intel XE#301]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-adlp: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#4543] / [Intel XE#5208]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@kms_flip@flip-vs-panning-interruptible.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1: - shard-adlp: NOTRUN -> [DMESG-WARN][67] ([Intel XE#4543]) +1 other test dmesg-warn [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-adlp: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#6266]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_flip@plain-flip-ts-check.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-adlp: [PASS][73] -> [DMESG-FAIL][74] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401] / [Intel XE#1745]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render: - shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#6312]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6312]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render: - shard-adlp: [PASS][80] -> [DMESG-FAIL][81] ([Intel XE#4543]) +9 other tests dmesg-fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#5390]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#656]) +10 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#6312]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#651]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#651]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#651]) +35 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +32 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2312]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#653]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2313]) +15 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#656]) +8 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#1503]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#346]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#3012]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2925]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_cursor@viewport: - shard-adlp: [PASS][100] -> [FAIL][101] ([Intel XE#6430]) +3 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@kms_plane_cursor@viewport.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_plane_cursor@viewport.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#4596]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-3/igt@kms_plane_multiple@2x-tiling-yf.html - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#5021]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#5021]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_plane_multiple@2x-tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#4596]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#870]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@kms_pm_backlight@basic-brightness.html - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#870]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#870]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2392]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#3309]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#908]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2499]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1406] / [Intel XE#1489]) +9 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html - shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#1406] / [Intel XE#1489]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1122] / [Intel XE#1406]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +14 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr-basic: - shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@kms_psr@psr-basic.html - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_psr@psr-basic.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#3414]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#3414] / [Intel XE#3904]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#1435]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#1435]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#330]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#455]) +15 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1499]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#1499]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-8/igt@kms_vrr@negative-basic.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1499]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1091] / [Intel XE#2849]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#6360]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#5191]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html - shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#5191]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_copy_basic@mem-page-copy-17: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#5300]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_copy_basic@mem-page-copy-17.html * igt@xe_eu_stall@invalid-event-report-count: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#5626]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html * igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#4837]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html * igt@xe_eudebug_online@reset-with-attention: - shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-6/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#4837]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-3/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt@xe_eudebug_sriov@deny-sriov: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#4518]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@xe_evict@evict-beng-threads-large-multi-vm.html - shard-adlp: NOTRUN -> [SKIP][144] ([Intel XE#261]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@xe_evict@evict-beng-threads-large-multi-vm.html * igt@xe_evict@evict-small-multi-vm: - shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2322]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1392]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +26 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-imm: - shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#288] / [Intel XE#5561]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-3/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2360]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +14 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_system_allocator@madvise-range-invalidate-change-attr: - shard-lnl: NOTRUN -> [WARN][153] ([Intel XE#5786]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-7/igt@xe_exec_system_allocator@madvise-range-invalidate-change-attr.html * igt@xe_exec_system_allocator@many-large-execqueues-mmap-race: - shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#4915]) +67 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-race.html * igt@xe_exec_system_allocator@many-large-malloc-fork-read-after: - shard-bmg: [PASS][155] -> [INCOMPLETE][156] ([Intel XE#6480]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@xe_exec_system_allocator@many-large-malloc-fork-read-after.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@xe_exec_system_allocator@many-large-malloc-fork-read-after.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#6196]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html * igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#4943]) +14 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#4915]) +359 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#4943]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#378]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-dg2-set2: ([PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) -> ([PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [SKIP][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212]) ([Intel XE#378]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-432/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-432/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-466/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-466/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-464/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-436/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-436/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-464/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-434/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-434/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-436/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-433/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-433/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-432/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-464/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-466/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-434/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-434/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-432/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_module_load@load.html * igt@xe_oa@invalid-remove-userspace-config: - shard-adlp: NOTRUN -> [SKIP][213] ([Intel XE#3573]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@non-zero-reason-all: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#6377]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_oa@non-zero-reason-all.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#3573]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#977]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_pat@pat-index-xe2.html * igt@xe_pm@d3cold-i2c: - shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#5694]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@xe_pm@d3cold-i2c.html - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#5694]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@xe_pm@d3cold-i2c.html - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#5694]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-8/igt@xe_pm@d3cold-i2c.html - shard-adlp: NOTRUN -> [SKIP][220] ([Intel XE#5694]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-6/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#2284] / [Intel XE#366]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#2284]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#584]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-8/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-adlp: [PASS][224] -> [FAIL][225] ([Intel XE#6339]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-2/igt@xe_pm@s4-basic-exec.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [PASS][226] -> [FAIL][227] ([Intel XE#6339]) +2 other tests fail [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [PASS][228] -> [FAIL][229] ([Intel XE#6339]) +2 other tests fail [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@xe_pm@s4-vm-bind-userptr.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html - shard-lnl: [PASS][230] -> [FAIL][231] ([Intel XE#6339]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-5/igt@xe_pm@s4-vm-bind-userptr.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#579]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#4650]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-8/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pxp@display-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#4733]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-adlp: NOTRUN -> [SKIP][235] ([Intel XE#4733] / [Intel XE#5594]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#4733]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#944]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-topology: - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#944]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-1/igt@xe_query@multigpu-query-topology.html - shard-adlp: NOTRUN -> [SKIP][239] ([Intel XE#944]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-4/igt@xe_query@multigpu-query-topology.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][240] ([Intel XE#944]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][241] ([Intel XE#3342]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_flr@flr-twice: - shard-dg2-set2: NOTRUN -> [SKIP][242] ([Intel XE#4273]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@xe_sriov_flr@flr-twice.html - shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#4273]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_scheduling@equal-throughput: - shard-dg2-set2: NOTRUN -> [SKIP][244] ([Intel XE#4351]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@xe_sriov_scheduling@equal-throughput.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-dg2-set2: NOTRUN -> [SKIP][245] ([Intel XE#6318]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@xe_sriov_vram@vf-access-after-resize-up.html #### Possible fixes #### * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [INCOMPLETE][246] ([Intel XE#4912]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-adlp: [DMESG-FAIL][248] ([Intel XE#4543]) -> [PASS][249] +8 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-6/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-adlp: [FAIL][250] ([Intel XE#1874]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][252] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][254] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][256] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][258] ([Intel XE#6168]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][260] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][262] ([Intel XE#2291]) -> [PASS][263] +2 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [SKIP][264] ([Intel XE#2316]) -> [PASS][265] +4 other tests pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][266] ([Intel XE#301]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][268] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][270] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: [FAIL][272] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#3321]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: [SKIP][274] ([Intel XE#1503]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d: - shard-adlp: [DMESG-WARN][276] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][277] +9 other tests pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][278] ([Intel XE#718]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][280] ([Intel XE#1435]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [INCOMPLETE][282] ([Intel XE#4488]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][284] ([Intel XE#6321]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_pm@d3hot-mocs: - shard-adlp: [FAIL][286] -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-3/igt@xe_pm@d3hot-mocs.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-2/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s2idle-exec-after: - shard-adlp: [DMESG-WARN][288] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-4/igt@xe_pm@s2idle-exec-after.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-3/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [FAIL][290] ([Intel XE#6339]) -> [PASS][291] +2 other tests pass [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-adlp: [FAIL][292] ([Intel XE#6339]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-adlp-8/igt@xe_pm@s4-exec-after.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-adlp-9/igt@xe_pm@s4-exec-after.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [FAIL][294] ([Intel XE#5166]) -> [PASS][295] +1 other test pass [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-435/igt@xe_pmu@gt-frequency.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-466/igt@xe_pmu@gt-frequency.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][296] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][297] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][298] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522]) -> [DMESG-WARN][299] ([Intel XE#1727] / [Intel XE#3113]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][300] ([Intel XE#1178]) -> [SKIP][301] ([Intel XE#2341]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-1/igt@kms_content_protection@atomic.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][302] ([Intel XE#2341]) -> [FAIL][303] ([Intel XE#1178]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_content_protection@srm.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][304] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][305] ([Intel XE#301]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: [SKIP][306] ([Intel XE#1397] / [Intel XE#1745]) -> [ABORT][307] ([Intel XE#4760]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: [SKIP][308] ([Intel XE#1397]) -> [ABORT][309] ([Intel XE#4760]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][310] ([Intel XE#2311]) -> [SKIP][311] ([Intel XE#2312]) +12 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][312] ([Intel XE#2312]) -> [SKIP][313] ([Intel XE#2311]) +15 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][314] ([Intel XE#5390]) -> [SKIP][315] ([Intel XE#2312]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][316] ([Intel XE#2312]) -> [SKIP][317] ([Intel XE#5390]) +6 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][318] ([Intel XE#2313]) -> [SKIP][319] ([Intel XE#2312]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2313]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][322] ([Intel XE#5021]) -> [SKIP][323] ([Intel XE#4596]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565 [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575 [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594 [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [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#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [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#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6339 [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360 [Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377 [Intel XE#6430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6430 [Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8604 -> IGT_8605 * Linux: xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9 -> xe-pw-156869v1 IGT_8604: 8604 IGT_8605: 8605 xe-4026-203c9c05c014fd3a624e9cb07d86820b3ad63bf9: 203c9c05c014fd3a624e9cb07d86820b3ad63bf9 xe-pw-156869v1: 156869v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156869v1/index.html [-- Attachment #2: Type: text/html, Size: 99188 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-11-20 0:32 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-10-31 20:13 [PATCH v2] drm/xe/vf: Start re-emission from first unsignaled job during VF migration Matthew Brost 2025-10-31 22:25 ` ✓ CI.KUnit: success for " Patchwork 2025-10-31 23:43 ` ✓ Xe.CI.BAT: " Patchwork 2025-11-01 1:33 ` [PATCH v2] " Lis, Tomasz 2025-11-07 7:48 ` Matthew Brost 2025-11-19 2:48 ` Lis, Tomasz 2025-11-19 19:55 ` Matthew Brost 2025-11-20 0:31 ` Lis, Tomasz 2025-11-01 13:52 ` ✗ 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