* [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error
@ 2025-06-12 22:09 Zhanjun Dong
2025-06-13 4:16 ` ✓ CI.KUnit: success for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Zhanjun Dong @ 2025-06-12 22:09 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong, Stuart Summers, Michal Wajdeczko
Declare wedged on Xe micro controller hardware initialization
failed.
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
---
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Change list:
v4: Fix typo and add new line
v3: v2 CI re-run
v2: Remove unnecessary jump to err-out
Drop disable ct, switch to set wedge
---
drivers/gpu/drm/xe/xe_uc.c | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
index 3a8751a8b92d..77175938fc40 100644
--- a/drivers/gpu/drm/xe/xe_uc.c
+++ b/drivers/gpu/drm/xe/xe_uc.c
@@ -157,19 +157,22 @@ static int vf_uc_init_hw(struct xe_uc *uc)
err = xe_guc_enable_communication(&uc->guc);
if (err)
- return err;
+ goto err_out;
err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
if (err)
- return err;
+ goto err_out;
uc->guc.submission_state.enabled = true;
err = xe_gt_record_default_lrcs(uc_to_gt(uc));
if (err)
- return err;
+ goto err_out;
return 0;
+err_out:
+ xe_device_declare_wedged(uc_to_xe(uc));
+ return err;
}
/*
@@ -197,19 +200,19 @@ int xe_uc_init_hw(struct xe_uc *uc)
ret = xe_guc_enable_communication(&uc->guc);
if (ret)
- return ret;
+ goto err_out;
ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
if (ret)
- return ret;
+ goto err_out;
ret = xe_guc_post_load_init(&uc->guc);
if (ret)
- return ret;
+ goto err_out;
ret = xe_guc_pc_start(&uc->guc.pc);
if (ret)
- return ret;
+ goto err_out;
xe_guc_engine_activity_enable_stats(&uc->guc);
@@ -221,6 +224,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
xe_gsc_load_start(&uc->gsc);
return 0;
+
+err_out:
+ xe_device_declare_wedged(uc_to_xe(uc));
+ return ret;
}
int xe_uc_fini_hw(struct xe_uc *uc)
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ CI.KUnit: success for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
2025-06-12 22:09 [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Zhanjun Dong
@ 2025-06-13 4:16 ` Patchwork
2025-06-13 5:13 ` ✗ Xe.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-13 4:16 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
URL : https://patchwork.freedesktop.org/series/149856/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:14:14] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:14:21] 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
[04:15:14] Starting KUnit Kernel (1/1)...
[04:15:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:15:14] ================== guc_buf (11 subtests) ===================
[04:15:14] [PASSED] test_smallest
[04:15:14] [PASSED] test_largest
[04:15:15] [PASSED] test_granular
[04:15:15] [PASSED] test_unique
[04:15:15] [PASSED] test_overlap
[04:15:15] [PASSED] test_reusable
[04:15:15] [PASSED] test_too_big
[04:15:15] [PASSED] test_flush
[04:15:15] [PASSED] test_lookup
[04:15:15] [PASSED] test_data
[04:15:15] [PASSED] test_class
[04:15:15] ===================== [PASSED] guc_buf =====================
[04:15:15] =================== guc_dbm (7 subtests) ===================
[04:15:15] [PASSED] test_empty
[04:15:15] [PASSED] test_default
[04:15:15] ======================== test_size ========================
[04:15:15] [PASSED] 4
[04:15:15] [PASSED] 8
[04:15:15] [PASSED] 32
[04:15:15] [PASSED] 256
[04:15:15] ==================== [PASSED] test_size ====================
[04:15:15] ======================= test_reuse ========================
[04:15:15] [PASSED] 4
[04:15:15] [PASSED] 8
[04:15:15] [PASSED] 32
[04:15:15] [PASSED] 256
[04:15:15] =================== [PASSED] test_reuse ====================
[04:15:15] =================== test_range_overlap ====================
[04:15:15] [PASSED] 4
[04:15:15] [PASSED] 8
[04:15:15] [PASSED] 32
[04:15:15] [PASSED] 256
[04:15:15] =============== [PASSED] test_range_overlap ================
[04:15:15] =================== test_range_compact ====================
[04:15:15] [PASSED] 4
[04:15:15] [PASSED] 8
[04:15:15] [PASSED] 32
[04:15:15] [PASSED] 256
[04:15:15] =============== [PASSED] test_range_compact ================
[04:15:15] ==================== test_range_spare =====================
[04:15:15] [PASSED] 4
[04:15:15] [PASSED] 8
[04:15:15] [PASSED] 32
[04:15:15] [PASSED] 256
[04:15:15] ================ [PASSED] test_range_spare =================
[04:15:15] ===================== [PASSED] guc_dbm =====================
[04:15:15] =================== guc_idm (6 subtests) ===================
[04:15:15] [PASSED] bad_init
[04:15:15] [PASSED] no_init
[04:15:15] [PASSED] init_fini
[04:15:15] [PASSED] check_used
[04:15:15] [PASSED] check_quota
[04:15:15] [PASSED] check_all
[04:15:15] ===================== [PASSED] guc_idm =====================
[04:15:15] ================== no_relay (3 subtests) ===================
[04:15:15] [PASSED] xe_drops_guc2pf_if_not_ready
[04:15:15] [PASSED] xe_drops_guc2vf_if_not_ready
[04:15:15] [PASSED] xe_rejects_send_if_not_ready
[04:15:15] ==================== [PASSED] no_relay =====================
[04:15:15] ================== pf_relay (14 subtests) ==================
[04:15:15] [PASSED] pf_rejects_guc2pf_too_short
[04:15:15] [PASSED] pf_rejects_guc2pf_too_long
[04:15:15] [PASSED] pf_rejects_guc2pf_no_payload
[04:15:15] [PASSED] pf_fails_no_payload
[04:15:15] [PASSED] pf_fails_bad_origin
[04:15:15] [PASSED] pf_fails_bad_type
[04:15:15] [PASSED] pf_txn_reports_error
[04:15:15] [PASSED] pf_txn_sends_pf2guc
[04:15:15] [PASSED] pf_sends_pf2guc
[04:15:15] [SKIPPED] pf_loopback_nop
[04:15:15] [SKIPPED] pf_loopback_echo
[04:15:15] [SKIPPED] pf_loopback_fail
[04:15:15] [SKIPPED] pf_loopback_busy
[04:15:15] [SKIPPED] pf_loopback_retry
[04:15:15] ==================== [PASSED] pf_relay =====================
[04:15:15] ================== vf_relay (3 subtests) ===================
[04:15:15] [PASSED] vf_rejects_guc2vf_too_short
[04:15:15] [PASSED] vf_rejects_guc2vf_too_long
[04:15:15] [PASSED] vf_rejects_guc2vf_no_payload
[04:15:15] ==================== [PASSED] vf_relay =====================
[04:15:15] ================= pf_service (11 subtests) =================
[04:15:15] [PASSED] pf_negotiate_any
[04:15:15] [PASSED] pf_negotiate_base_match
[04:15:15] [PASSED] pf_negotiate_base_newer
[04:15:15] [PASSED] pf_negotiate_base_next
[04:15:15] [SKIPPED] pf_negotiate_base_older
[04:15:15] [PASSED] pf_negotiate_base_prev
[04:15:15] [PASSED] pf_negotiate_latest_match
[04:15:15] [PASSED] pf_negotiate_latest_newer
[04:15:15] [PASSED] pf_negotiate_latest_next
[04:15:15] [SKIPPED] pf_negotiate_latest_older
[04:15:15] [SKIPPED] pf_negotiate_latest_prev
[04:15:15] =================== [PASSED] pf_service ====================
[04:15:15] ===================== lmtt (1 subtest) =====================
[04:15:15] ======================== test_ops =========================
[04:15:15] [PASSED] 2-level
[04:15:15] [PASSED] multi-level
[04:15:15] ==================== [PASSED] test_ops =====================
[04:15:15] ====================== [PASSED] lmtt =======================
[04:15:15] =================== xe_mocs (2 subtests) ===================
[04:15:15] ================ xe_live_mocs_kernel_kunit ================
[04:15:15] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:15:15] ================ xe_live_mocs_reset_kunit =================
[04:15:15] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:15:15] ==================== [SKIPPED] xe_mocs =====================
[04:15:15] ================= xe_migrate (2 subtests) ==================
[04:15:15] ================= xe_migrate_sanity_kunit =================
[04:15:15] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:15:15] ================== xe_validate_ccs_kunit ==================
[04:15:15] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:15:15] =================== [SKIPPED] xe_migrate ===================
[04:15:15] ================== xe_dma_buf (1 subtest) ==================
[04:15:15] ==================== xe_dma_buf_kunit =====================
[04:15:15] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:15:15] =================== [SKIPPED] xe_dma_buf ===================
[04:15:15] ================= xe_bo_shrink (1 subtest) =================
[04:15:15] =================== xe_bo_shrink_kunit ====================
[04:15:15] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:15:15] ================== [SKIPPED] xe_bo_shrink ==================
[04:15:15] ==================== xe_bo (2 subtests) ====================
[04:15:15] ================== xe_ccs_migrate_kunit ===================
[04:15:15] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:15:15] ==================== xe_bo_evict_kunit ====================
[04:15:15] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:15:15] ===================== [SKIPPED] xe_bo ======================
[04:15:15] ==================== args (11 subtests) ====================
[04:15:15] [PASSED] count_args_test
[04:15:15] [PASSED] call_args_example
[04:15:15] [PASSED] call_args_test
[04:15:15] [PASSED] drop_first_arg_example
[04:15:15] [PASSED] drop_first_arg_test
[04:15:15] [PASSED] first_arg_example
[04:15:15] [PASSED] first_arg_test
[04:15:15] [PASSED] last_arg_example
[04:15:15] [PASSED] last_arg_test
[04:15:15] [PASSED] pick_arg_example
[04:15:15] [PASSED] sep_comma_example
[04:15:15] ====================== [PASSED] args =======================
[04:15:15] =================== xe_pci (2 subtests) ====================
[04:15:15] [PASSED] xe_gmdid_graphics_ip
[04:15:15] [PASSED] xe_gmdid_media_ip
[04:15:15] ===================== [PASSED] xe_pci ======================
[04:15:15] =================== xe_rtp (2 subtests) ====================
[04:15:15] =============== xe_rtp_process_to_sr_tests ================
[04:15:15] [PASSED] coalesce-same-reg
[04:15:15] [PASSED] no-match-no-add
[04:15:15] [PASSED] match-or
[04:15:15] [PASSED] match-or-xfail
[04:15:15] [PASSED] no-match-no-add-multiple-rules
[04:15:15] [PASSED] two-regs-two-entries
[04:15:15] [PASSED] clr-one-set-other
[04:15:15] [PASSED] set-field
[04:15:15] [PASSED] conflict-duplicate
[04:15:15] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[04:15:15] [PASSED] conflict-reg-type
[04:15:15] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:15:15] ================== xe_rtp_process_tests ===================
[04:15:15] [PASSED] active1
[04:15:15] [PASSED] active2
[04:15:15] [PASSED] active-inactive
[04:15:15] [PASSED] inactive-active
[04:15:15] [PASSED] inactive-1st_or_active-inactive
[04:15:15] [PASSED] inactive-2nd_or_active-inactive
[04:15:15] [PASSED] inactive-last_or_active-inactive
[04:15:15] [PASSED] inactive-no_or_active-inactive
[04:15:15] ============== [PASSED] xe_rtp_process_tests ===============
[04:15:15] ===================== [PASSED] xe_rtp ======================
[04:15:15] ==================== xe_wa (1 subtest) =====================
[04:15:15] ======================== xe_wa_gt =========================
[04:15:15] [PASSED] TIGERLAKE (B0)
[04:15:15] [PASSED] DG1 (A0)
[04:15:15] [PASSED] DG1 (B0)
[04:15:15] [PASSED] ALDERLAKE_S (A0)
[04:15:15] [PASSED] ALDERLAKE_S (B0)
[04:15:15] [PASSED] ALDERLAKE_S (C0)
[04:15:15] [PASSED] ALDERLAKE_S (D0)
[04:15:15] [PASSED] ALDERLAKE_P (A0)
[04:15:15] [PASSED] ALDERLAKE_P (B0)
[04:15:15] [PASSED] ALDERLAKE_P (C0)
[04:15:15] [PASSED] ALDERLAKE_S_RPLS (D0)
[04:15:15] [PASSED] ALDERLAKE_P_RPLU (E0)
[04:15:15] [PASSED] DG2_G10 (C0)
[04:15:15] [PASSED] DG2_G11 (B1)
[04:15:15] [PASSED] DG2_G12 (A1)
[04:15:15] [PASSED] METEORLAKE (g:A0, m:A0)
[04:15:15] [PASSED] METEORLAKE (g:A0, m:A0)
[04:15:15] [PASSED] METEORLAKE (g:A0, m:A0)
[04:15:15] [PASSED] LUNARLAKE (g:A0, m:A0)
[04:15:15] [PASSED] LUNARLAKE (g:B0, m:A0)
[04:15:15] [PASSED] BATTLEMAGE (g:A0, m:A1)
[04:15:15] ==================== [PASSED] xe_wa_gt =====================
[04:15:15] ====================== [PASSED] xe_wa ======================
[04:15:15] ============================================================
[04:15:15] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[04:15:15] Elapsed time: 60.811s total, 6.810s configuring, 53.480s building, 0.462s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:15:15] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:15:17] 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
[04:15:59] Starting KUnit Kernel (1/1)...
[04:15:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:15:59] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:15:59] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:15:59] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:15:59] =========== drm_validate_clone_mode (2 subtests) ===========
[04:15:59] ============== drm_test_check_in_clone_mode ===============
[04:15:59] [PASSED] in_clone_mode
[04:15:59] [PASSED] not_in_clone_mode
[04:15:59] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:15:59] =============== drm_test_check_valid_clones ===============
[04:15:59] [PASSED] not_in_clone_mode
[04:15:59] [PASSED] valid_clone
[04:15:59] [PASSED] invalid_clone
[04:15:59] =========== [PASSED] drm_test_check_valid_clones ===========
[04:15:59] ============= [PASSED] drm_validate_clone_mode =============
[04:15:59] ============= drm_validate_modeset (1 subtest) =============
[04:15:59] [PASSED] drm_test_check_connector_changed_modeset
[04:15:59] ============== [PASSED] drm_validate_modeset ===============
[04:15:59] ====== drm_test_bridge_get_current_state (2 subtests) ======
[04:15:59] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:15:59] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[04:15:59] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:15:59] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:15:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:15:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:15:59] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[04:15:59] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:15:59] ============== drm_bridge_alloc (2 subtests) ===============
[04:15:59] [PASSED] drm_test_drm_bridge_alloc_basic
[04:15:59] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:15:59] ================ [PASSED] drm_bridge_alloc =================
[04:15:59] ================== drm_buddy (7 subtests) ==================
[04:15:59] [PASSED] drm_test_buddy_alloc_limit
[04:15:59] [PASSED] drm_test_buddy_alloc_optimistic
[04:15:59] [PASSED] drm_test_buddy_alloc_pessimistic
[04:15:59] [PASSED] drm_test_buddy_alloc_pathological
[04:15:59] [PASSED] drm_test_buddy_alloc_contiguous
[04:15:59] [PASSED] drm_test_buddy_alloc_clear
[04:15:59] [PASSED] drm_test_buddy_alloc_range_bias
[04:15:59] ==================== [PASSED] drm_buddy ====================
[04:15:59] ============= drm_cmdline_parser (40 subtests) =============
[04:15:59] [PASSED] drm_test_cmdline_force_d_only
[04:15:59] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:15:59] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:15:59] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:15:59] [PASSED] drm_test_cmdline_force_e_only
[04:15:59] [PASSED] drm_test_cmdline_res
[04:15:59] [PASSED] drm_test_cmdline_res_vesa
[04:15:59] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:15:59] [PASSED] drm_test_cmdline_res_rblank
[04:15:59] [PASSED] drm_test_cmdline_res_bpp
[04:15:59] [PASSED] drm_test_cmdline_res_refresh
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:15:59] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:15:59] [PASSED] drm_test_cmdline_res_margins_force_on
[04:15:59] [PASSED] drm_test_cmdline_res_vesa_margins
[04:15:59] [PASSED] drm_test_cmdline_name
[04:15:59] [PASSED] drm_test_cmdline_name_bpp
[04:15:59] [PASSED] drm_test_cmdline_name_option
[04:15:59] [PASSED] drm_test_cmdline_name_bpp_option
[04:15:59] [PASSED] drm_test_cmdline_rotate_0
[04:15:59] [PASSED] drm_test_cmdline_rotate_90
[04:15:59] [PASSED] drm_test_cmdline_rotate_180
[04:15:59] [PASSED] drm_test_cmdline_rotate_270
[04:15:59] [PASSED] drm_test_cmdline_hmirror
[04:15:59] [PASSED] drm_test_cmdline_vmirror
[04:15:59] [PASSED] drm_test_cmdline_margin_options
[04:15:59] [PASSED] drm_test_cmdline_multiple_options
[04:15:59] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:15:59] [PASSED] drm_test_cmdline_extra_and_option
[04:15:59] [PASSED] drm_test_cmdline_freestanding_options
[04:15:59] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:15:59] [PASSED] drm_test_cmdline_panel_orientation
[04:15:59] ================ drm_test_cmdline_invalid =================
[04:15:59] [PASSED] margin_only
[04:15:59] [PASSED] interlace_only
[04:15:59] [PASSED] res_missing_x
[04:15:59] [PASSED] res_missing_y
[04:15:59] [PASSED] res_bad_y
[04:15:59] [PASSED] res_missing_y_bpp
[04:15:59] [PASSED] res_bad_bpp
[04:15:59] [PASSED] res_bad_refresh
[04:15:59] [PASSED] res_bpp_refresh_force_on_off
[04:15:59] [PASSED] res_invalid_mode
[04:15:59] [PASSED] res_bpp_wrong_place_mode
[04:15:59] [PASSED] name_bpp_refresh
[04:15:59] [PASSED] name_refresh
[04:15:59] [PASSED] name_refresh_wrong_mode
[04:15:59] [PASSED] name_refresh_invalid_mode
[04:15:59] [PASSED] rotate_multiple
[04:15:59] [PASSED] rotate_invalid_val
[04:15:59] [PASSED] rotate_truncated
[04:15:59] [PASSED] invalid_option
[04:15:59] [PASSED] invalid_tv_option
[04:15:59] [PASSED] truncated_tv_option
[04:15:59] ============ [PASSED] drm_test_cmdline_invalid =============
[04:15:59] =============== drm_test_cmdline_tv_options ===============
[04:15:59] [PASSED] NTSC
[04:15:59] [PASSED] NTSC_443
[04:15:59] [PASSED] NTSC_J
[04:15:59] [PASSED] PAL
[04:15:59] [PASSED] PAL_M
[04:15:59] [PASSED] PAL_N
[04:15:59] [PASSED] SECAM
[04:15:59] [PASSED] MONO_525
[04:15:59] [PASSED] MONO_625
[04:15:59] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:15:59] =============== [PASSED] drm_cmdline_parser ================
[04:15:59] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:15:59] [PASSED] drm_test_connector_hdmi_init_valid
[04:15:59] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:15:59] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:15:59] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:15:59] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:15:59] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:15:59] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:15:59] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:15:59] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:15:59] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:15:59] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:15:59] [PASSED] supported_formats=0x3 yuv420_allowed=1
[04:15:59] [PASSED] supported_formats=0x3 yuv420_allowed=0
[04:15:59] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:15:59] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:15:59] [PASSED] drm_test_connector_hdmi_init_null_product
[04:15:59] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:15:59] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:15:59] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:15:59] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:15:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:15:59] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:15:59] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:15:59] ========= drm_test_connector_hdmi_init_type_valid =========
[04:15:59] [PASSED] HDMI-A
[04:15:59] [PASSED] HDMI-B
[04:15:59] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:15:59] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:15:59] [PASSED] Unknown
[04:15:59] [PASSED] VGA
[04:15:59] [PASSED] DVI-I
[04:15:59] [PASSED] DVI-D
[04:15:59] [PASSED] DVI-A
[04:15:59] [PASSED] Composite
[04:15:59] [PASSED] SVIDEO
[04:15:59] [PASSED] LVDS
[04:15:59] [PASSED] Component
[04:15:59] [PASSED] DIN
[04:15:59] [PASSED] DP
[04:15:59] [PASSED] TV
[04:15:59] [PASSED] eDP
[04:15:59] [PASSED] Virtual
[04:15:59] [PASSED] DSI
[04:15:59] [PASSED] DPI
[04:15:59] [PASSED] Writeback
[04:15:59] [PASSED] SPI
[04:15:59] [PASSED] USB
[04:15:59] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:15:59] ============ [PASSED] drmm_connector_hdmi_init =============
[04:15:59] ============= drmm_connector_init (3 subtests) =============
[04:15:59] [PASSED] drm_test_drmm_connector_init
[04:15:59] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:15:59] ========= drm_test_drmm_connector_init_type_valid =========
[04:15:59] [PASSED] Unknown
[04:15:59] [PASSED] VGA
[04:15:59] [PASSED] DVI-I
[04:15:59] [PASSED] DVI-D
[04:15:59] [PASSED] DVI-A
[04:15:59] [PASSED] Composite
[04:15:59] [PASSED] SVIDEO
[04:15:59] [PASSED] LVDS
[04:15:59] [PASSED] Component
[04:15:59] [PASSED] DIN
[04:15:59] [PASSED] DP
[04:15:59] [PASSED] HDMI-A
[04:15:59] [PASSED] HDMI-B
[04:15:59] [PASSED] TV
[04:15:59] [PASSED] eDP
[04:15:59] [PASSED] Virtual
[04:15:59] [PASSED] DSI
[04:15:59] [PASSED] DPI
[04:15:59] [PASSED] Writeback
[04:15:59] [PASSED] SPI
[04:15:59] [PASSED] USB
[04:15:59] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:15:59] =============== [PASSED] drmm_connector_init ===============
[04:15:59] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_init
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:15:59] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:15:59] [PASSED] Unknown
[04:15:59] [PASSED] VGA
[04:15:59] [PASSED] DVI-I
[04:15:59] [PASSED] DVI-D
[04:15:59] [PASSED] DVI-A
[04:15:59] [PASSED] Composite
[04:15:59] [PASSED] SVIDEO
[04:15:59] [PASSED] LVDS
[04:15:59] [PASSED] Component
[04:15:59] [PASSED] DIN
[04:15:59] [PASSED] DP
[04:15:59] [PASSED] HDMI-A
[04:15:59] [PASSED] HDMI-B
[04:15:59] [PASSED] TV
[04:15:59] [PASSED] eDP
[04:15:59] [PASSED] Virtual
[04:15:59] [PASSED] DSI
[04:15:59] [PASSED] DPI
[04:15:59] [PASSED] Writeback
[04:15:59] [PASSED] SPI
[04:15:59] [PASSED] USB
[04:15:59] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:15:59] ======== drm_test_drm_connector_dynamic_init_name =========
[04:15:59] [PASSED] Unknown
[04:15:59] [PASSED] VGA
[04:15:59] [PASSED] DVI-I
[04:15:59] [PASSED] DVI-D
[04:15:59] [PASSED] DVI-A
[04:15:59] [PASSED] Composite
[04:15:59] [PASSED] SVIDEO
[04:15:59] [PASSED] LVDS
[04:15:59] [PASSED] Component
[04:15:59] [PASSED] DIN
[04:15:59] [PASSED] DP
[04:15:59] [PASSED] HDMI-A
[04:15:59] [PASSED] HDMI-B
[04:15:59] [PASSED] TV
[04:15:59] [PASSED] eDP
[04:15:59] [PASSED] Virtual
[04:15:59] [PASSED] DSI
[04:15:59] [PASSED] DPI
[04:15:59] [PASSED] Writeback
[04:15:59] [PASSED] SPI
[04:15:59] [PASSED] USB
[04:15:59] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:15:59] =========== [PASSED] drm_connector_dynamic_init ============
[04:15:59] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:15:59] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:15:59] ======= drm_connector_dynamic_register (7 subtests) ========
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:15:59] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:15:59] ========= [PASSED] drm_connector_dynamic_register ==========
[04:15:59] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:15:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:15:59] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:15:59] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:15:59] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:15:59] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:15:59] [PASSED] NTSC
[04:15:59] [PASSED] NTSC-443
[04:15:59] [PASSED] NTSC-J
[04:15:59] [PASSED] PAL
[04:15:59] [PASSED] PAL-M
[04:15:59] [PASSED] PAL-N
[04:15:59] [PASSED] SECAM
[04:15:59] [PASSED] Mono
[04:15:59] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:15:59] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:15:59] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:15:59] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:15:59] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:15:59] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:15:59] [PASSED] VIC 96
[04:15:59] [PASSED] VIC 97
[04:15:59] [PASSED] VIC 101
[04:15:59] [PASSED] VIC 102
[04:15:59] [PASSED] VIC 106
[04:15:59] [PASSED] VIC 107
[04:15:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:15:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:15:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:15:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:15:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:15:59] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:15:59] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:15:59] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:15:59] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:15:59] [PASSED] Automatic
[04:15:59] [PASSED] Full
[04:15:59] [PASSED] Limited 16:235
[04:15:59] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:15:59] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:15:59] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:15:59] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:15:59] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:15:59] [PASSED] RGB
[04:15:59] [PASSED] YUV 4:2:0
[04:15:59] [PASSED] YUV 4:2:2
[04:15:59] [PASSED] YUV 4:4:4
[04:15:59] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:15:59] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:15:59] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:15:59] ============= drm_damage_helper (21 subtests) ==============
[04:15:59] [PASSED] drm_test_damage_iter_no_damage
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:15:59] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:15:59] [PASSED] drm_test_damage_iter_simple_damage
[04:15:59] [PASSED] drm_test_damage_iter_single_damage
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:15:59] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:15:59] [PASSED] drm_test_damage_iter_damage
[04:15:59] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:15:59] [PASSED] drm_test_damage_iter_damage_one_outside
[04:15:59] [PASSED] drm_test_damage_iter_damage_src_moved
[04:15:59] [PASSED] drm_test_damage_iter_damage_not_visible
[04:15:59] ================ [PASSED] drm_damage_helper ================
[04:15:59] ============== drm_dp_mst_helper (3 subtests) ==============
[04:15:59] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:15:59] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:15:59] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:15:59] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:15:59] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:15:59] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:15:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:15:59] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:15:59] [PASSED] Link rate 2000000 lane count 4
[04:15:59] [PASSED] Link rate 2000000 lane count 2
[04:15:59] [PASSED] Link rate 2000000 lane count 1
[04:15:59] [PASSED] Link rate 1350000 lane count 4
[04:15:59] [PASSED] Link rate 1350000 lane count 2
[04:15:59] [PASSED] Link rate 1350000 lane count 1
[04:15:59] [PASSED] Link rate 1000000 lane count 4
[04:15:59] [PASSED] Link rate 1000000 lane count 2
[04:15:59] [PASSED] Link rate 1000000 lane count 1
[04:15:59] [PASSED] Link rate 810000 lane count 4
[04:15:59] [PASSED] Link rate 810000 lane count 2
[04:15:59] [PASSED] Link rate 810000 lane count 1
[04:15:59] [PASSED] Link rate 540000 lane count 4
[04:15:59] [PASSED] Link rate 540000 lane count 2
[04:15:59] [PASSED] Link rate 540000 lane count 1
[04:15:59] [PASSED] Link rate 270000 lane count 4
[04:15:59] [PASSED] Link rate 270000 lane count 2
[04:15:59] [PASSED] Link rate 270000 lane count 1
[04:15:59] [PASSED] Link rate 162000 lane count 4
[04:15:59] [PASSED] Link rate 162000 lane count 2
[04:15:59] [PASSED] Link rate 162000 lane count 1
[04:15:59] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:15:59] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:15:59] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:15:59] [PASSED] DP_POWER_UP_PHY with port number
[04:15:59] [PASSED] DP_POWER_DOWN_PHY with port number
[04:15:59] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:15:59] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:15:59] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:15:59] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:15:59] [PASSED] DP_QUERY_PAYLOAD with port number
[04:15:59] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:15:59] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:15:59] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:15:59] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:15:59] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:15:59] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:15:59] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:15:59] [PASSED] DP_REMOTE_I2C_READ with port number
[04:15:59] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:15:59] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:15:59] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:15:59] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:15:59] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:15:59] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:15:59] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:15:59] ================ [PASSED] drm_dp_mst_helper ================
[04:15:59] ================== drm_exec (7 subtests) ===================
[04:15:59] [PASSED] sanitycheck
[04:15:59] [PASSED] test_lock
[04:15:59] [PASSED] test_lock_unlock
[04:15:59] [PASSED] test_duplicates
[04:15:59] [PASSED] test_prepare
[04:15:59] [PASSED] test_prepare_array
[04:15:59] [PASSED] test_multiple_loops
[04:15:59] ==================== [PASSED] drm_exec =====================
[04:15:59] =========== drm_format_helper_test (18 subtests) ===========
[04:15:59] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:15:59] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:15:59] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:15:59] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:15:59] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:15:59] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:15:59] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:15:59] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:15:59] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:15:59] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:15:59] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:15:59] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:15:59] ==================== drm_test_fb_swab =====================
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ================ [PASSED] drm_test_fb_swab =================
[04:15:59] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:15:59] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:15:59] [PASSED] single_pixel_source_buffer
[04:15:59] [PASSED] single_pixel_clip_rectangle
[04:15:59] [PASSED] well_known_colors
[04:15:59] [PASSED] destination_pitch
[04:15:59] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:15:59] ================= drm_test_fb_clip_offset =================
[04:15:59] [PASSED] pass through
[04:15:59] [PASSED] horizontal offset
[04:15:59] [PASSED] vertical offset
[04:15:59] [PASSED] horizontal and vertical offset
[04:15:59] [PASSED] horizontal offset (custom pitch)
[04:15:59] [PASSED] vertical offset (custom pitch)
[04:15:59] [PASSED] horizontal and vertical offset (custom pitch)
[04:15:59] ============= [PASSED] drm_test_fb_clip_offset =============
[04:15:59] ============== drm_test_fb_build_fourcc_list ==============
[04:15:59] [PASSED] no native formats
[04:15:59] [PASSED] XRGB8888 as native format
[04:15:59] [PASSED] remove duplicates
[04:15:59] [PASSED] convert alpha formats
[04:15:59] [PASSED] random formats
[04:15:59] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[04:15:59] =================== drm_test_fb_memcpy ====================
[04:15:59] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:15:59] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:15:59] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:15:59] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:15:59] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:15:59] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:15:59] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:15:59] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:15:59] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:15:59] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:15:59] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:15:59] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:15:59] =============== [PASSED] drm_test_fb_memcpy ================
[04:15:59] ============= [PASSED] drm_format_helper_test ==============
[04:15:59] ================= drm_format (18 subtests) =================
[04:15:59] [PASSED] drm_test_format_block_width_invalid
[04:15:59] [PASSED] drm_test_format_block_width_one_plane
[04:15:59] [PASSED] drm_test_format_block_width_two_plane
[04:15:59] [PASSED] drm_test_format_block_width_three_plane
[04:15:59] [PASSED] drm_test_format_block_width_tiled
[04:15:59] [PASSED] drm_test_format_block_height_invalid
[04:15:59] [PASSED] drm_test_format_block_height_one_plane
[04:15:59] [PASSED] drm_test_format_block_height_two_plane
[04:15:59] [PASSED] drm_test_format_block_height_three_plane
[04:15:59] [PASSED] drm_test_format_block_height_tiled
[04:15:59] [PASSED] drm_test_format_min_pitch_invalid
[04:15:59] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:15:59] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:15:59] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:15:59] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:15:59] [PASSED] drm_test_format_min_pitch_two_plane
[04:15:59] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:15:59] [PASSED] drm_test_format_min_pitch_tiled
[04:15:59] =================== [PASSED] drm_format ====================
[04:15:59] ============== drm_framebuffer (10 subtests) ===============
[04:15:59] ========== drm_test_framebuffer_check_src_coords ==========
[04:15:59] [PASSED] Success: source fits into fb
[04:15:59] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:15:59] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:15:59] [PASSED] Fail: overflowing fb with source width
[04:15:59] [PASSED] Fail: overflowing fb with source height
[04:15:59] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:15:59] [PASSED] drm_test_framebuffer_cleanup
[04:15:59] =============== drm_test_framebuffer_create ===============
[04:15:59] [PASSED] ABGR8888 normal sizes
[04:15:59] [PASSED] ABGR8888 max sizes
[04:15:59] [PASSED] ABGR8888 pitch greater than min required
[04:15:59] [PASSED] ABGR8888 pitch less than min required
[04:15:59] [PASSED] ABGR8888 Invalid width
[04:15:59] [PASSED] ABGR8888 Invalid buffer handle
[04:15:59] [PASSED] No pixel format
[04:15:59] [PASSED] ABGR8888 Width 0
[04:15:59] [PASSED] ABGR8888 Height 0
[04:15:59] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:15:59] [PASSED] ABGR8888 Large buffer offset
[04:15:59] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:15:59] [PASSED] ABGR8888 Invalid flag
[04:15:59] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:15:59] [PASSED] ABGR8888 Valid buffer modifier
[04:15:59] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:15:59] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] NV12 Normal sizes
[04:15:59] [PASSED] NV12 Max sizes
[04:15:59] [PASSED] NV12 Invalid pitch
[04:15:59] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:15:59] [PASSED] NV12 different modifier per-plane
[04:15:59] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:15:59] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] NV12 Modifier for inexistent plane
[04:15:59] [PASSED] NV12 Handle for inexistent plane
[04:15:59] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:15:59] [PASSED] YVU420 Normal sizes
[04:15:59] [PASSED] YVU420 Max sizes
[04:15:59] [PASSED] YVU420 Invalid pitch
[04:15:59] [PASSED] YVU420 Different pitches
[04:15:59] [PASSED] YVU420 Different buffer offsets/pitches
[04:15:59] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:15:59] [PASSED] YVU420 Valid modifier
[04:15:59] [PASSED] YVU420 Different modifiers per plane
[04:15:59] [PASSED] YVU420 Modifier for inexistent plane
[04:15:59] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:15:59] [PASSED] X0L2 Normal sizes
[04:15:59] [PASSED] X0L2 Max sizes
[04:15:59] [PASSED] X0L2 Invalid pitch
[04:15:59] [PASSED] X0L2 Pitch greater than minimum required
[04:15:59] [PASSED] X0L2 Handle for inexistent plane
[04:15:59] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:15:59] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:15:59] [PASSED] X0L2 Valid modifier
[04:15:59] [PASSED] X0L2 Modifier for inexistent plane
[04:15:59] =========== [PASSED] drm_test_framebuffer_create ===========
[04:15:59] [PASSED] drm_test_framebuffer_free
[04:15:59] [PASSED] drm_test_framebuffer_init
[04:15:59] [PASSED] drm_test_framebuffer_init_bad_format
[04:15:59] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:15:59] [PASSED] drm_test_framebuffer_lookup
[04:15:59] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:15:59] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:15:59] ================= [PASSED] drm_framebuffer =================
[04:15:59] ================ drm_gem_shmem (8 subtests) ================
[04:15:59] [PASSED] drm_gem_shmem_test_obj_create
[04:15:59] [PASSED] drm_gem_shmem_test_obj_create_private
[04:15:59] [PASSED] drm_gem_shmem_test_pin_pages
[04:15:59] [PASSED] drm_gem_shmem_test_vmap
[04:15:59] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:15:59] [PASSED] drm_gem_shmem_test_get_sg_table
[04:15:59] [PASSED] drm_gem_shmem_test_madvise
[04:15:59] [PASSED] drm_gem_shmem_test_purge
[04:15:59] ================== [PASSED] drm_gem_shmem ==================
[04:15:59] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:15:59] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:15:59] [PASSED] Automatic
[04:15:59] [PASSED] Full
[04:15:59] [PASSED] Limited 16:235
[04:15:59] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:15:59] [PASSED] drm_test_check_disable_connector
[04:15:59] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:15:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:15:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:15:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:15:59] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:15:59] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:15:59] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:15:59] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:15:59] [PASSED] drm_test_check_output_bpc_dvi
[04:15:59] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:15:59] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:15:59] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:15:59] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:15:59] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:15:59] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:15:59] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:15:59] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:15:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:15:59] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:15:59] [PASSED] drm_test_check_broadcast_rgb_value
[04:15:59] [PASSED] drm_test_check_bpc_8_value
[04:15:59] [PASSED] drm_test_check_bpc_10_value
[04:15:59] [PASSED] drm_test_check_bpc_12_value
[04:15:59] [PASSED] drm_test_check_format_value
[04:15:59] [PASSED] drm_test_check_tmds_char_value
[04:15:59] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:15:59] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[04:15:59] [PASSED] drm_test_check_mode_valid
[04:15:59] [PASSED] drm_test_check_mode_valid_reject
[04:15:59] [PASSED] drm_test_check_mode_valid_reject_rate
[04:15:59] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:15:59] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:15:59] ================= drm_managed (2 subtests) =================
[04:15:59] [PASSED] drm_test_managed_release_action
[04:15:59] [PASSED] drm_test_managed_run_action
[04:15:59] =================== [PASSED] drm_managed ===================
[04:15:59] =================== drm_mm (6 subtests) ====================
[04:15:59] [PASSED] drm_test_mm_init
[04:15:59] [PASSED] drm_test_mm_debug
[04:15:59] [PASSED] drm_test_mm_align32
[04:15:59] [PASSED] drm_test_mm_align64
[04:15:59] [PASSED] drm_test_mm_lowest
[04:15:59] [PASSED] drm_test_mm_highest
[04:15:59] ===================== [PASSED] drm_mm ======================
[04:15:59] ============= drm_modes_analog_tv (5 subtests) =============
[04:15:59] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:15:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:15:59] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:15:59] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:15:59] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:15:59] =============== [PASSED] drm_modes_analog_tv ===============
[04:15:59] ============== drm_plane_helper (2 subtests) ===============
[04:15:59] =============== drm_test_check_plane_state ================
[04:15:59] [PASSED] clipping_simple
[04:15:59] [PASSED] clipping_rotate_reflect
[04:15:59] [PASSED] positioning_simple
[04:15:59] [PASSED] upscaling
[04:15:59] [PASSED] downscaling
[04:15:59] [PASSED] rounding1
[04:15:59] [PASSED] rounding2
[04:15:59] [PASSED] rounding3
[04:15:59] [PASSED] rounding4
[04:15:59] =========== [PASSED] drm_test_check_plane_state ============
[04:15:59] =========== drm_test_check_invalid_plane_state ============
[04:15:59] [PASSED] positioning_invalid
[04:15:59] [PASSED] upscaling_invalid
[04:15:59] [PASSED] downscaling_invalid
[04:15:59] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:15:59] ================ [PASSED] drm_plane_helper =================
[04:15:59] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:15:59] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:15:59] [PASSED] None
[04:15:59] [PASSED] PAL
[04:15:59] [PASSED] NTSC
[04:15:59] [PASSED] Both, NTSC Default
[04:15:59] [PASSED] Both, PAL Default
[04:15:59] [PASSED] Both, NTSC Default, with PAL on command-line
[04:15:59] [PASSED] Both, PAL Default, with NTSC on command-line
[04:15:59] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:15:59] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:15:59] ================== drm_rect (9 subtests) ===================
[04:15:59] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:15:59] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:15:59] [PASSED] drm_test_rect_clip_scaled_clipped
[04:15:59] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:15:59] ================= drm_test_rect_intersect =================
[04:15:59] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:15:59] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:15:59] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:15:59] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:15:59] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:15:59] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:15:59] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:15:59] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:15:59] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:15:59] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:15:59] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:15:59] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:15:59] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:15:59] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:15:59] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:15:59] ============= [PASSED] drm_test_rect_intersect =============
[04:15:59] ================ drm_test_rect_calc_hscale ================
[04:15:59] [PASSED] normal use
[04:15:59] [PASSED] out of max range
[04:15:59] [PASSED] out of min range
[04:15:59] [PASSED] zero dst
[04:15:59] [PASSED] negative src
[04:15:59] [PASSED] negative dst
[04:15:59] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:15:59] ================ drm_test_rect_calc_vscale ================
[04:15:59] [PASSED] normal use
[04:15:59] [PASSED] out of max range
[04:15:59] [PASSED] out of min range
[04:15:59] [PASSED] zero dst
[04:15:59] [PASSED] negative src
[04:15:59] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[04:15:59] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:15:59] ================== drm_test_rect_rotate ===================
[04:15:59] [PASSED] reflect-x
[04:15:59] [PASSED] reflect-y
[04:15:59] [PASSED] rotate-0
[04:15:59] [PASSED] rotate-90
[04:15:59] [PASSED] rotate-180
[04:15:59] [PASSED] rotate-270
[04:15:59] ============== [PASSED] drm_test_rect_rotate ===============
[04:15:59] ================ drm_test_rect_rotate_inv =================
[04:15:59] [PASSED] reflect-x
[04:15:59] [PASSED] reflect-y
[04:15:59] [PASSED] rotate-0
[04:15:59] [PASSED] rotate-90
[04:15:59] [PASSED] rotate-180
[04:15:59] [PASSED] rotate-270
[04:15:59] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:15:59] ==================== [PASSED] drm_rect =====================
[04:15:59] ============================================================
[04:15:59] Testing complete. Ran 616 tests: passed: 616
[04:15:59] Elapsed time: 44.268s total, 2.548s configuring, 41.498s building, 0.191s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:15:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:16:02] 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
[04:16:15] Starting KUnit Kernel (1/1)...
[04:16:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:16:15] ================= ttm_device (5 subtests) ==================
[04:16:15] [PASSED] ttm_device_init_basic
[04:16:15] [PASSED] ttm_device_init_multiple
[04:16:15] [PASSED] ttm_device_fini_basic
[04:16:15] [PASSED] ttm_device_init_no_vma_man
[04:16:15] ================== ttm_device_init_pools ==================
[04:16:15] [PASSED] No DMA allocations, no DMA32 required
[04:16:15] [PASSED] DMA allocations, DMA32 required
[04:16:15] [PASSED] No DMA allocations, DMA32 required
[04:16:15] [PASSED] DMA allocations, no DMA32 required
[04:16:15] ============== [PASSED] ttm_device_init_pools ==============
[04:16:15] =================== [PASSED] ttm_device ====================
[04:16:15] ================== ttm_pool (8 subtests) ===================
[04:16:15] ================== ttm_pool_alloc_basic ===================
[04:16:15] [PASSED] One page
[04:16:15] [PASSED] More than one page
[04:16:15] [PASSED] Above the allocation limit
[04:16:15] [PASSED] One page, with coherent DMA mappings enabled
[04:16:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:16:15] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:16:15] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:16:15] [PASSED] One page
[04:16:15] [PASSED] More than one page
[04:16:15] [PASSED] Above the allocation limit
[04:16:15] [PASSED] One page, with coherent DMA mappings enabled
[04:16:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:16:15] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:16:15] [PASSED] ttm_pool_alloc_order_caching_match
[04:16:15] [PASSED] ttm_pool_alloc_caching_mismatch
[04:16:15] [PASSED] ttm_pool_alloc_order_mismatch
[04:16:15] [PASSED] ttm_pool_free_dma_alloc
[04:16:15] [PASSED] ttm_pool_free_no_dma_alloc
[04:16:15] [PASSED] ttm_pool_fini_basic
[04:16:15] ==================== [PASSED] ttm_pool =====================
[04:16:15] ================ ttm_resource (8 subtests) =================
[04:16:15] ================= ttm_resource_init_basic =================
[04:16:15] [PASSED] Init resource in TTM_PL_SYSTEM
[04:16:15] [PASSED] Init resource in TTM_PL_VRAM
[04:16:15] [PASSED] Init resource in a private placement
[04:16:15] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:16:15] ============= [PASSED] ttm_resource_init_basic =============
[04:16:15] [PASSED] ttm_resource_init_pinned
[04:16:15] [PASSED] ttm_resource_fini_basic
[04:16:15] [PASSED] ttm_resource_manager_init_basic
[04:16:15] [PASSED] ttm_resource_manager_usage_basic
[04:16:15] [PASSED] ttm_resource_manager_set_used_basic
[04:16:15] [PASSED] ttm_sys_man_alloc_basic
[04:16:15] [PASSED] ttm_sys_man_free_basic
[04:16:15] ================== [PASSED] ttm_resource ===================
[04:16:15] =================== ttm_tt (15 subtests) ===================
[04:16:15] ==================== ttm_tt_init_basic ====================
[04:16:15] [PASSED] Page-aligned size
[04:16:15] [PASSED] Extra pages requested
[04:16:15] ================ [PASSED] ttm_tt_init_basic ================
[04:16:15] [PASSED] ttm_tt_init_misaligned
[04:16:15] [PASSED] ttm_tt_fini_basic
[04:16:15] [PASSED] ttm_tt_fini_sg
[04:16:15] [PASSED] ttm_tt_fini_shmem
[04:16:15] [PASSED] ttm_tt_create_basic
[04:16:15] [PASSED] ttm_tt_create_invalid_bo_type
[04:16:15] [PASSED] ttm_tt_create_ttm_exists
[04:16:15] [PASSED] ttm_tt_create_failed
[04:16:15] [PASSED] ttm_tt_destroy_basic
[04:16:15] [PASSED] ttm_tt_populate_null_ttm
[04:16:15] [PASSED] ttm_tt_populate_populated_ttm
[04:16:15] [PASSED] ttm_tt_unpopulate_basic
[04:16:15] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:16:15] [PASSED] ttm_tt_swapin_basic
[04:16:15] ===================== [PASSED] ttm_tt ======================
[04:16:15] =================== ttm_bo (14 subtests) ===================
[04:16:15] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:16:15] [PASSED] Cannot be interrupted and sleeps
[04:16:15] [PASSED] Cannot be interrupted, locks straight away
[04:16:15] [PASSED] Can be interrupted, sleeps
[04:16:15] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:16:15] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:16:15] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:16:15] [PASSED] ttm_bo_reserve_double_resv
[04:16:15] [PASSED] ttm_bo_reserve_interrupted
[04:16:15] [PASSED] ttm_bo_reserve_deadlock
[04:16:15] [PASSED] ttm_bo_unreserve_basic
[04:16:15] [PASSED] ttm_bo_unreserve_pinned
[04:16:15] [PASSED] ttm_bo_unreserve_bulk
[04:16:15] [PASSED] ttm_bo_put_basic
[04:16:15] [PASSED] ttm_bo_put_shared_resv
[04:16:15] [PASSED] ttm_bo_pin_basic
[04:16:15] [PASSED] ttm_bo_pin_unpin_resource
[04:16:15] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:16:15] ===================== [PASSED] ttm_bo ======================
[04:16:15] ============== ttm_bo_validate (22 subtests) ===============
[04:16:15] ============== ttm_bo_init_reserved_sys_man ===============
[04:16:15] [PASSED] Buffer object for userspace
[04:16:15] [PASSED] Kernel buffer object
[04:16:15] [PASSED] Shared buffer object
[04:16:15] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:16:15] ============== ttm_bo_init_reserved_mock_man ==============
[04:16:15] [PASSED] Buffer object for userspace
[04:16:15] [PASSED] Kernel buffer object
[04:16:15] [PASSED] Shared buffer object
[04:16:15] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:16:15] [PASSED] ttm_bo_init_reserved_resv
[04:16:15] ================== ttm_bo_validate_basic ==================
[04:16:15] [PASSED] Buffer object for userspace
[04:16:15] [PASSED] Kernel buffer object
[04:16:15] [PASSED] Shared buffer object
[04:16:15] ============== [PASSED] ttm_bo_validate_basic ==============
[04:16:15] [PASSED] ttm_bo_validate_invalid_placement
[04:16:15] ============= ttm_bo_validate_same_placement ==============
[04:16:15] [PASSED] System manager
[04:16:15] [PASSED] VRAM manager
[04:16:15] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:16:15] [PASSED] ttm_bo_validate_failed_alloc
[04:16:15] [PASSED] ttm_bo_validate_pinned
[04:16:15] [PASSED] ttm_bo_validate_busy_placement
[04:16:15] ================ ttm_bo_validate_multihop =================
[04:16:15] [PASSED] Buffer object for userspace
[04:16:15] [PASSED] Kernel buffer object
[04:16:15] [PASSED] Shared buffer object
[04:16:15] ============ [PASSED] ttm_bo_validate_multihop =============
[04:16:15] ========== ttm_bo_validate_no_placement_signaled ==========
[04:16:15] [PASSED] Buffer object in system domain, no page vector
[04:16:15] [PASSED] Buffer object in system domain with an existing page vector
[04:16:15] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:16:15] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:16:15] [PASSED] Buffer object for userspace
[04:16:15] [PASSED] Kernel buffer object
[04:16:15] [PASSED] Shared buffer object
[04:16:15] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:16:15] [PASSED] ttm_bo_validate_move_fence_signaled
[04:16:15] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:16:15] [PASSED] Waits for GPU
[04:16:15] [PASSED] Tries to lock straight away
[04:16:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:16:15] [PASSED] ttm_bo_validate_swapout
[04:16:15] [PASSED] ttm_bo_validate_happy_evict
[04:16:15] [PASSED] ttm_bo_validate_all_pinned_evict
[04:16:15] [PASSED] ttm_bo_validate_allowed_only_evict
[04:16:15] [PASSED] ttm_bo_validate_deleted_evict
[04:16:15] [PASSED] ttm_bo_validate_busy_domain_evict
[04:16:15] [PASSED] ttm_bo_validate_evict_gutting
[04:16:15] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:16:15] ================= [PASSED] ttm_bo_validate =================
[04:16:15] ============================================================
[04:16:15] Testing complete. Ran 102 tests: passed: 102
[04:16:15] Elapsed time: 16.043s total, 2.502s configuring, 12.718s building, 0.681s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.BAT: failure for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
2025-06-12 22:09 [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Zhanjun Dong
2025-06-13 4:16 ` ✓ CI.KUnit: success for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
@ 2025-06-13 5:13 ` Patchwork
2025-06-13 14:32 ` [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Michal Wajdeczko
2025-06-14 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-13 5:13 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2110 bytes --]
== Series Details ==
Series: drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
URL : https://patchwork.freedesktop.org/series/149856/
State : failure
== Summary ==
CI Bug Log - changes from xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6_BAT -> xe-pw-149856v3_BAT
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with xe-pw-149856v3_BAT need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-149856v3_BAT, 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 (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-149856v3_BAT:
### IGT changes ###
#### Warnings ####
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-atsm-2: [ABORT][1] ([Intel XE#5214]) -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
Build changes
-------------
* IGT: IGT_8409 -> IGT_8410
* Linux: xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6 -> xe-pw-149856v3
IGT_8409: 47d092f112d138977837666b161c97032c3446cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8410: 5826cdbf1cb8f5ec8a42bae33deb6b2b63e59e6e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6: 1eb0e9ebd86a603c0d83e641c5e543606d175bc6
xe-pw-149856v3: 149856v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/index.html
[-- Attachment #2: Type: text/html, Size: 2702 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error
2025-06-12 22:09 [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Zhanjun Dong
2025-06-13 4:16 ` ✓ CI.KUnit: success for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
2025-06-13 5:13 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-06-13 14:32 ` Michal Wajdeczko
2025-06-13 16:30 ` Dong, Zhanjun
2025-06-14 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
3 siblings, 1 reply; 6+ messages in thread
From: Michal Wajdeczko @ 2025-06-13 14:32 UTC (permalink / raw)
To: Zhanjun Dong, intel-xe, Matthew Brost; +Cc: Stuart Summers
Hi,
maybe title should start with "drm/xe/uc:" instead?
On 13.06.2025 00:09, Zhanjun Dong wrote:
the commit message should also say "why" not just "what", see [1]
[1] https://docs.kernel.org/process/submitting-patches.html#explanation-body
> Declare wedged on Xe micro controller hardware initialization
> failed.
failure ?
error ?
>
> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
> Reviewed-by: Stuart Summers <stuart.summers@intel.com>
>
no empty lines between tags!
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
>
> ---
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Change list:
> v4: Fix typo and add new line
> v3: v2 CI re-run
> v2: Remove unnecessary jump to err-out
> Drop disable ct, switch to set wedge
> ---
> drivers/gpu/drm/xe/xe_uc.c | 21 ++++++++++++++-------
> 1 file changed, 14 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
> index 3a8751a8b92d..77175938fc40 100644
> --- a/drivers/gpu/drm/xe/xe_uc.c
> +++ b/drivers/gpu/drm/xe/xe_uc.c
> @@ -157,19 +157,22 @@ static int vf_uc_init_hw(struct xe_uc *uc)
>
> err = xe_guc_enable_communication(&uc->guc);
> if (err)
> - return err;
> + goto err_out;
>
> err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
> if (err)
> - return err;
> + goto err_out;
>
> uc->guc.submission_state.enabled = true;
>
> err = xe_gt_record_default_lrcs(uc_to_gt(uc));
> if (err)
> - return err;
> + goto err_out;
>
> return 0;
add separation line here please
> +err_out:
> + xe_device_declare_wedged(uc_to_xe(uc));
> + return err;
> }
>
> /*
> @@ -197,19 +200,19 @@ int xe_uc_init_hw(struct xe_uc *uc)
>
> ret = xe_guc_enable_communication(&uc->guc);
> if (ret)
> - return ret;
> + goto err_out;
>
> ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
> if (ret)
> - return ret;
> + goto err_out;
>
> ret = xe_guc_post_load_init(&uc->guc);
> if (ret)
> - return ret;
> + goto err_out;
>
> ret = xe_guc_pc_start(&uc->guc.pc);
> if (ret)
> - return ret;
> + goto err_out;
>
> xe_guc_engine_activity_enable_stats(&uc->guc);
>
> @@ -221,6 +224,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
> xe_gsc_load_start(&uc->gsc);
>
> return 0;
> +
> +err_out:
> + xe_device_declare_wedged(uc_to_xe(uc));
hmm, but shouldn't this be really decided at the caller layer?
this is already done in this way by xe_gt.c:gt_reset() and it looks that
xe_gt.c:xe_gt_resume() or xe_device.c:xe_device_probe() are not
handling that in the same way, so maybe fix should be there?
and from the issue #4917 it looks that indeed the fix should be
somewhere in xe_device_probe() or more specifically in the xe_gt_tlb
code which missed to do proper unwind that would include explicit
xe_gt_tlb_invalidation_reset() like done by the declare_wedged()
without that we could see that delayed TLB work hit UAF
+ Matt
> + return ret;
> }
>
> int xe_uc_fini_hw(struct xe_uc *uc)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error
2025-06-13 14:32 ` [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Michal Wajdeczko
@ 2025-06-13 16:30 ` Dong, Zhanjun
0 siblings, 0 replies; 6+ messages in thread
From: Dong, Zhanjun @ 2025-06-13 16:30 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe, Matthew Brost; +Cc: Stuart Summers
Please see my comments inline below.
Regards,
Zhanjun Dong
On 2025-06-13 10:32 a.m., Michal Wajdeczko wrote:
> Hi,
>
> maybe title should start with "drm/xe/uc:" instead?
Sure>
> On 13.06.2025 00:09, Zhanjun Dong wrote:
>
> the commit message should also say "why" not just "what", see [1]
>
> [1] https://docs.kernel.org/process/submitting-patches.html#explanation-body
>
>> Declare wedged on Xe micro controller hardware initialization
>> failed.
>
> failure ?
> error ?
Will change to error>
>>
>> Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
>> Reviewed-by: Stuart Summers <stuart.summers@intel.com>
>>
>
> no empty lines between tags!
>
>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/4917
>>
>> ---
>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Change list:
>> v4: Fix typo and add new line
>> v3: v2 CI re-run
>> v2: Remove unnecessary jump to err-out
>> Drop disable ct, switch to set wedge
>> ---
>> drivers/gpu/drm/xe/xe_uc.c | 21 ++++++++++++++-------
>> 1 file changed, 14 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_uc.c b/drivers/gpu/drm/xe/xe_uc.c
>> index 3a8751a8b92d..77175938fc40 100644
>> --- a/drivers/gpu/drm/xe/xe_uc.c
>> +++ b/drivers/gpu/drm/xe/xe_uc.c
>> @@ -157,19 +157,22 @@ static int vf_uc_init_hw(struct xe_uc *uc)
>>
>> err = xe_guc_enable_communication(&uc->guc);
>> if (err)
>> - return err;
>> + goto err_out;
>>
>> err = xe_gt_sriov_vf_connect(uc_to_gt(uc));
>> if (err)
>> - return err;
>> + goto err_out;
>>
>> uc->guc.submission_state.enabled = true;
>>
>> err = xe_gt_record_default_lrcs(uc_to_gt(uc));
>> if (err)
>> - return err;
>> + goto err_out;
>>
>> return 0;
>
> add separation line here please
>
>> +err_out:
>> + xe_device_declare_wedged(uc_to_xe(uc));
>> + return err;
>> }
>>
>> /*
>> @@ -197,19 +200,19 @@ int xe_uc_init_hw(struct xe_uc *uc)
>>
>> ret = xe_guc_enable_communication(&uc->guc);
>> if (ret)
>> - return ret;
>> + goto err_out;
>>
>> ret = xe_gt_record_default_lrcs(uc_to_gt(uc));
>> if (ret)
>> - return ret;
>> + goto err_out;
>>
>> ret = xe_guc_post_load_init(&uc->guc);
>> if (ret)
>> - return ret;
>> + goto err_out;
>>
>> ret = xe_guc_pc_start(&uc->guc.pc);
>> if (ret)
>> - return ret;
>> + goto err_out;
>>
>> xe_guc_engine_activity_enable_stats(&uc->guc);
>>
>> @@ -221,6 +224,10 @@ int xe_uc_init_hw(struct xe_uc *uc)
>> xe_gsc_load_start(&uc->gsc);
>>
>> return 0;
>> +
>> +err_out:
>> + xe_device_declare_wedged(uc_to_xe(uc));
>
> hmm, but shouldn't this be really decided at the caller layer?
>
> this is already done in this way by xe_gt.c:gt_reset() and it looks that
> xe_gt.c:xe_gt_resume() or xe_device.c:xe_device_probe() are not
> handling that in the same way, so maybe fix should be there?
This function is on hardware initialization level, declare wedged on
hardware initialization errors is reasonable.
I understand reasons do it at caller level, while if the reason is
strong enough, then do it here might make it looks clean and straight
forward.
>
> and from the issue #4917 it looks that indeed the fix should be
> somewhere in xe_device_probe() or more specifically in the xe_gt_tlb
> code which missed to do proper unwind that would include explicit
> xe_gt_tlb_invalidation_reset() like done by the declare_wedged()
>
> without that we could see that delayed TLB work hit UAF
Yes, this patch is not a fix for the issue.
For this issue, the solution should be split into 2 parts:
1. This patch, declare wedge on _hw_init error
2. Fix on xe_gt_tlb code.
For part 2, I already sent email to kernel-core team offline, I will
forward that email to you guys, and might assign the issue (or create
new issue?) to kernel-core team later to track part 2.
>
> + Matt
>
>> + return ret;
>> }
>>
>> int xe_uc_fini_hw(struct xe_uc *uc)
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
2025-06-12 22:09 [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Zhanjun Dong
` (2 preceding siblings ...)
2025-06-13 14:32 ` [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Michal Wajdeczko
@ 2025-06-14 6:50 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-06-14 6:50 UTC (permalink / raw)
To: Dong, Zhanjun; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 94205 bytes --]
== Series Details ==
Series: drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3)
URL : https://patchwork.freedesktop.org/series/149856/
State : failure
== Summary ==
CI Bug Log - changes from xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6_FULL -> xe-pw-149856v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-149856v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-149856v3_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-149856v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate-race:
- shard-bmg: [PASS][3] -> [SKIP][4] +16 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-3/igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate-race.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate-race.html
#### Warnings ####
* igt@kms_feature_discovery@chamelium:
- shard-bmg: [SKIP][5] ([Intel XE#2372]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_feature_discovery@chamelium.html
* igt@xe_exec_system_allocator@threads-many-mmap-huge:
- shard-bmg: [SKIP][7] ([Intel XE#4943]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-mmap-huge.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-mmap-huge.html
Known issues
------------
Here are the changes found in xe-pw-149856v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#1125])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@unused-pitches:
- shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#4208] / [i915#2575])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-464/igt@kms_addfb_basic@unused-pitches.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#3718] / [Intel XE#827])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#827])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#911]) +3 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-1/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-d-dp-4-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#3767]) +15 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][19] ([Intel XE#3884]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#873])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2327]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#316]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +11 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][26] ([Intel XE#4543]) +9 other tests dmesg-fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +8 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [PASS][29] -> [DMESG-FAIL][30] ([Intel XE#4543]) +1 other test dmesg-fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#610])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +20 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#2191]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#367]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#367]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1512])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +14 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#787]) +89 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +9 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2669]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +57 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3432]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3432]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#2907]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#787]) +97 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][52] ([Intel XE#3124])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][53] ([Intel XE#1727] / [Intel XE#3113])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][54] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#373]) +18 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#306]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2325])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@degamma:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#306]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#306])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#373]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#373]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#307])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#1178]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_content_protection@legacy.html
- shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#1178]) +3 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#5176]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2341])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x128:
- shard-adlp: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2953] / [Intel XE#4173])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-3/igt@kms_cursor_crc@cursor-offscreen-128x128.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_cursor_crc@cursor-offscreen-128x128.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#308]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2320]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1424]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2291]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#309]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-8/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#309]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2286])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#323])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#4356])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#4354])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#4356])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_dp_link_training@uhbr-sst.html
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4354])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#4331])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4294])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2244])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2244])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#4422])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4422])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#4422])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4422])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4156])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#776])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#776])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#703])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#310]) +8 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1421]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2316]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][98] -> [ABORT][99] ([Intel XE#4056]) +1 other test abort
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2316]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#301]) +3 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][104] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@wf_vblank-ts-check@b-dp2:
- shard-bmg: [PASS][105] -> [FAIL][106] ([Intel XE#2882]) +3 other tests fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check@b-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: [PASS][107] -> [DMESG-FAIL][108] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2311]) +21 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#651]) +30 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#651]) +10 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][112] ([Intel XE#656]) +51 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4141]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#651]) +24 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#1151])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#653]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653]) +19 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2312]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2313]) +18 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#656]) +19 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1341])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1503])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#346]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#3012])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#2925])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2927])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2927])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#2927])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2927])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2925])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#4596]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#5020])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#5020])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_plane_multiple@tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#5020])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-adlp: NOTRUN -> [DMESG-WARN][135] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#870])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1129])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#1129])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#2007])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_pm_dc@deep-pkgc.html
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2505])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#908])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][142] ([Intel XE#2029])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2499])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-adlp: NOTRUN -> [SKIP][144] ([Intel XE#836]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2893] / [Intel XE#4608])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#4608]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1489]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2893]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#1489]) +12 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1489]) +6 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-p010:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#1122]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2387])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1122])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1128])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#1406]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@fbc-psr-cursor-render:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#4208]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_psr@fbc-psr-cursor-render.html
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2231])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_psr@fbc-psr-cursor-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-basic:
- shard-adlp: NOTRUN -> [SKIP][159] ([Intel XE#2850] / [Intel XE#929]) +24 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2234])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#2939])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3414])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@kms_rotation_crc@bad-tiling.html
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#3414] / [Intel XE#3904])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-adlp: NOTRUN -> [FAIL][166] ([Intel XE#1874]) +2 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [FAIL][167] ([Intel XE#4689])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1127])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-adlp: NOTRUN -> [SKIP][169] ([Intel XE#3414]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#455]) +9 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][171] ([Intel XE#2883]) +4 other tests fail
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-adlp: NOTRUN -> [SKIP][172] ([Intel XE#362])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-suspend:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#455]) +23 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_vrr@flip-suspend.html
* igt@xe_ccs@large-ctrl-surf-copy:
- shard-adlp: NOTRUN -> [SKIP][174] ([Intel XE#3576])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@xe_ccs@large-ctrl-surf-copy.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-adlp: NOTRUN -> [SKIP][176] ([Intel XE#1126])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eu_stall@non-blocking-read:
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#4497])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@xe_eu_stall@non-blocking-read.html
* igt@xe_eudebug@basic-read-event:
- shard-adlp: NOTRUN -> [SKIP][178] ([Intel XE#4837]) +18 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#4837]) +10 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#4837]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#4837]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#688]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][183] ([Intel XE#261] / [Intel XE#688]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][184] ([Intel XE#688]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1392]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-adlp: NOTRUN -> [SKIP][186] ([Intel XE#1392]) +8 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2322]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault:
- shard-adlp: NOTRUN -> [SKIP][188] ([Intel XE#288]) +41 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html
* igt@xe_exec_fault_mode@many-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#288]) +19 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2360])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
- shard-adlp: NOTRUN -> [SKIP][191] ([Intel XE#2360])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#4943]) +11 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock:
- shard-adlp: NOTRUN -> [SKIP][193] ([Intel XE#4915]) +404 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock.html
* igt@xe_exec_system_allocator@many-stride-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#4943]) +11 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-3/igt@xe_exec_system_allocator@many-stride-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#4915]) +212 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][196] ([Intel XE#4911])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][197] ([Intel XE#2229])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@mmio-triggered-reports:
- shard-adlp: NOTRUN -> [SKIP][198] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][200] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-adlp: NOTRUN -> [SKIP][202] ([Intel XE#1337])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-3/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-adlp: NOTRUN -> [SKIP][203] ([Intel XE#979])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-adlp: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@xe_pm@d3cold-multiple-execs.html
- shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#2284] / [Intel XE#366])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2284]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][208] -> [SKIP][209] ([Intel XE#4208]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-bmg: [PASS][210] -> [INCOMPLETE][211] ([Intel XE#569])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-multiple-execs:
- shard-adlp: [PASS][212] -> [ABORT][213] ([Intel XE#1794])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-8/igt@xe_pm@s4-multiple-execs.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#4650])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#4650])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#4650])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_prime_self_import@basic-with_one_bo:
- shard-dg2-set2: NOTRUN -> [ABORT][217] ([Intel XE#5247])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@xe_prime_self_import@basic-with_one_bo.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#4733]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#4733])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][220] ([Intel XE#4733]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#944]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#944])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#944]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-adlp: NOTRUN -> [SKIP][224] ([Intel XE#944]) +6 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-6/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_render_copy@render-stress-0-copies:
- shard-adlp: NOTRUN -> [SKIP][225] ([Intel XE#4814])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@xe_render_copy@render-stress-0-copies.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-adlp: NOTRUN -> [SKIP][226] ([Intel XE#4821])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#4130])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-adlp: NOTRUN -> [ABORT][228] ([Intel XE#5214]) +6 other tests abort
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: NOTRUN -> [DMESG-FAIL][229] ([Intel XE#5237]) +1 other test dmesg-fail
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-1/igt@xe_sriov_scheduling@equal-throughput.html
- shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#4351])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-adlp: [DMESG-FAIL][231] ([Intel XE#4543]) -> [PASS][232] +3 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][233] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][235] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][237] ([Intel XE#2291]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [FAIL][239] ([Intel XE#301]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [FAIL][241] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][242] +2 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][243] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-bmg: [INCOMPLETE][245] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-bmg: [FAIL][247] ([Intel XE#2882]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][249] ([Intel XE#886]) -> [PASS][250] +4 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-adlp: [FAIL][251] ([Intel XE#2882]) -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-adlp: [DMESG-FAIL][253] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][254] +1 other test pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][255] ([Intel XE#616]) -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-436/igt@kms_plane_cursor@viewport.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][257] ([Intel XE#2571]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][259] ([Intel XE#718]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [FAIL][261] ([Intel XE#4741]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][263] ([Intel XE#4692]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][265] ([Intel XE#1435]) -> [PASS][266] +2 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][267] ([Intel XE#5018]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][269] ([Intel XE#316]) -> [SKIP][270] ([Intel XE#4208])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-bmg: [SKIP][271] ([Intel XE#2327]) -> [SKIP][272] ([Intel XE#2231])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][273] ([Intel XE#2328]) -> [SKIP][274] ([Intel XE#2231])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
- shard-dg2-set2: [SKIP][275] ([Intel XE#619]) -> [SKIP][276] ([Intel XE#2351] / [Intel XE#4208])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][277] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][278] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][279] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][280] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][281] ([Intel XE#1188]) -> [SKIP][282] ([Intel XE#2341])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-1/igt@kms_content_protection@uevent.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][283] ([Intel XE#701]) -> [SKIP][284] ([Intel XE#4208] / [i915#2575])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-464/igt@kms_feature_discovery@chamelium.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][285] ([Intel XE#2312]) -> [SKIP][286] ([Intel XE#2311]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][287] ([Intel XE#2311]) -> [SKIP][288] ([Intel XE#2312]) +10 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][289] ([Intel XE#4141]) -> [SKIP][290] ([Intel XE#2312]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][291] ([Intel XE#4141]) -> [SKIP][292] ([Intel XE#2231])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][293] ([Intel XE#2312]) -> [SKIP][294] ([Intel XE#4141]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][295] ([Intel XE#651]) -> [SKIP][296] ([Intel XE#2351] / [Intel XE#4208])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
- shard-bmg: [SKIP][297] ([Intel XE#2311]) -> [SKIP][298] ([Intel XE#2231])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-bmg: [SKIP][299] ([Intel XE#2313]) -> [SKIP][300] ([Intel XE#2231])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
- shard-dg2-set2: [SKIP][301] ([Intel XE#653]) -> [SKIP][302] ([Intel XE#4208])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][303] ([Intel XE#2313]) -> [SKIP][304] ([Intel XE#2312]) +7 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][305] ([Intel XE#2312]) -> [SKIP][306] ([Intel XE#2313]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][307] ([Intel XE#4596]) -> [SKIP][308] ([Intel XE#5021])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][309] ([Intel XE#5021]) -> [SKIP][310] ([Intel XE#4596])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [FAIL][311] ([Intel XE#3325]) -> [SKIP][312] ([Intel XE#734])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][313] ([Intel XE#2893] / [Intel XE#4608]) -> [SKIP][314] ([Intel XE#1489])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][315] ([Intel XE#1489]) -> [SKIP][316] ([Intel XE#2231])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-dg2-set2: [SKIP][317] ([Intel XE#1489]) -> [SKIP][318] ([Intel XE#4208])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][319] ([Intel XE#2426]) -> [FAIL][320] ([Intel XE#1729])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: [SKIP][321] ([Intel XE#288]) -> [SKIP][322] ([Intel XE#4208]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_system_allocator@process-many-execqueues-new-bo-map-nomemset:
- shard-dg2-set2: [SKIP][323] ([Intel XE#4915]) -> [SKIP][324] ([Intel XE#4208]) +6 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-435/igt@xe_exec_system_allocator@process-many-execqueues-new-bo-map-nomemset.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_exec_system_allocator@process-many-execqueues-new-bo-map-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-bmg: [ABORT][325] ([Intel XE#4911]) -> [INCOMPLETE][326] ([Intel XE#4911])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][327] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][328] ([Intel XE#4208])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-dg2-433/igt@xe_oa@polling-small-buf.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-dg2-435/igt@xe_oa@polling-small-buf.html
* igt@xe_pmu@engine-activity-most-load-idle:
- shard-adlp: [ABORT][329] ([Intel XE#5214]) -> [DMESG-WARN][330] ([Intel XE#5214]) +2 other tests dmesg-warn
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6/shard-adlp-2/igt@xe_pmu@engine-activity-most-load-idle.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/shard-adlp-2/igt@xe_pmu@engine-activity-most-load-idle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1341
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[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#3576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3576
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4056]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4056
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911
[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#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
[Intel XE#5237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5237
[Intel XE#5247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5247
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8409 -> IGT_8410
* Linux: xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6 -> xe-pw-149856v3
IGT_8409: 47d092f112d138977837666b161c97032c3446cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8410: 5826cdbf1cb8f5ec8a42bae33deb6b2b63e59e6e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3244-1eb0e9ebd86a603c0d83e641c5e543606d175bc6: 1eb0e9ebd86a603c0d83e641c5e543606d175bc6
xe-pw-149856v3: 149856v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-149856v3/index.html
[-- Attachment #2: Type: text/html, Size: 113823 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-06-14 6:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-12 22:09 [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Zhanjun Dong
2025-06-13 4:16 ` ✓ CI.KUnit: success for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
2025-06-13 5:13 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-06-13 14:32 ` [PATCH v4] drm/xe/guc: Set wedged on Xe micro hardware initialization error Michal Wajdeczko
2025-06-13 16:30 ` Dong, Zhanjun
2025-06-14 6:50 ` ✗ Xe.CI.Full: failure for drm/xe/guc: Set wedged on Xe micro hardware initialization error (rev3) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox