* [PATCH v2] drm/i915/display: Use static values for min_hblank
@ 2025-06-24 9:59 Arun R Murthy
2025-06-24 12:04 ` Imre Deak
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arun R Murthy @ 2025-06-24 9:59 UTC (permalink / raw)
To: jani.nikula, intel-gfx, intel-xe; +Cc: Imre Deak, Arun R Murthy
Use recommended static values as per wa_14021694213 for min_hblank to
avoid underruns.
v2: corrected checkpatch warning and retain the restriction for
min_hblank (Jani)
Bspec: 74379
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
---
Changes in v2:
- EDITME: describe what is new in this series revision.
- EDITME: use bulletpoints and terse descriptions.
- Link to v1: https://lore.kernel.org/r/20250624-min_hblank-v1-1-5c100e4a8b05@intel.com
---
drivers/gpu/drm/i915/display/intel_dp.c | 62 ++++++---------------------------
1 file changed, 10 insertions(+), 52 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index f48912f308df7fd26c9d089e8f1bd096bfc8df95..b657340648cd2be72cec3fae606c0bc2ec8dba3d 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3115,22 +3115,7 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
const struct drm_connector_state *conn_state)
{
struct intel_display *display = to_intel_display(crtc_state);
- const struct drm_display_mode *adjusted_mode =
- &crtc_state->hw.adjusted_mode;
- struct intel_connector *connector = to_intel_connector(conn_state->connector);
- int symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8;
- /*
- * min symbol cycles is 3(BS,VBID, BE) for 128b/132b and
- * 5(BS, VBID, MVID, MAUD, BE) for 8b/10b
- */
- int min_sym_cycles = intel_dp_is_uhbr(crtc_state) ? 3 : 5;
bool is_mst = intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DP_MST);
- int num_joined_pipes = intel_crtc_num_joined_pipes(crtc_state);
- int min_hblank;
- int max_lane_count = 4;
- int hactive_sym_cycles, htotal_sym_cycles;
- int dsc_slices = 0;
- int link_bpp_x16;
if (DISPLAY_VER(display) < 30)
return 0;
@@ -3139,45 +3124,18 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
if (!is_mst && !intel_dp_is_uhbr(crtc_state))
return 0;
- if (crtc_state->dsc.compression_enable) {
- dsc_slices = intel_dp_dsc_get_slice_count(connector,
- adjusted_mode->crtc_clock,
- adjusted_mode->crtc_hdisplay,
- num_joined_pipes);
- if (!dsc_slices) {
- drm_dbg(display->drm, "failed to calculate dsc slice count\n");
- return -EINVAL;
- }
+ /* min_hblank formula is undergoing a change and the recomendation is to use static value */
+ if (intel_dp_is_uhbr(crtc_state)) {
+ if (crtc_state->dsc.compression_enable &&
+ crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
+ crtc_state->pipe_bpp == 18)
+ crtc_state->min_hblank = 2;
+ else
+ crtc_state->min_hblank = 3;
+ } else {
+ crtc_state->min_hblank = 10;
}
- if (crtc_state->dsc.compression_enable)
- link_bpp_x16 = crtc_state->dsc.compressed_bpp_x16;
- else
- link_bpp_x16 = fxp_q4_from_int(intel_dp_output_bpp(crtc_state->output_format,
- crtc_state->pipe_bpp));
-
- /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */
- hactive_sym_cycles = drm_dp_link_symbol_cycles(max_lane_count,
- adjusted_mode->hdisplay,
- dsc_slices,
- link_bpp_x16,
- symbol_size, is_mst);
- htotal_sym_cycles = adjusted_mode->htotal * hactive_sym_cycles /
- adjusted_mode->hdisplay;
-
- min_hblank = htotal_sym_cycles - hactive_sym_cycles;
- /* minimum Hblank calculation: https://groups.vesa.org/wg/DP/document/20494 */
- min_hblank = max(min_hblank, min_sym_cycles);
-
- /*
- * adjust the BlankingStart/BlankingEnd framing control from
- * the calculated value
- */
- min_hblank = min_hblank - 2;
-
- min_hblank = min(10, min_hblank);
- crtc_state->min_hblank = min_hblank;
-
return 0;
}
---
base-commit: da56936fad6f5e1d5f0cef8b50277bfb071eefe7
change-id: 20250624-min_hblank-8af8d2626ff8
Best regards,
--
Arun R Murthy <arun.r.murthy@intel.com>
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v2] drm/i915/display: Use static values for min_hblank 2025-06-24 9:59 [PATCH v2] drm/i915/display: Use static values for min_hblank Arun R Murthy @ 2025-06-24 12:04 ` Imre Deak 2025-06-24 15:52 ` ✓ CI.KUnit: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Imre Deak @ 2025-06-24 12:04 UTC (permalink / raw) To: Arun R Murthy; +Cc: jani.nikula, intel-gfx, intel-xe On Tue, Jun 24, 2025 at 03:29:27PM +0530, Arun R Murthy wrote: > Use recommended static values as per wa_14021694213 for min_hblank to > avoid underruns. > > v2: corrected checkpatch warning and retain the restriction for > min_hblank (Jani) > > Bspec: 74379 > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com> > --- > Changes in v2: > - EDITME: describe what is new in this series revision. > - EDITME: use bulletpoints and terse descriptions. > - Link to v1: https://lore.kernel.org/r/20250624-min_hblank-v1-1-5c100e4a8b05@intel.com > --- > drivers/gpu/drm/i915/display/intel_dp.c | 62 ++++++--------------------------- > 1 file changed, 10 insertions(+), 52 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index f48912f308df7fd26c9d089e8f1bd096bfc8df95..b657340648cd2be72cec3fae606c0bc2ec8dba3d 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -3115,22 +3115,7 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state, > const struct drm_connector_state *conn_state) > { > struct intel_display *display = to_intel_display(crtc_state); > - const struct drm_display_mode *adjusted_mode = > - &crtc_state->hw.adjusted_mode; > - struct intel_connector *connector = to_intel_connector(conn_state->connector); > - int symbol_size = intel_dp_is_uhbr(crtc_state) ? 32 : 8; > - /* > - * min symbol cycles is 3(BS,VBID, BE) for 128b/132b and > - * 5(BS, VBID, MVID, MAUD, BE) for 8b/10b > - */ > - int min_sym_cycles = intel_dp_is_uhbr(crtc_state) ? 3 : 5; > bool is_mst = intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DP_MST); > - int num_joined_pipes = intel_crtc_num_joined_pipes(crtc_state); > - int min_hblank; > - int max_lane_count = 4; > - int hactive_sym_cycles, htotal_sym_cycles; > - int dsc_slices = 0; > - int link_bpp_x16; > > if (DISPLAY_VER(display) < 30) > return 0; > @@ -3139,45 +3124,18 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state, > if (!is_mst && !intel_dp_is_uhbr(crtc_state)) > return 0; > > - if (crtc_state->dsc.compression_enable) { > - dsc_slices = intel_dp_dsc_get_slice_count(connector, > - adjusted_mode->crtc_clock, > - adjusted_mode->crtc_hdisplay, > - num_joined_pipes); > - if (!dsc_slices) { > - drm_dbg(display->drm, "failed to calculate dsc slice count\n"); > - return -EINVAL; > - } > + /* min_hblank formula is undergoing a change and the recomendation is to use static value */ > + if (intel_dp_is_uhbr(crtc_state)) { > + if (crtc_state->dsc.compression_enable && > + crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 && > + crtc_state->pipe_bpp == 18) > + crtc_state->min_hblank = 2; > + else > + crtc_state->min_hblank = 3; > + } else { > + crtc_state->min_hblank = 10; > } The min hblank programmed can't be higher than the hblank period of the mode. So the hblank symbol cycles for the mode should be still calculated as now and the above new limit of 2/3 cycles for UHBR should be used as needed for the upper bound of min_hblank below at min_hblank = min(10, min_hblank); instead of the fixed limit of 10 cycles. > > - if (crtc_state->dsc.compression_enable) > - link_bpp_x16 = crtc_state->dsc.compressed_bpp_x16; > - else > - link_bpp_x16 = fxp_q4_from_int(intel_dp_output_bpp(crtc_state->output_format, > - crtc_state->pipe_bpp)); > - > - /* Calculate min Hblank Link Layer Symbol Cycle Count for 8b/10b MST & 128b/132b */ > - hactive_sym_cycles = drm_dp_link_symbol_cycles(max_lane_count, > - adjusted_mode->hdisplay, > - dsc_slices, > - link_bpp_x16, > - symbol_size, is_mst); > - htotal_sym_cycles = adjusted_mode->htotal * hactive_sym_cycles / > - adjusted_mode->hdisplay; > - > - min_hblank = htotal_sym_cycles - hactive_sym_cycles; > - /* minimum Hblank calculation: https://groups.vesa.org/wg/DP/document/20494 */ > - min_hblank = max(min_hblank, min_sym_cycles); > - > - /* > - * adjust the BlankingStart/BlankingEnd framing control from > - * the calculated value > - */ > - min_hblank = min_hblank - 2; > - > - min_hblank = min(10, min_hblank); > - crtc_state->min_hblank = min_hblank; > - > return 0; > } > > > --- > base-commit: da56936fad6f5e1d5f0cef8b50277bfb071eefe7 > change-id: 20250624-min_hblank-8af8d2626ff8 > > Best regards, > -- > Arun R Murthy <arun.r.murthy@intel.com> > ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.KUnit: success for drm/i915/display: Use static values for min_hblank 2025-06-24 9:59 [PATCH v2] drm/i915/display: Use static values for min_hblank Arun R Murthy 2025-06-24 12:04 ` Imre Deak @ 2025-06-24 15:52 ` Patchwork 2025-06-24 16:48 ` ✓ Xe.CI.BAT: " Patchwork 2025-06-25 11:11 ` ✗ Xe.CI.Full: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-24 15:52 UTC (permalink / raw) To: Murthy, Arun R; +Cc: intel-xe == Series Details == Series: drm/i915/display: Use static values for min_hblank URL : https://patchwork.freedesktop.org/series/150683/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [15:51:25] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [15:51:30] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [15:51:56] Starting KUnit Kernel (1/1)... [15:51:56] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [15:51:57] ================== guc_buf (11 subtests) =================== [15:51:57] [PASSED] test_smallest [15:51:57] [PASSED] test_largest [15:51:57] [PASSED] test_granular [15:51:57] [PASSED] test_unique [15:51:57] [PASSED] test_overlap [15:51:57] [PASSED] test_reusable [15:51:57] [PASSED] test_too_big [15:51:57] [PASSED] test_flush [15:51:57] [PASSED] test_lookup [15:51:57] [PASSED] test_data [15:51:57] [PASSED] test_class [15:51:57] ===================== [PASSED] guc_buf ===================== [15:51:57] =================== guc_dbm (7 subtests) =================== [15:51:57] [PASSED] test_empty [15:51:57] [PASSED] test_default [15:51:57] ======================== test_size ======================== [15:51:57] [PASSED] 4 [15:51:57] [PASSED] 8 [15:51:57] [PASSED] 32 [15:51:57] [PASSED] 256 [15:51:57] ==================== [PASSED] test_size ==================== [15:51:57] ======================= test_reuse ======================== [15:51:57] [PASSED] 4 [15:51:57] [PASSED] 8 [15:51:57] [PASSED] 32 [15:51:57] [PASSED] 256 [15:51:57] =================== [PASSED] test_reuse ==================== [15:51:57] =================== test_range_overlap ==================== [15:51:57] [PASSED] 4 [15:51:57] [PASSED] 8 [15:51:57] [PASSED] 32 [15:51:57] [PASSED] 256 [15:51:57] =============== [PASSED] test_range_overlap ================ [15:51:57] =================== test_range_compact ==================== [15:51:57] [PASSED] 4 [15:51:57] [PASSED] 8 [15:51:57] [PASSED] 32 [15:51:57] [PASSED] 256 [15:51:57] =============== [PASSED] test_range_compact ================ [15:51:57] ==================== test_range_spare ===================== [15:51:57] [PASSED] 4 [15:51:57] [PASSED] 8 [15:51:57] [PASSED] 32 [15:51:57] [PASSED] 256 [15:51:57] ================ [PASSED] test_range_spare ================= [15:51:57] ===================== [PASSED] guc_dbm ===================== [15:51:57] =================== guc_idm (6 subtests) =================== [15:51:57] [PASSED] bad_init [15:51:57] [PASSED] no_init [15:51:57] [PASSED] init_fini [15:51:57] [PASSED] check_used [15:51:57] [PASSED] check_quota [15:51:57] [PASSED] check_all [15:51:57] ===================== [PASSED] guc_idm ===================== [15:51:57] ================== no_relay (3 subtests) =================== [15:51:57] [PASSED] xe_drops_guc2pf_if_not_ready [15:51:57] [PASSED] xe_drops_guc2vf_if_not_ready [15:51:57] [PASSED] xe_rejects_send_if_not_ready [15:51:57] ==================== [PASSED] no_relay ===================== [15:51:57] ================== pf_relay (14 subtests) ================== [15:51:57] [PASSED] pf_rejects_guc2pf_too_short [15:51:57] [PASSED] pf_rejects_guc2pf_too_long [15:51:57] [PASSED] pf_rejects_guc2pf_no_payload [15:51:57] [PASSED] pf_fails_no_payload [15:51:57] [PASSED] pf_fails_bad_origin [15:51:57] [PASSED] pf_fails_bad_type [15:51:57] [PASSED] pf_txn_reports_error [15:51:57] [PASSED] pf_txn_sends_pf2guc [15:51:57] [PASSED] pf_sends_pf2guc [15:51:57] [SKIPPED] pf_loopback_nop [15:51:57] [SKIPPED] pf_loopback_echo [15:51:57] [SKIPPED] pf_loopback_fail [15:51:57] [SKIPPED] pf_loopback_busy [15:51:57] [SKIPPED] pf_loopback_retry [15:51:57] ==================== [PASSED] pf_relay ===================== [15:51:57] ================== vf_relay (3 subtests) =================== [15:51:57] [PASSED] vf_rejects_guc2vf_too_short [15:51:57] [PASSED] vf_rejects_guc2vf_too_long [15:51:57] [PASSED] vf_rejects_guc2vf_no_payload [15:51:57] ==================== [PASSED] vf_relay ===================== [15:51:57] ================= pf_service (11 subtests) ================= [15:51:57] [PASSED] pf_negotiate_any [15:51:57] [PASSED] pf_negotiate_base_match [15:51:57] [PASSED] pf_negotiate_base_newer [15:51:57] [PASSED] pf_negotiate_base_next [15:51:57] [SKIPPED] pf_negotiate_base_older [15:51:57] [PASSED] pf_negotiate_base_prev [15:51:57] [PASSED] pf_negotiate_latest_match [15:51:57] [PASSED] pf_negotiate_latest_newer [15:51:57] [PASSED] pf_negotiate_latest_next [15:51:57] [SKIPPED] pf_negotiate_latest_older [15:51:57] [SKIPPED] pf_negotiate_latest_prev [15:51:57] =================== [PASSED] pf_service ==================== [15:51:57] ===================== lmtt (1 subtest) ===================== [15:51:57] ======================== test_ops ========================= [15:51:57] [PASSED] 2-level [15:51:57] [PASSED] multi-level [15:51:57] ==================== [PASSED] test_ops ===================== [15:51:57] ====================== [PASSED] lmtt ======================= [15:51:57] =================== xe_mocs (2 subtests) =================== [15:51:57] ================ xe_live_mocs_kernel_kunit ================ [15:51:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [15:51:57] ================ xe_live_mocs_reset_kunit ================= [15:51:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [15:51:57] ==================== [SKIPPED] xe_mocs ===================== [15:51:57] ================= xe_migrate (2 subtests) ================== [15:51:57] ================= xe_migrate_sanity_kunit ================= [15:51:57] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [15:51:57] ================== xe_validate_ccs_kunit ================== [15:51:57] ============= [SKIPPED] xe_validate_ccs_kunit ============== [15:51:57] =================== [SKIPPED] xe_migrate =================== [15:51:57] ================== xe_dma_buf (1 subtest) ================== [15:51:57] ==================== xe_dma_buf_kunit ===================== [15:51:57] ================ [SKIPPED] xe_dma_buf_kunit ================ [15:51:57] =================== [SKIPPED] xe_dma_buf =================== [15:51:57] ================= xe_bo_shrink (1 subtest) ================= [15:51:57] =================== xe_bo_shrink_kunit ==================== [15:51:57] =============== [SKIPPED] xe_bo_shrink_kunit =============== [15:51:57] ================== [SKIPPED] xe_bo_shrink ================== [15:51:57] ==================== xe_bo (2 subtests) ==================== [15:51:57] ================== xe_ccs_migrate_kunit =================== [15:51:57] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [15:51:57] ==================== xe_bo_evict_kunit ==================== [15:51:57] =============== [SKIPPED] xe_bo_evict_kunit ================ [15:51:57] ===================== [SKIPPED] xe_bo ====================== [15:51:57] ==================== args (11 subtests) ==================== [15:51:57] [PASSED] count_args_test [15:51:57] [PASSED] call_args_example [15:51:57] [PASSED] call_args_test [15:51:57] [PASSED] drop_first_arg_example [15:51:57] [PASSED] drop_first_arg_test [15:51:57] [PASSED] first_arg_example [15:51:57] [PASSED] first_arg_test [15:51:57] [PASSED] last_arg_example [15:51:57] [PASSED] last_arg_test [15:51:57] [PASSED] pick_arg_example [15:51:57] [PASSED] sep_comma_example [15:51:57] ====================== [PASSED] args ======================= [15:51:57] =================== xe_pci (2 subtests) ==================== [15:51:57] ==================== check_graphics_ip ==================== [15:51:57] [PASSED] 12.70 Xe_LPG [15:51:57] [PASSED] 12.71 Xe_LPG [15:51:57] [PASSED] 12.74 Xe_LPG+ [15:51:57] [PASSED] 20.01 Xe2_HPG [15:51:57] [PASSED] 20.02 Xe2_HPG [15:51:57] [PASSED] 20.04 Xe2_LPG [15:51:57] [PASSED] 30.00 Xe3_LPG [15:51:57] [PASSED] 30.01 Xe3_LPG [15:51:57] [PASSED] 30.03 Xe3_LPG [15:51:57] ================ [PASSED] check_graphics_ip ================ [15:51:57] ===================== check_media_ip ====================== [15:51:57] [PASSED] 13.00 Xe_LPM+ [15:51:57] [PASSED] 13.01 Xe2_HPM [15:51:57] [PASSED] 20.00 Xe2_LPM [15:51:57] [PASSED] 30.00 Xe3_LPM [15:51:57] [PASSED] 30.02 Xe3_LPM stty: 'standard input': Inappropriate ioctl for device [15:51:57] ================= [PASSED] check_media_ip ================== [15:51:57] ===================== [PASSED] xe_pci ====================== [15:51:57] =================== xe_rtp (2 subtests) ==================== [15:51:57] =============== xe_rtp_process_to_sr_tests ================ [15:51:57] [PASSED] coalesce-same-reg [15:51:57] [PASSED] no-match-no-add [15:51:57] [PASSED] match-or [15:51:57] [PASSED] match-or-xfail [15:51:57] [PASSED] no-match-no-add-multiple-rules [15:51:57] [PASSED] two-regs-two-entries [15:51:57] [PASSED] clr-one-set-other [15:51:57] [PASSED] set-field [15:51:57] [PASSED] conflict-duplicate [15:51:57] [PASSED] conflict-not-disjoint [15:51:57] [PASSED] conflict-reg-type [15:51:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [15:51:57] ================== xe_rtp_process_tests =================== [15:51:57] [PASSED] active1 [15:51:57] [PASSED] active2 [15:51:57] [PASSED] active-inactive [15:51:57] [PASSED] inactive-active [15:51:57] [PASSED] inactive-1st_or_active-inactive [15:51:57] [PASSED] inactive-2nd_or_active-inactive [15:51:57] [PASSED] inactive-last_or_active-inactive [15:51:57] [PASSED] inactive-no_or_active-inactive [15:51:57] ============== [PASSED] xe_rtp_process_tests =============== [15:51:57] ===================== [PASSED] xe_rtp ====================== [15:51:57] ==================== xe_wa (1 subtest) ===================== [15:51:57] ======================== xe_wa_gt ========================= [15:51:57] [PASSED] TIGERLAKE (B0) [15:51:57] [PASSED] DG1 (A0) [15:51:57] [PASSED] DG1 (B0) [15:51:57] [PASSED] ALDERLAKE_S (A0) [15:51:57] [PASSED] ALDERLAKE_S (B0) [15:51:57] [PASSED] ALDERLAKE_S (C0) [15:51:57] [PASSED] ALDERLAKE_S (D0) [15:51:57] [PASSED] ALDERLAKE_P (A0) [15:51:57] [PASSED] ALDERLAKE_P (B0) [15:51:57] [PASSED] ALDERLAKE_P (C0) [15:51:57] [PASSED] ALDERLAKE_S_RPLS (D0) [15:51:57] [PASSED] ALDERLAKE_P_RPLU (E0) [15:51:57] [PASSED] DG2_G10 (C0) [15:51:57] [PASSED] DG2_G11 (B1) [15:51:57] [PASSED] DG2_G12 (A1) [15:51:57] [PASSED] METEORLAKE (g:A0, m:A0) [15:51:57] [PASSED] METEORLAKE (g:A0, m:A0) [15:51:57] [PASSED] METEORLAKE (g:A0, m:A0) [15:51:57] [PASSED] LUNARLAKE (g:A0, m:A0) [15:51:57] [PASSED] LUNARLAKE (g:B0, m:A0) [15:51:57] [PASSED] BATTLEMAGE (g:A0, m:A1) [15:51:57] ==================== [PASSED] xe_wa_gt ===================== [15:51:57] ====================== [PASSED] xe_wa ====================== [15:51:57] ============================================================ [15:51:57] Testing complete. Ran 145 tests: passed: 129, skipped: 16 [15:51:57] Elapsed time: 31.335s total, 4.107s configuring, 26.910s building, 0.290s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [15:51:57] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [15:51:58] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [15:52:20] Starting KUnit Kernel (1/1)... [15:52:20] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [15:52:20] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [15:52:20] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [15:52:20] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [15:52:20] =========== drm_validate_clone_mode (2 subtests) =========== [15:52:20] ============== drm_test_check_in_clone_mode =============== [15:52:20] [PASSED] in_clone_mode [15:52:20] [PASSED] not_in_clone_mode [15:52:20] ========== [PASSED] drm_test_check_in_clone_mode =========== [15:52:20] =============== drm_test_check_valid_clones =============== [15:52:20] [PASSED] not_in_clone_mode [15:52:20] [PASSED] valid_clone [15:52:20] [PASSED] invalid_clone [15:52:20] =========== [PASSED] drm_test_check_valid_clones =========== [15:52:20] ============= [PASSED] drm_validate_clone_mode ============= [15:52:20] ============= drm_validate_modeset (1 subtest) ============= [15:52:20] [PASSED] drm_test_check_connector_changed_modeset [15:52:20] ============== [PASSED] drm_validate_modeset =============== [15:52:20] ====== drm_test_bridge_get_current_state (2 subtests) ====== [15:52:20] [PASSED] drm_test_drm_bridge_get_current_state_atomic [15:52:20] [PASSED] drm_test_drm_bridge_get_current_state_legacy [15:52:20] ======== [PASSED] drm_test_bridge_get_current_state ======== [15:52:20] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [15:52:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [15:52:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [15:52:20] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [15:52:20] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [15:52:20] ============== drm_bridge_alloc (2 subtests) =============== [15:52:20] [PASSED] drm_test_drm_bridge_alloc_basic [15:52:20] [PASSED] drm_test_drm_bridge_alloc_get_put [15:52:20] ================ [PASSED] drm_bridge_alloc ================= [15:52:20] ================== drm_buddy (7 subtests) ================== [15:52:20] [PASSED] drm_test_buddy_alloc_limit [15:52:20] [PASSED] drm_test_buddy_alloc_optimistic [15:52:20] [PASSED] drm_test_buddy_alloc_pessimistic [15:52:20] [PASSED] drm_test_buddy_alloc_pathological [15:52:20] [PASSED] drm_test_buddy_alloc_contiguous [15:52:20] [PASSED] drm_test_buddy_alloc_clear [15:52:20] [PASSED] drm_test_buddy_alloc_range_bias [15:52:20] ==================== [PASSED] drm_buddy ==================== [15:52:20] ============= drm_cmdline_parser (40 subtests) ============= [15:52:20] [PASSED] drm_test_cmdline_force_d_only [15:52:20] [PASSED] drm_test_cmdline_force_D_only_dvi [15:52:20] [PASSED] drm_test_cmdline_force_D_only_hdmi [15:52:20] [PASSED] drm_test_cmdline_force_D_only_not_digital [15:52:20] [PASSED] drm_test_cmdline_force_e_only [15:52:20] [PASSED] drm_test_cmdline_res [15:52:20] [PASSED] drm_test_cmdline_res_vesa [15:52:20] [PASSED] drm_test_cmdline_res_vesa_rblank [15:52:20] [PASSED] drm_test_cmdline_res_rblank [15:52:20] [PASSED] drm_test_cmdline_res_bpp [15:52:20] [PASSED] drm_test_cmdline_res_refresh [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [15:52:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [15:52:20] [PASSED] drm_test_cmdline_res_margins_force_on [15:52:20] [PASSED] drm_test_cmdline_res_vesa_margins [15:52:20] [PASSED] drm_test_cmdline_name [15:52:20] [PASSED] drm_test_cmdline_name_bpp [15:52:20] [PASSED] drm_test_cmdline_name_option [15:52:20] [PASSED] drm_test_cmdline_name_bpp_option [15:52:20] [PASSED] drm_test_cmdline_rotate_0 [15:52:20] [PASSED] drm_test_cmdline_rotate_90 [15:52:20] [PASSED] drm_test_cmdline_rotate_180 [15:52:20] [PASSED] drm_test_cmdline_rotate_270 [15:52:20] [PASSED] drm_test_cmdline_hmirror [15:52:20] [PASSED] drm_test_cmdline_vmirror [15:52:20] [PASSED] drm_test_cmdline_margin_options [15:52:20] [PASSED] drm_test_cmdline_multiple_options [15:52:20] [PASSED] drm_test_cmdline_bpp_extra_and_option [15:52:20] [PASSED] drm_test_cmdline_extra_and_option [15:52:20] [PASSED] drm_test_cmdline_freestanding_options [15:52:20] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [15:52:20] [PASSED] drm_test_cmdline_panel_orientation [15:52:20] ================ drm_test_cmdline_invalid ================= [15:52:20] [PASSED] margin_only [15:52:20] [PASSED] interlace_only [15:52:20] [PASSED] res_missing_x [15:52:20] [PASSED] res_missing_y [15:52:20] [PASSED] res_bad_y [15:52:20] [PASSED] res_missing_y_bpp [15:52:20] [PASSED] res_bad_bpp [15:52:20] [PASSED] res_bad_refresh [15:52:20] [PASSED] res_bpp_refresh_force_on_off [15:52:20] [PASSED] res_invalid_mode [15:52:20] [PASSED] res_bpp_wrong_place_mode [15:52:20] [PASSED] name_bpp_refresh [15:52:20] [PASSED] name_refresh [15:52:20] [PASSED] name_refresh_wrong_mode [15:52:20] [PASSED] name_refresh_invalid_mode [15:52:20] [PASSED] rotate_multiple [15:52:20] [PASSED] rotate_invalid_val [15:52:20] [PASSED] rotate_truncated [15:52:20] [PASSED] invalid_option [15:52:20] [PASSED] invalid_tv_option [15:52:20] [PASSED] truncated_tv_option [15:52:20] ============ [PASSED] drm_test_cmdline_invalid ============= [15:52:20] =============== drm_test_cmdline_tv_options =============== [15:52:20] [PASSED] NTSC [15:52:20] [PASSED] NTSC_443 [15:52:20] [PASSED] NTSC_J [15:52:20] [PASSED] PAL [15:52:20] [PASSED] PAL_M [15:52:20] [PASSED] PAL_N [15:52:20] [PASSED] SECAM [15:52:20] [PASSED] MONO_525 [15:52:20] [PASSED] MONO_625 [15:52:20] =========== [PASSED] drm_test_cmdline_tv_options =========== [15:52:20] =============== [PASSED] drm_cmdline_parser ================ [15:52:20] ========== drmm_connector_hdmi_init (20 subtests) ========== [15:52:20] [PASSED] drm_test_connector_hdmi_init_valid [15:52:20] [PASSED] drm_test_connector_hdmi_init_bpc_8 [15:52:20] [PASSED] drm_test_connector_hdmi_init_bpc_10 [15:52:20] [PASSED] drm_test_connector_hdmi_init_bpc_12 [15:52:20] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [15:52:20] [PASSED] drm_test_connector_hdmi_init_bpc_null [15:52:20] [PASSED] drm_test_connector_hdmi_init_formats_empty [15:52:20] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [15:52:20] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [15:52:20] [PASSED] supported_formats=0x9 yuv420_allowed=1 [15:52:20] [PASSED] supported_formats=0x9 yuv420_allowed=0 [15:52:20] [PASSED] supported_formats=0x3 yuv420_allowed=1 [15:52:20] [PASSED] supported_formats=0x3 yuv420_allowed=0 [15:52:20] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [15:52:20] [PASSED] drm_test_connector_hdmi_init_null_ddc [15:52:20] [PASSED] drm_test_connector_hdmi_init_null_product [15:52:20] [PASSED] drm_test_connector_hdmi_init_null_vendor [15:52:20] [PASSED] drm_test_connector_hdmi_init_product_length_exact [15:52:20] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [15:52:20] [PASSED] drm_test_connector_hdmi_init_product_valid [15:52:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [15:52:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [15:52:20] [PASSED] drm_test_connector_hdmi_init_vendor_valid [15:52:20] ========= drm_test_connector_hdmi_init_type_valid ========= [15:52:20] [PASSED] HDMI-A [15:52:20] [PASSED] HDMI-B [15:52:20] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [15:52:20] ======== drm_test_connector_hdmi_init_type_invalid ======== [15:52:20] [PASSED] Unknown [15:52:20] [PASSED] VGA [15:52:20] [PASSED] DVI-I [15:52:20] [PASSED] DVI-D [15:52:20] [PASSED] DVI-A [15:52:20] [PASSED] Composite [15:52:20] [PASSED] SVIDEO [15:52:20] [PASSED] LVDS [15:52:20] [PASSED] Component [15:52:20] [PASSED] DIN [15:52:20] [PASSED] DP [15:52:20] [PASSED] TV [15:52:20] [PASSED] eDP [15:52:20] [PASSED] Virtual [15:52:20] [PASSED] DSI [15:52:20] [PASSED] DPI [15:52:20] [PASSED] Writeback [15:52:20] [PASSED] SPI [15:52:20] [PASSED] USB [15:52:20] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [15:52:20] ============ [PASSED] drmm_connector_hdmi_init ============= [15:52:20] ============= drmm_connector_init (3 subtests) ============= [15:52:20] [PASSED] drm_test_drmm_connector_init [15:52:20] [PASSED] drm_test_drmm_connector_init_null_ddc [15:52:20] ========= drm_test_drmm_connector_init_type_valid ========= [15:52:20] [PASSED] Unknown [15:52:20] [PASSED] VGA [15:52:20] [PASSED] DVI-I [15:52:20] [PASSED] DVI-D [15:52:20] [PASSED] DVI-A [15:52:20] [PASSED] Composite [15:52:20] [PASSED] SVIDEO [15:52:20] [PASSED] LVDS [15:52:20] [PASSED] Component [15:52:20] [PASSED] DIN [15:52:20] [PASSED] DP [15:52:20] [PASSED] HDMI-A [15:52:20] [PASSED] HDMI-B [15:52:20] [PASSED] TV [15:52:20] [PASSED] eDP [15:52:20] [PASSED] Virtual [15:52:20] [PASSED] DSI [15:52:20] [PASSED] DPI [15:52:20] [PASSED] Writeback [15:52:20] [PASSED] SPI [15:52:20] [PASSED] USB [15:52:20] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [15:52:20] =============== [PASSED] drmm_connector_init =============== [15:52:20] ========= drm_connector_dynamic_init (6 subtests) ========== [15:52:20] [PASSED] drm_test_drm_connector_dynamic_init [15:52:20] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [15:52:20] [PASSED] drm_test_drm_connector_dynamic_init_not_added [15:52:20] [PASSED] drm_test_drm_connector_dynamic_init_properties [15:52:20] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [15:52:20] [PASSED] Unknown [15:52:20] [PASSED] VGA [15:52:20] [PASSED] DVI-I [15:52:20] [PASSED] DVI-D [15:52:20] [PASSED] DVI-A [15:52:20] [PASSED] Composite [15:52:20] [PASSED] SVIDEO [15:52:20] [PASSED] LVDS [15:52:20] [PASSED] Component [15:52:20] [PASSED] DIN [15:52:20] [PASSED] DP [15:52:20] [PASSED] HDMI-A [15:52:20] [PASSED] HDMI-B [15:52:20] [PASSED] TV [15:52:20] [PASSED] eDP [15:52:20] [PASSED] Virtual [15:52:20] [PASSED] DSI [15:52:20] [PASSED] DPI [15:52:20] [PASSED] Writeback [15:52:20] [PASSED] SPI [15:52:20] [PASSED] USB [15:52:20] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [15:52:20] ======== drm_test_drm_connector_dynamic_init_name ========= [15:52:20] [PASSED] Unknown [15:52:20] [PASSED] VGA [15:52:20] [PASSED] DVI-I [15:52:20] [PASSED] DVI-D [15:52:20] [PASSED] DVI-A [15:52:20] [PASSED] Composite [15:52:20] [PASSED] SVIDEO [15:52:20] [PASSED] LVDS [15:52:20] [PASSED] Component [15:52:20] [PASSED] DIN [15:52:20] [PASSED] DP [15:52:20] [PASSED] HDMI-A [15:52:20] [PASSED] HDMI-B [15:52:20] [PASSED] TV [15:52:20] [PASSED] eDP [15:52:20] [PASSED] Virtual [15:52:20] [PASSED] DSI [15:52:20] [PASSED] DPI [15:52:20] [PASSED] Writeback [15:52:20] [PASSED] SPI [15:52:20] [PASSED] USB [15:52:20] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [15:52:20] =========== [PASSED] drm_connector_dynamic_init ============ [15:52:20] ==== drm_connector_dynamic_register_early (4 subtests) ===== [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [15:52:20] ====== [PASSED] drm_connector_dynamic_register_early ======= [15:52:20] ======= drm_connector_dynamic_register (7 subtests) ======== [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_on_list [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_no_init [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [15:52:20] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [15:52:20] ========= [PASSED] drm_connector_dynamic_register ========== [15:52:20] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [15:52:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [15:52:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [15:52:20] === [PASSED] drm_connector_attach_broadcast_rgb_property === [15:52:20] ========== drm_get_tv_mode_from_name (2 subtests) ========== [15:52:20] ========== drm_test_get_tv_mode_from_name_valid =========== [15:52:20] [PASSED] NTSC [15:52:20] [PASSED] NTSC-443 [15:52:20] [PASSED] NTSC-J [15:52:20] [PASSED] PAL [15:52:20] [PASSED] PAL-M [15:52:20] [PASSED] PAL-N [15:52:20] [PASSED] SECAM [15:52:20] [PASSED] Mono [15:52:20] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [15:52:20] [PASSED] drm_test_get_tv_mode_from_name_truncated [15:52:20] ============ [PASSED] drm_get_tv_mode_from_name ============ [15:52:20] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [15:52:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [15:52:20] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [15:52:20] [PASSED] VIC 96 [15:52:20] [PASSED] VIC 97 [15:52:20] [PASSED] VIC 101 [15:52:20] [PASSED] VIC 102 [15:52:20] [PASSED] VIC 106 [15:52:20] [PASSED] VIC 107 [15:52:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [15:52:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [15:52:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [15:52:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [15:52:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [15:52:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [15:52:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [15:52:20] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [15:52:20] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [15:52:20] [PASSED] Automatic [15:52:20] [PASSED] Full [15:52:20] [PASSED] Limited 16:235 [15:52:20] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [15:52:20] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [15:52:20] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [15:52:20] == drm_hdmi_connector_get_output_format_name (2 subtests) == [15:52:20] === drm_test_drm_hdmi_connector_get_output_format_name ==== [15:52:20] [PASSED] RGB [15:52:20] [PASSED] YUV 4:2:0 [15:52:20] [PASSED] YUV 4:2:2 [15:52:20] [PASSED] YUV 4:4:4 [15:52:20] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [15:52:20] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [15:52:20] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [15:52:20] ============= drm_damage_helper (21 subtests) ============== [15:52:20] [PASSED] drm_test_damage_iter_no_damage [15:52:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src [15:52:20] [PASSED] drm_test_damage_iter_no_damage_src_moved [15:52:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [15:52:20] [PASSED] drm_test_damage_iter_no_damage_not_visible [15:52:20] [PASSED] drm_test_damage_iter_no_damage_no_crtc [15:52:20] [PASSED] drm_test_damage_iter_no_damage_no_fb [15:52:20] [PASSED] drm_test_damage_iter_simple_damage [15:52:20] [PASSED] drm_test_damage_iter_single_damage [15:52:20] [PASSED] drm_test_damage_iter_single_damage_intersect_src [15:52:20] [PASSED] drm_test_damage_iter_single_damage_outside_src [15:52:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src [15:52:20] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [15:52:20] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [15:52:20] [PASSED] drm_test_damage_iter_single_damage_src_moved [15:52:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [15:52:20] [PASSED] drm_test_damage_iter_damage [15:52:20] [PASSED] drm_test_damage_iter_damage_one_intersect [15:52:20] [PASSED] drm_test_damage_iter_damage_one_outside [15:52:20] [PASSED] drm_test_damage_iter_damage_src_moved [15:52:20] [PASSED] drm_test_damage_iter_damage_not_visible [15:52:20] ================ [PASSED] drm_damage_helper ================ [15:52:20] ============== drm_dp_mst_helper (3 subtests) ============== [15:52:20] ============== drm_test_dp_mst_calc_pbn_mode ============== [15:52:20] [PASSED] Clock 154000 BPP 30 DSC disabled [15:52:20] [PASSED] Clock 234000 BPP 30 DSC disabled [15:52:20] [PASSED] Clock 297000 BPP 24 DSC disabled [15:52:20] [PASSED] Clock 332880 BPP 24 DSC enabled [15:52:20] [PASSED] Clock 324540 BPP 24 DSC enabled [15:52:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [15:52:20] ============== drm_test_dp_mst_calc_pbn_div =============== [15:52:20] [PASSED] Link rate 2000000 lane count 4 [15:52:20] [PASSED] Link rate 2000000 lane count 2 [15:52:20] [PASSED] Link rate 2000000 lane count 1 [15:52:20] [PASSED] Link rate 1350000 lane count 4 [15:52:20] [PASSED] Link rate 1350000 lane count 2 [15:52:20] [PASSED] Link rate 1350000 lane count 1 [15:52:20] [PASSED] Link rate 1000000 lane count 4 [15:52:20] [PASSED] Link rate 1000000 lane count 2 [15:52:20] [PASSED] Link rate 1000000 lane count 1 [15:52:20] [PASSED] Link rate 810000 lane count 4 [15:52:20] [PASSED] Link rate 810000 lane count 2 [15:52:20] [PASSED] Link rate 810000 lane count 1 [15:52:20] [PASSED] Link rate 540000 lane count 4 [15:52:20] [PASSED] Link rate 540000 lane count 2 [15:52:20] [PASSED] Link rate 540000 lane count 1 [15:52:20] [PASSED] Link rate 270000 lane count 4 [15:52:20] [PASSED] Link rate 270000 lane count 2 [15:52:20] [PASSED] Link rate 270000 lane count 1 [15:52:20] [PASSED] Link rate 162000 lane count 4 [15:52:20] [PASSED] Link rate 162000 lane count 2 [15:52:20] [PASSED] Link rate 162000 lane count 1 [15:52:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [15:52:20] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [15:52:20] [PASSED] DP_ENUM_PATH_RESOURCES with port number [15:52:20] [PASSED] DP_POWER_UP_PHY with port number [15:52:20] [PASSED] DP_POWER_DOWN_PHY with port number [15:52:20] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [15:52:20] [PASSED] DP_ALLOCATE_PAYLOAD with port number [15:52:20] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [15:52:20] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [15:52:20] [PASSED] DP_QUERY_PAYLOAD with port number [15:52:20] [PASSED] DP_QUERY_PAYLOAD with VCPI [15:52:20] [PASSED] DP_REMOTE_DPCD_READ with port number [15:52:20] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [15:52:20] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [15:52:20] [PASSED] DP_REMOTE_DPCD_WRITE with port number [15:52:20] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [15:52:20] [PASSED] DP_REMOTE_DPCD_WRITE with data array [15:52:20] [PASSED] DP_REMOTE_I2C_READ with port number [15:52:20] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [15:52:20] [PASSED] DP_REMOTE_I2C_READ with transactions array [15:52:20] [PASSED] DP_REMOTE_I2C_WRITE with port number [15:52:20] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [15:52:20] [PASSED] DP_REMOTE_I2C_WRITE with data array [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [15:52:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [15:52:20] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [15:52:20] ================ [PASSED] drm_dp_mst_helper ================ [15:52:20] ================== drm_exec (7 subtests) =================== [15:52:20] [PASSED] sanitycheck [15:52:20] [PASSED] test_lock [15:52:20] [PASSED] test_lock_unlock [15:52:20] [PASSED] test_duplicates [15:52:20] [PASSED] test_prepare [15:52:20] [PASSED] test_prepare_array [15:52:20] [PASSED] test_multiple_loops [15:52:20] ==================== [PASSED] drm_exec ===================== [15:52:20] =========== drm_format_helper_test (17 subtests) =========== [15:52:20] ============== drm_test_fb_xrgb8888_to_gray8 ============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [15:52:20] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [15:52:20] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [15:52:20] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [15:52:20] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [15:52:20] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [15:52:20] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [15:52:20] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [15:52:20] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [15:52:20] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [15:52:20] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [15:52:20] ============== drm_test_fb_xrgb8888_to_mono =============== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [15:52:20] ==================== drm_test_fb_swab ===================== [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ================ [PASSED] drm_test_fb_swab ================= [15:52:20] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [15:52:20] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [15:52:20] [PASSED] single_pixel_source_buffer [15:52:20] [PASSED] single_pixel_clip_rectangle [15:52:20] [PASSED] well_known_colors [15:52:20] [PASSED] destination_pitch [15:52:20] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [15:52:20] ================= drm_test_fb_clip_offset ================= [15:52:20] [PASSED] pass through [15:52:20] [PASSED] horizontal offset [15:52:20] [PASSED] vertical offset [15:52:20] [PASSED] horizontal and vertical offset [15:52:20] [PASSED] horizontal offset (custom pitch) [15:52:20] [PASSED] vertical offset (custom pitch) [15:52:20] [PASSED] horizontal and vertical offset (custom pitch) [15:52:20] ============= [PASSED] drm_test_fb_clip_offset ============= [15:52:20] =================== drm_test_fb_memcpy ==================== [15:52:20] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [15:52:20] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [15:52:20] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [15:52:20] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [15:52:20] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [15:52:20] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [15:52:20] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [15:52:20] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [15:52:20] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [15:52:20] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [15:52:20] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [15:52:20] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [15:52:20] =============== [PASSED] drm_test_fb_memcpy ================ [15:52:20] ============= [PASSED] drm_format_helper_test ============== [15:52:20] ================= drm_format (18 subtests) ================= [15:52:20] [PASSED] drm_test_format_block_width_invalid [15:52:20] [PASSED] drm_test_format_block_width_one_plane [15:52:20] [PASSED] drm_test_format_block_width_two_plane [15:52:20] [PASSED] drm_test_format_block_width_three_plane [15:52:20] [PASSED] drm_test_format_block_width_tiled [15:52:20] [PASSED] drm_test_format_block_height_invalid [15:52:20] [PASSED] drm_test_format_block_height_one_plane [15:52:20] [PASSED] drm_test_format_block_height_two_plane [15:52:20] [PASSED] drm_test_format_block_height_three_plane [15:52:20] [PASSED] drm_test_format_block_height_tiled [15:52:20] [PASSED] drm_test_format_min_pitch_invalid [15:52:20] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [15:52:20] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [15:52:20] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [15:52:20] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [15:52:20] [PASSED] drm_test_format_min_pitch_two_plane [15:52:20] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [15:52:20] [PASSED] drm_test_format_min_pitch_tiled [15:52:20] =================== [PASSED] drm_format ==================== [15:52:20] ============== drm_framebuffer (10 subtests) =============== [15:52:20] ========== drm_test_framebuffer_check_src_coords ========== [15:52:20] [PASSED] Success: source fits into fb [15:52:20] [PASSED] Fail: overflowing fb with x-axis coordinate [15:52:20] [PASSED] Fail: overflowing fb with y-axis coordinate [15:52:20] [PASSED] Fail: overflowing fb with source width [15:52:20] [PASSED] Fail: overflowing fb with source height [15:52:20] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [15:52:20] [PASSED] drm_test_framebuffer_cleanup [15:52:20] =============== drm_test_framebuffer_create =============== [15:52:20] [PASSED] ABGR8888 normal sizes [15:52:20] [PASSED] ABGR8888 max sizes [15:52:20] [PASSED] ABGR8888 pitch greater than min required [15:52:20] [PASSED] ABGR8888 pitch less than min required [15:52:20] [PASSED] ABGR8888 Invalid width [15:52:20] [PASSED] ABGR8888 Invalid buffer handle [15:52:20] [PASSED] No pixel format [15:52:20] [PASSED] ABGR8888 Width 0 [15:52:20] [PASSED] ABGR8888 Height 0 [15:52:20] [PASSED] ABGR8888 Out of bound height * pitch combination [15:52:20] [PASSED] ABGR8888 Large buffer offset [15:52:20] [PASSED] ABGR8888 Buffer offset for inexistent plane [15:52:20] [PASSED] ABGR8888 Invalid flag [15:52:20] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [15:52:20] [PASSED] ABGR8888 Valid buffer modifier [15:52:20] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [15:52:20] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] NV12 Normal sizes [15:52:20] [PASSED] NV12 Max sizes [15:52:20] [PASSED] NV12 Invalid pitch [15:52:20] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [15:52:20] [PASSED] NV12 different modifier per-plane [15:52:20] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [15:52:20] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] NV12 Modifier for inexistent plane [15:52:20] [PASSED] NV12 Handle for inexistent plane [15:52:20] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [15:52:20] [PASSED] YVU420 Normal sizes [15:52:20] [PASSED] YVU420 Max sizes [15:52:20] [PASSED] YVU420 Invalid pitch [15:52:20] [PASSED] YVU420 Different pitches [15:52:20] [PASSED] YVU420 Different buffer offsets/pitches [15:52:20] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [15:52:20] [PASSED] YVU420 Valid modifier [15:52:20] [PASSED] YVU420 Different modifiers per plane [15:52:20] [PASSED] YVU420 Modifier for inexistent plane [15:52:20] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [15:52:20] [PASSED] X0L2 Normal sizes [15:52:20] [PASSED] X0L2 Max sizes [15:52:20] [PASSED] X0L2 Invalid pitch [15:52:20] [PASSED] X0L2 Pitch greater than minimum required [15:52:20] [PASSED] X0L2 Handle for inexistent plane [15:52:20] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [15:52:20] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [15:52:20] [PASSED] X0L2 Valid modifier [15:52:20] [PASSED] X0L2 Modifier for inexistent plane [15:52:20] =========== [PASSED] drm_test_framebuffer_create =========== [15:52:20] [PASSED] drm_test_framebuffer_free [15:52:20] [PASSED] drm_test_framebuffer_init [15:52:20] [PASSED] drm_test_framebuffer_init_bad_format [15:52:20] [PASSED] drm_test_framebuffer_init_dev_mismatch [15:52:20] [PASSED] drm_test_framebuffer_lookup [15:52:20] [PASSED] drm_test_framebuffer_lookup_inexistent [15:52:20] [PASSED] drm_test_framebuffer_modifiers_not_supported [15:52:20] ================= [PASSED] drm_framebuffer ================= [15:52:20] ================ drm_gem_shmem (8 subtests) ================ [15:52:20] [PASSED] drm_gem_shmem_test_obj_create [15:52:20] [PASSED] drm_gem_shmem_test_obj_create_private [15:52:20] [PASSED] drm_gem_shmem_test_pin_pages [15:52:20] [PASSED] drm_gem_shmem_test_vmap [15:52:20] [PASSED] drm_gem_shmem_test_get_pages_sgt [15:52:20] [PASSED] drm_gem_shmem_test_get_sg_table [15:52:20] [PASSED] drm_gem_shmem_test_madvise [15:52:20] [PASSED] drm_gem_shmem_test_purge [15:52:20] ================== [PASSED] drm_gem_shmem ================== [15:52:20] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [15:52:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [15:52:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [15:52:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [15:52:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [15:52:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [15:52:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [15:52:20] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [15:52:20] [PASSED] Automatic [15:52:20] [PASSED] Full [15:52:20] [PASSED] Limited 16:235 [15:52:20] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [15:52:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [15:52:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [15:52:20] [PASSED] drm_test_check_disable_connector [15:52:20] [PASSED] drm_test_check_hdmi_funcs_reject_rate [15:52:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [15:52:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [15:52:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [15:52:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [15:52:20] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [15:52:20] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [15:52:20] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [15:52:20] [PASSED] drm_test_check_output_bpc_dvi [15:52:20] [PASSED] drm_test_check_output_bpc_format_vic_1 [15:52:20] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [15:52:20] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [15:52:20] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [15:52:20] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [15:52:20] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [15:52:20] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [15:52:20] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [15:52:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [15:52:20] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [15:52:20] [PASSED] drm_test_check_broadcast_rgb_value [15:52:20] [PASSED] drm_test_check_bpc_8_value [15:52:20] [PASSED] drm_test_check_bpc_10_value [15:52:20] [PASSED] drm_test_check_bpc_12_value [15:52:20] [PASSED] drm_test_check_format_value [15:52:20] [PASSED] drm_test_check_tmds_char_value [15:52:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [15:52:20] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [15:52:20] [PASSED] drm_test_check_mode_valid [15:52:20] [PASSED] drm_test_check_mode_valid_reject [15:52:20] [PASSED] drm_test_check_mode_valid_reject_rate [15:52:20] [PASSED] drm_test_check_mode_valid_reject_max_clock [15:52:20] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [15:52:20] ================= drm_managed (2 subtests) ================= [15:52:20] [PASSED] drm_test_managed_release_action [15:52:20] [PASSED] drm_test_managed_run_action [15:52:20] =================== [PASSED] drm_managed =================== [15:52:20] =================== drm_mm (6 subtests) ==================== [15:52:20] [PASSED] drm_test_mm_init [15:52:20] [PASSED] drm_test_mm_debug [15:52:20] [PASSED] drm_test_mm_align32 [15:52:20] [PASSED] drm_test_mm_align64 [15:52:20] [PASSED] drm_test_mm_lowest [15:52:20] [PASSED] drm_test_mm_highest [15:52:20] ===================== [PASSED] drm_mm ====================== [15:52:20] ============= drm_modes_analog_tv (5 subtests) ============= [15:52:20] [PASSED] drm_test_modes_analog_tv_mono_576i [15:52:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i [15:52:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [15:52:20] [PASSED] drm_test_modes_analog_tv_pal_576i [15:52:20] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [15:52:20] =============== [PASSED] drm_modes_analog_tv =============== [15:52:20] ============== drm_plane_helper (2 subtests) =============== [15:52:20] =============== drm_test_check_plane_state ================ [15:52:20] [PASSED] clipping_simple [15:52:20] [PASSED] clipping_rotate_reflect [15:52:20] [PASSED] positioning_simple [15:52:20] [PASSED] upscaling [15:52:20] [PASSED] downscaling [15:52:20] [PASSED] rounding1 [15:52:20] [PASSED] rounding2 [15:52:20] [PASSED] rounding3 [15:52:20] [PASSED] rounding4 [15:52:20] =========== [PASSED] drm_test_check_plane_state ============ [15:52:20] =========== drm_test_check_invalid_plane_state ============ [15:52:20] [PASSED] positioning_invalid [15:52:20] [PASSED] upscaling_invalid [15:52:20] [PASSED] downscaling_invalid [15:52:20] ======= [PASSED] drm_test_check_invalid_plane_state ======== [15:52:20] ================ [PASSED] drm_plane_helper ================= [15:52:20] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [15:52:20] ====== drm_test_connector_helper_tv_get_modes_check ======= [15:52:20] [PASSED] None [15:52:20] [PASSED] PAL [15:52:20] [PASSED] NTSC [15:52:20] [PASSED] Both, NTSC Default [15:52:20] [PASSED] Both, PAL Default [15:52:20] [PASSED] Both, NTSC Default, with PAL on command-line [15:52:20] [PASSED] Both, PAL Default, with NTSC on command-line [15:52:20] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [15:52:20] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [15:52:20] ================== drm_rect (9 subtests) =================== [15:52:20] [PASSED] drm_test_rect_clip_scaled_div_by_zero [15:52:20] [PASSED] drm_test_rect_clip_scaled_not_clipped [15:52:20] [PASSED] drm_test_rect_clip_scaled_clipped [15:52:20] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [15:52:20] ================= drm_test_rect_intersect ================= [15:52:20] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [15:52:20] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [15:52:20] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [15:52:20] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [15:52:20] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [15:52:20] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [15:52:20] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [15:52:20] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [15:52:20] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [15:52:20] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [15:52:20] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [15:52:20] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [15:52:20] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [15:52:20] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [15:52:20] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [15:52:20] ============= [PASSED] drm_test_rect_intersect ============= [15:52:20] ================ drm_test_rect_calc_hscale ================ [15:52:20] [PASSED] normal use [15:52:20] [PASSED] out of max range [15:52:20] [PASSED] out of min range [15:52:20] [PASSED] zero dst [15:52:20] [PASSED] negative src [15:52:20] [PASSED] negative dst [15:52:20] ============ [PASSED] drm_test_rect_calc_hscale ============ [15:52:20] ================ drm_test_rect_calc_vscale ================ [15:52:20] [PASSED] normal use [15:52:20] [PASSED] out of max range [15:52:20] [PASSED] out of min range [15:52:20] [PASSED] zero dst [15:52:20] [PASSED] negative src [15:52:20] [PASSED] negative dst [15:52:20] ============ [PASSED] drm_test_rect_calc_vscale ============ [15:52:20] ================== drm_test_rect_rotate =================== [15:52:20] [PASSED] reflect-x [15:52:20] [PASSED] reflect-y [15:52:20] [PASSED] rotate-0 [15:52:20] [PASSED] rotate-90 [15:52:20] [PASSED] rotate-180 [15:52:20] [PASSED] rotate-270 stty: 'standard input': Inappropriate ioctl for device [15:52:20] ============== [PASSED] drm_test_rect_rotate =============== [15:52:20] ================ drm_test_rect_rotate_inv ================= [15:52:20] [PASSED] reflect-x [15:52:20] [PASSED] reflect-y [15:52:20] [PASSED] rotate-0 [15:52:20] [PASSED] rotate-90 [15:52:20] [PASSED] rotate-180 [15:52:20] [PASSED] rotate-270 [15:52:20] ============ [PASSED] drm_test_rect_rotate_inv ============= [15:52:20] ==================== [PASSED] drm_rect ===================== [15:52:20] ============ drm_sysfb_modeset_test (1 subtest) ============ [15:52:20] ============ drm_test_sysfb_build_fourcc_list ============= [15:52:20] [PASSED] no native formats [15:52:20] [PASSED] XRGB8888 as native format [15:52:20] [PASSED] remove duplicates [15:52:20] [PASSED] convert alpha formats [15:52:20] [PASSED] random formats [15:52:20] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [15:52:20] ============= [PASSED] drm_sysfb_modeset_test ============== [15:52:20] ============================================================ [15:52:20] Testing complete. Ran 616 tests: passed: 616 [15:52:20] Elapsed time: 23.159s total, 1.568s configuring, 21.368s building, 0.184s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [15:52:20] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [15:52:22] 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 [15:52:30] Starting KUnit Kernel (1/1)... [15:52:30] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [15:52:30] ================= ttm_device (5 subtests) ================== [15:52:30] [PASSED] ttm_device_init_basic [15:52:30] [PASSED] ttm_device_init_multiple [15:52:30] [PASSED] ttm_device_fini_basic [15:52:30] [PASSED] ttm_device_init_no_vma_man [15:52:30] ================== ttm_device_init_pools ================== [15:52:30] [PASSED] No DMA allocations, no DMA32 required [15:52:30] [PASSED] DMA allocations, DMA32 required [15:52:30] [PASSED] No DMA allocations, DMA32 required [15:52:30] [PASSED] DMA allocations, no DMA32 required [15:52:30] ============== [PASSED] ttm_device_init_pools ============== [15:52:30] =================== [PASSED] ttm_device ==================== [15:52:30] ================== ttm_pool (8 subtests) =================== [15:52:30] ================== ttm_pool_alloc_basic =================== [15:52:30] [PASSED] One page [15:52:30] [PASSED] More than one page [15:52:30] [PASSED] Above the allocation limit [15:52:30] [PASSED] One page, with coherent DMA mappings enabled [15:52:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [15:52:30] ============== [PASSED] ttm_pool_alloc_basic =============== [15:52:30] ============== ttm_pool_alloc_basic_dma_addr ============== [15:52:30] [PASSED] One page [15:52:30] [PASSED] More than one page [15:52:30] [PASSED] Above the allocation limit [15:52:30] [PASSED] One page, with coherent DMA mappings enabled [15:52:30] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [15:52:30] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [15:52:30] [PASSED] ttm_pool_alloc_order_caching_match [15:52:30] [PASSED] ttm_pool_alloc_caching_mismatch [15:52:30] [PASSED] ttm_pool_alloc_order_mismatch [15:52:30] [PASSED] ttm_pool_free_dma_alloc [15:52:30] [PASSED] ttm_pool_free_no_dma_alloc [15:52:30] [PASSED] ttm_pool_fini_basic [15:52:30] ==================== [PASSED] ttm_pool ===================== [15:52:30] ================ ttm_resource (8 subtests) ================= [15:52:30] ================= ttm_resource_init_basic ================= [15:52:30] [PASSED] Init resource in TTM_PL_SYSTEM [15:52:30] [PASSED] Init resource in TTM_PL_VRAM [15:52:30] [PASSED] Init resource in a private placement [15:52:30] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [15:52:30] ============= [PASSED] ttm_resource_init_basic ============= [15:52:30] [PASSED] ttm_resource_init_pinned [15:52:30] [PASSED] ttm_resource_fini_basic [15:52:30] [PASSED] ttm_resource_manager_init_basic [15:52:30] [PASSED] ttm_resource_manager_usage_basic [15:52:30] [PASSED] ttm_resource_manager_set_used_basic [15:52:30] [PASSED] ttm_sys_man_alloc_basic [15:52:30] [PASSED] ttm_sys_man_free_basic [15:52:30] ================== [PASSED] ttm_resource =================== [15:52:30] =================== ttm_tt (15 subtests) =================== [15:52:30] ==================== ttm_tt_init_basic ==================== [15:52:30] [PASSED] Page-aligned size [15:52:30] [PASSED] Extra pages requested [15:52:30] ================ [PASSED] ttm_tt_init_basic ================ [15:52:30] [PASSED] ttm_tt_init_misaligned [15:52:30] [PASSED] ttm_tt_fini_basic [15:52:30] [PASSED] ttm_tt_fini_sg [15:52:30] [PASSED] ttm_tt_fini_shmem [15:52:30] [PASSED] ttm_tt_create_basic [15:52:30] [PASSED] ttm_tt_create_invalid_bo_type [15:52:30] [PASSED] ttm_tt_create_ttm_exists [15:52:30] [PASSED] ttm_tt_create_failed [15:52:30] [PASSED] ttm_tt_destroy_basic [15:52:30] [PASSED] ttm_tt_populate_null_ttm [15:52:30] [PASSED] ttm_tt_populate_populated_ttm [15:52:30] [PASSED] ttm_tt_unpopulate_basic [15:52:30] [PASSED] ttm_tt_unpopulate_empty_ttm [15:52:30] [PASSED] ttm_tt_swapin_basic [15:52:30] ===================== [PASSED] ttm_tt ====================== [15:52:30] =================== ttm_bo (14 subtests) =================== [15:52:30] =========== ttm_bo_reserve_optimistic_no_ticket =========== [15:52:30] [PASSED] Cannot be interrupted and sleeps [15:52:30] [PASSED] Cannot be interrupted, locks straight away [15:52:30] [PASSED] Can be interrupted, sleeps [15:52:30] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [15:52:30] [PASSED] ttm_bo_reserve_locked_no_sleep [15:52:30] [PASSED] ttm_bo_reserve_no_wait_ticket [15:52:30] [PASSED] ttm_bo_reserve_double_resv [15:52:30] [PASSED] ttm_bo_reserve_interrupted [15:52:30] [PASSED] ttm_bo_reserve_deadlock [15:52:30] [PASSED] ttm_bo_unreserve_basic [15:52:30] [PASSED] ttm_bo_unreserve_pinned [15:52:30] [PASSED] ttm_bo_unreserve_bulk [15:52:30] [PASSED] ttm_bo_put_basic [15:52:30] [PASSED] ttm_bo_put_shared_resv [15:52:30] [PASSED] ttm_bo_pin_basic [15:52:30] [PASSED] ttm_bo_pin_unpin_resource [15:52:30] [PASSED] ttm_bo_multiple_pin_one_unpin [15:52:30] ===================== [PASSED] ttm_bo ====================== [15:52:30] ============== ttm_bo_validate (22 subtests) =============== [15:52:30] ============== ttm_bo_init_reserved_sys_man =============== [15:52:30] [PASSED] Buffer object for userspace [15:52:30] [PASSED] Kernel buffer object [15:52:30] [PASSED] Shared buffer object [15:52:30] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [15:52:30] ============== ttm_bo_init_reserved_mock_man ============== [15:52:30] [PASSED] Buffer object for userspace [15:52:30] [PASSED] Kernel buffer object [15:52:30] [PASSED] Shared buffer object [15:52:30] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [15:52:30] [PASSED] ttm_bo_init_reserved_resv [15:52:30] ================== ttm_bo_validate_basic ================== [15:52:30] [PASSED] Buffer object for userspace [15:52:30] [PASSED] Kernel buffer object [15:52:30] [PASSED] Shared buffer object [15:52:30] ============== [PASSED] ttm_bo_validate_basic ============== [15:52:30] [PASSED] ttm_bo_validate_invalid_placement [15:52:30] ============= ttm_bo_validate_same_placement ============== [15:52:30] [PASSED] System manager [15:52:30] [PASSED] VRAM manager [15:52:30] ========= [PASSED] ttm_bo_validate_same_placement ========== [15:52:30] [PASSED] ttm_bo_validate_failed_alloc [15:52:30] [PASSED] ttm_bo_validate_pinned [15:52:30] [PASSED] ttm_bo_validate_busy_placement [15:52:30] ================ ttm_bo_validate_multihop ================= [15:52:30] [PASSED] Buffer object for userspace [15:52:30] [PASSED] Kernel buffer object [15:52:30] [PASSED] Shared buffer object [15:52:30] ============ [PASSED] ttm_bo_validate_multihop ============= [15:52:30] ========== ttm_bo_validate_no_placement_signaled ========== [15:52:30] [PASSED] Buffer object in system domain, no page vector [15:52:30] [PASSED] Buffer object in system domain with an existing page vector [15:52:30] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [15:52:30] ======== ttm_bo_validate_no_placement_not_signaled ======== [15:52:30] [PASSED] Buffer object for userspace [15:52:30] [PASSED] Kernel buffer object [15:52:30] [PASSED] Shared buffer object [15:52:30] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [15:52:30] [PASSED] ttm_bo_validate_move_fence_signaled [15:52:30] ========= ttm_bo_validate_move_fence_not_signaled ========= [15:52:30] [PASSED] Waits for GPU [15:52:30] [PASSED] Tries to lock straight away [15:52:30] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [15:52:30] [PASSED] ttm_bo_validate_swapout [15:52:30] [PASSED] ttm_bo_validate_happy_evict [15:52:30] [PASSED] ttm_bo_validate_all_pinned_evict [15:52:30] [PASSED] ttm_bo_validate_allowed_only_evict [15:52:30] [PASSED] ttm_bo_validate_deleted_evict [15:52:30] [PASSED] ttm_bo_validate_busy_domain_evict [15:52:30] [PASSED] ttm_bo_validate_evict_gutting [15:52:30] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [15:52:30] ================= [PASSED] ttm_bo_validate ================= [15:52:30] ============================================================ [15:52:30] Testing complete. Ran 102 tests: passed: 102 [15:52:30] Elapsed time: 10.012s total, 1.651s configuring, 7.743s building, 0.534s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/display: Use static values for min_hblank 2025-06-24 9:59 [PATCH v2] drm/i915/display: Use static values for min_hblank Arun R Murthy 2025-06-24 12:04 ` Imre Deak 2025-06-24 15:52 ` ✓ CI.KUnit: success for " Patchwork @ 2025-06-24 16:48 ` Patchwork 2025-06-25 11:11 ` ✗ Xe.CI.Full: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-24 16:48 UTC (permalink / raw) To: Murthy, Arun R; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1017 bytes --] == Series Details == Series: drm/i915/display: Use static values for min_hblank URL : https://patchwork.freedesktop.org/series/150683/ State : success == Summary == CI Bug Log - changes from xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201_BAT -> xe-pw-150683v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 7) ------------------------------ Missing (2): bat-dg2-oem2 bat-adlp-vm Changes ------- No changes found Build changes ------------- * IGT: IGT_8423 -> IGT_8424 * Linux: xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201 -> xe-pw-150683v1 IGT_8423: 8423 IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201: fb5dada21e3cfa26179ca58e1d7c26cdad217201 xe-pw-150683v1: 150683v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/index.html [-- Attachment #2: Type: text/html, Size: 1579 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for drm/i915/display: Use static values for min_hblank 2025-06-24 9:59 [PATCH v2] drm/i915/display: Use static values for min_hblank Arun R Murthy ` (2 preceding siblings ...) 2025-06-24 16:48 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-06-25 11:11 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-25 11:11 UTC (permalink / raw) To: Murthy, Arun R; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 95235 bytes --] == Series Details == Series: drm/i915/display: Use static values for min_hblank URL : https://patchwork.freedesktop.org/series/150683/ State : failure == Summary == CI Bug Log - changes from xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201_FULL -> xe-pw-150683v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-150683v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-150683v1_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-150683v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-dp4: - shard-dg2-set2: [PASS][1] -> [FAIL][2] +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-463/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-dp4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-dp4.html New tests --------- New tests have been introduced between xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201_FULL and xe-pw-150683v1_FULL: ### New IGT tests (1) ### * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.51] s Known issues ------------ Here are the changes found in xe-pw-150683v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4: - shard-dg2-set2: [PASS][3] -> [FAIL][4] ([Intel XE#4427]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#911]) +7 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#3767]) +31 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1: - shard-adlp: [PASS][8] -> [FAIL][9] ([Intel XE#3884]) +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html * igt@kms_async_flips@invalid-async-flip@pipe-b-hdmi-a-1: - shard-adlp: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#4543]) +3 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-8/igt@kms_async_flips@invalid-async-flip@pipe-b-hdmi-a-1.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-4/igt@kms_async_flips@invalid-async-flip@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1124]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#316]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2328]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#619]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1467]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-adlp: [PASS][20] -> [DMESG-FAIL][21] ([Intel XE#4543]) +10 other tests dmesg-fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#787]) +8 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +8 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#787]) +209 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#2705] / [Intel XE#4212]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +42 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4417]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4417]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_chamelium_color@gamma.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-1/igt@kms_chamelium_color@gamma.html - shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#306]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2252]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#373]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1178]) +2 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#307]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#307]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2390]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1188]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2320]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2291]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2291]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#309]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#323]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3009]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_dp_aux_dev.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#4422]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4422]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4422]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4422]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#776]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#776]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2373]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_feature_discovery@display-2x.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316]) +12 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#301]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2316]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#310]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1421]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][79] -> [FAIL][80] ([Intel XE#3098]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-434/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a6.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-463/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#301]) +1 other test fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: NOTRUN -> [FAIL][82] ([Intel XE#301]) +3 other tests fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-adlp: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-9/igt@kms_flip@flip-vs-suspend.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-433/igt@kms_flip@flip-vs-suspend@d-dp4.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#886]) +4 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#455]) +12 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-adlp: [PASS][93] -> [DMESG-FAIL][94] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x: - shard-adlp: [PASS][96] -> [FAIL][97] ([Intel XE#1874]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2312]) +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656]) +15 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4141]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2311]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#651]) +26 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#651]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +9 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#656]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +20 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#653]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#3374] / [Intel XE#3544]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3374] / [Intel XE#3544]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#455]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-463/igt@kms_hdr@invalid-hdr.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#1503]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#346]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2501]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#356]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4329]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#4359]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#4596]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#5020]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#870]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#908]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#718]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1439] / [Intel XE#3141]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#836]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2893] / [Intel XE#4608]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#4608]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2893]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1489]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#1489]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1489]) +8 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@fbc-psr2-primary-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#4609]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [FAIL][138] ([Intel XE#4689]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1127]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2330]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1127]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#2883]) +2 other tests fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][144] -> [SKIP][145] ([Intel XE#1435]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2426]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: NOTRUN -> [FAIL][147] ([Intel XE#1729]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#362]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#1499]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-3/igt@kms_vrr@flip-basic.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#1091] / [Intel XE#2849]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1091] / [Intel XE#2849]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1091] / [Intel XE#2849]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#1123]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0xfd.html - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1123]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_eu_stall@blocking-read: - shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#5308]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@xe_eu_stall@blocking-read.html - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#5308]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@xe_eu_stall@blocking-read.html * igt@xe_eudebug@discovery-race-vmbind: - shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#4837]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@xe_eudebug@discovery-race-vmbind.html * igt@xe_eudebug_online@reset-with-attention: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#4837]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-3/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#4837]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#688]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-1/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1392]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1392]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-dg2-set2: [PASS][163] -> [SKIP][164] ([Intel XE#1392]) +6 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-adlp: NOTRUN -> [SKIP][165] ([Intel XE#1392]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2322]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#288]) +26 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_fault_mode@once-invalid-fault: - shard-adlp: NOTRUN -> [SKIP][168] ([Intel XE#288]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@xe_exec_fault_mode@once-invalid-fault.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#2360]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@gt-reset-stress: - shard-adlp: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#4812]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-1/igt@xe_exec_reset@gt-reset-stress.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#3876]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_sip_eudebug@wait-writesip-nodebug: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#4837]) +11 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#4943]) +10 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge.html * igt@xe_exec_system_allocator@threads-many-large-mmap-mlock: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#4915]) +233 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-large-mmap-mlock.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset: - shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#4915]) +23 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@twice-mmap-huge: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#4943]) +14 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@xe_exec_system_allocator@twice-mmap-huge.html * igt@xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#5100]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-6/igt@xe_mmap@pci-membarrier-bad-pagesize.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#512]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][181] -> [ABORT][182] ([Intel XE#5087]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-3/igt@xe_module_load@reload-no-display.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@xe_module_load@reload-no-display.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html - shard-adlp: NOTRUN -> [SKIP][184] ([Intel XE#2541] / [Intel XE#3573]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-6/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2838] / [Intel XE#979]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#2284] / [Intel XE#366]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#584]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-5/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [PASS][188] -> [FAIL][189] ([Intel XE#5166]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-463/igt@xe_pmu@gt-frequency.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@xe_pmu@gt-frequency.html * igt@xe_pxp@pxp-stale-bo-bind-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#4733]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html - shard-adlp: NOTRUN -> [SKIP][191] ([Intel XE#4733]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#4733]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#944]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#944]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-3/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_render_copy@render-stress-2-copies: - shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#4814]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#4130]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#4130]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#4351]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-adlp: [SKIP][199] ([Intel XE#4947]) -> [PASS][200] +2 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][201] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-adlp: [DMESG-FAIL][203] ([Intel XE#4543]) -> [PASS][204] +3 other tests pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][205] ([Intel XE#3862]) -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][207] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/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][209] ([Intel XE#2291]) -> [PASS][210] +4 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][211] ([Intel XE#2316]) -> [PASS][212] +3 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][213] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][214] +3 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: [FAIL][215] ([Intel XE#301]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][217] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-adlp: [DMESG-WARN][219] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][220] +5 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-adlp: [DMESG-FAIL][221] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][222] +3 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][223] ([Intel XE#1503]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-6/igt@kms_hdr@static-swap.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][225] ([Intel XE#3012]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][227] ([Intel XE#616]) -> [PASS][228] +1 other test pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@tiling-none: - shard-dg2-set2: [INCOMPLETE][229] -> [PASS][230] +2 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-432/igt@kms_plane_multiple@tiling-none.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_plane_multiple@tiling-none.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][231] ([Intel XE#2571]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-adlp: [SKIP][233] ([Intel XE#4950]) -> [PASS][234] +9 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][235] ([Intel XE#718]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@drm-resources-equal: - shard-adlp: [SKIP][237] ([Intel XE#4962]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_pm_rpm@drm-resources-equal.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_prop_blob@invalid-set-prop-any: - shard-dg2-set2: [SKIP][239] ([Intel XE#4208] / [i915#2575]) -> [PASS][240] +4 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_prop_blob@invalid-set-prop-any.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_prop_blob@invalid-set-prop-any.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][241] ([Intel XE#4459]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][243] ([Intel XE#4227]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-2/igt@kms_vrr@max-min.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-6/igt@kms_vrr@max-min.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][245] ([Intel XE#1392]) -> [PASS][246] +5 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_compute_mode@once-basic: - shard-dg2-set2: [SKIP][247] ([Intel XE#4208]) -> [PASS][248] +5 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_exec_compute_mode@once-basic.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@xe_exec_compute_mode@once-basic.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [FAIL][249] ([Intel XE#5018]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_exec_threads@threads-bal-rebind: - shard-adlp: [SKIP][251] ([Intel XE#4945]) -> [PASS][252] +10 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_exec_threads@threads-bal-rebind.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@xe_exec_threads@threads-bal-rebind.html * igt@xe_live_ktest@xe_dma_buf: - shard-adlp: [FAIL][253] ([Intel XE#3099]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_live_ktest@xe_dma_buf.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@xe_live_ktest@xe_dma_buf.html #### Warnings #### * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-adlp: [SKIP][255] ([Intel XE#4947]) -> [SKIP][256] ([Intel XE#1124]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: [SKIP][257] ([Intel XE#4208]) -> [SKIP][258] ([Intel XE#316]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html - shard-adlp: [SKIP][259] ([Intel XE#4947]) -> [SKIP][260] ([Intel XE#316]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_big_fb@linear-16bpp-rotate-270.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-adlp: [SKIP][261] ([Intel XE#4947]) -> [DMESG-FAIL][262] ([Intel XE#4543]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html - shard-dg2-set2: [SKIP][263] ([Intel XE#4208]) -> [SKIP][264] ([Intel XE#1124]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-adlp: [DMESG-WARN][265] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-FAIL][266] ([Intel XE#4543]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-adlp: [SKIP][267] ([Intel XE#4950]) -> [SKIP][268] ([Intel XE#367]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-adlp: [SKIP][269] ([Intel XE#4947]) -> [SKIP][270] ([Intel XE#455] / [Intel XE#787]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][271] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][272] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/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@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][273] ([Intel XE#3124]) -> [INCOMPLETE][274] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-adlp: [SKIP][275] ([Intel XE#4950]) -> [SKIP][276] ([Intel XE#306]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_chamelium_color@ctm-0-25.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-adlp: [SKIP][277] ([Intel XE#4950]) -> [SKIP][278] ([Intel XE#309]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_fbcon_fbt@psr: - shard-adlp: [SKIP][279] ([Intel XE#4947]) -> [SKIP][280] ([Intel XE#776]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_fbcon_fbt@psr.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@kms_fbcon_fbt@psr.html - shard-dg2-set2: [SKIP][281] ([Intel XE#4208]) -> [SKIP][282] ([Intel XE#776]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_fbcon_fbt@psr.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-464/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-adlp: [SKIP][283] ([Intel XE#4950]) -> [SKIP][284] ([Intel XE#310]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-adlp: [SKIP][285] ([Intel XE#4947]) -> [SKIP][286] ([Intel XE#651]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html - shard-dg2-set2: [SKIP][287] ([Intel XE#4208]) -> [SKIP][288] ([Intel XE#651]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][289] ([Intel XE#2311]) -> [SKIP][290] ([Intel XE#2312]) +15 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-adlp: [SKIP][291] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][292] ([Intel XE#656]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][293] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][294] ([Intel XE#651]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#2311]) +20 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][297] ([Intel XE#2312]) -> [SKIP][298] ([Intel XE#4141]) +8 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-adlp: [SKIP][299] ([Intel XE#4947]) -> [SKIP][300] ([Intel XE#656]) +3 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][301] ([Intel XE#4141]) -> [SKIP][302] ([Intel XE#2312]) +10 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-adlp: [SKIP][303] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][304] ([Intel XE#651]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][305] ([Intel XE#4208]) -> [SKIP][306] ([Intel XE#653]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][307] ([Intel XE#2313]) -> [SKIP][308] ([Intel XE#2312]) +18 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][309] ([Intel XE#2312]) -> [SKIP][310] ([Intel XE#2313]) +15 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-adlp: [SKIP][311] ([Intel XE#4947]) -> [SKIP][312] ([Intel XE#653]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html - shard-dg2-set2: [SKIP][313] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][314] ([Intel XE#653]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][315] ([Intel XE#4208] / [i915#2575]) -> [SKIP][316] ([Intel XE#455]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@kms_hdr@brightness-with-hdr.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-adlp: [SKIP][317] ([Intel XE#4947]) -> [SKIP][318] ([Intel XE#1489]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_vrr@flip-basic: - shard-adlp: [SKIP][319] ([Intel XE#4950]) -> [SKIP][320] ([Intel XE#455]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@kms_vrr@flip-basic.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-4/igt@kms_vrr@flip-basic.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][321] ([Intel XE#4208]) -> [SKIP][322] ([Intel XE#1126]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html - shard-adlp: [SKIP][323] ([Intel XE#4945]) -> [SKIP][324] ([Intel XE#1126]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0xfffe.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug_online@interrupt-reconnect: - shard-adlp: [SKIP][325] ([Intel XE#4945]) -> [SKIP][326] ([Intel XE#4837]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_eudebug_online@interrupt-reconnect.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@xe_eudebug_online@interrupt-reconnect.html - shard-dg2-set2: [SKIP][327] ([Intel XE#4208]) -> [SKIP][328] ([Intel XE#4837]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_eudebug_online@interrupt-reconnect.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_eudebug_online@interrupt-reconnect.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-adlp: [SKIP][329] ([Intel XE#4945]) -> [SKIP][330] ([Intel XE#1392]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm: - shard-adlp: [SKIP][331] ([Intel XE#4945]) -> [SKIP][332] ([Intel XE#288]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html - shard-dg2-set2: [SKIP][333] ([Intel XE#4208]) -> [SKIP][334] ([Intel XE#288]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html * igt@xe_exec_reset@cm-cat-error: - shard-adlp: [SKIP][335] ([Intel XE#4945]) -> [DMESG-FAIL][336] ([Intel XE#3868]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_exec_reset@cm-cat-error.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@xe_exec_reset@cm-cat-error.html * igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck: - shard-adlp: [SKIP][337] ([Intel XE#4945]) -> [SKIP][338] ([Intel XE#4915]) +33 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-8/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html * igt@xe_exec_system_allocator@threads-many-new-race-nomemset: - shard-dg2-set2: [SKIP][339] ([Intel XE#4208]) -> [SKIP][340] ([Intel XE#4915]) +16 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-new-race-nomemset.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-new-race-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset: - shard-lnl: [FAIL][341] ([Intel XE#5018]) -> [FAIL][342] ([Intel XE#4937]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html * igt@xe_oa@invalid-create-userspace-config: - shard-adlp: [SKIP][343] ([Intel XE#4945]) -> [SKIP][344] ([Intel XE#2541] / [Intel XE#3573]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201/shard-adlp-4/igt@xe_oa@invalid-create-userspace-config.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/shard-adlp-3/igt@xe_oa@invalid-create-userspace-config.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#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#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [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#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4427 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921 [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945 [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947 [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950 [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962 [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#5087]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5087 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [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_8423 -> IGT_8424 * Linux: xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201 -> xe-pw-150683v1 IGT_8423: 8423 IGT_8424: 68588b3c89a1bbe08c54d21c4d3d2e509957c795 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3297-fb5dada21e3cfa26179ca58e1d7c26cdad217201: fb5dada21e3cfa26179ca58e1d7c26cdad217201 xe-pw-150683v1: 150683v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150683v1/index.html [-- Attachment #2: Type: text/html, Size: 114163 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-06-25 11:11 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-24 9:59 [PATCH v2] drm/i915/display: Use static values for min_hblank Arun R Murthy 2025-06-24 12:04 ` Imre Deak 2025-06-24 15:52 ` ✓ CI.KUnit: success for " Patchwork 2025-06-24 16:48 ` ✓ Xe.CI.BAT: " Patchwork 2025-06-25 11:11 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox