* [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone
@ 2025-06-13 19:14 Tomasz Lis
2025-06-13 20:10 ` ✓ CI.KUnit: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tomasz Lis @ 2025-06-13 19:14 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Satyanarayana K V P
There is a remote chance that after migration, some GTs will not
send the MIGRATED interrupt, or due to current VF KMD state the
interrupt will not lead to marking the GT for recovery.
Requiring IRQs from all GTs before starting migration introduces
the possibility that the process will get stalled due to one GuC.
One could argue it is also waste of time to wait for all IRQs,
but we should get them all IRQs as soon as VGPU starts, so that's
not really an implactful argument.
Still, not waiting for all GTs makes it easier to handle situations:
* where one GuC IRQ missing
* where state before probe is unclean - getting MIGRATED IRQ as soon
as interrupts are enabled
* where multiple migrations happen close to each other
To help with these cases, this patch alters the post-migration
recovery so thar recovery task is started as soon as one GuC IRQ
is handled, and other GTs are included in recovery later as the
subrequent IRQs are services.
The post-migration recovery can now be called for any selection of
GTs, and it will perform recovery on all GTs for which IRQs have
arrived, even multiple times if necessary.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michal Winiarski <michal.winiarski@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_vf.c | 167 ++++++++++++++-----------------
1 file changed, 76 insertions(+), 91 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 6526fe450e55..aef1d256e871 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -147,127 +147,111 @@ void xe_sriov_vf_init_early(struct xe_device *xe)
xe_sriov_info(xe, "migration not supported by this module version\n");
}
-/**
- * vf_post_migration_requery_guc - Re-query GuC for current VF provisioning.
- * @xe: the &xe_device struct instance
- *
- * After migration, we need to re-query all VF configuration to make sure
- * they match previous provisioning. Note that most of VF provisioning
- * shall be the same, except GGTT range, since GGTT is not virtualized per-VF.
- *
- * Returns: 0 if the operation completed successfully, or a negative error
- * code otherwise.
+static bool gt_vf_post_migration_needed(struct xe_gt *gt)
+{
+ return test_bit(gt->info.id, >_to_xe(gt)->sriov.vf.migration.gt_flags);
+}
+
+/*
+ * Notify GuCs marked in flags about resource fixups apply finished.
*/
-static int vf_post_migration_requery_guc(struct xe_device *xe)
+static int vf_post_migration_notify_resfix_done(struct xe_device *xe, unsigned long *gt_flags)
{
struct xe_gt *gt;
unsigned int id;
- int err, ret = 0;
+ int err = 0;
for_each_gt(gt, xe, id) {
- err = xe_gt_sriov_vf_query_config(gt);
- ret = ret ?: err;
+ if (!test_bit(id, gt_flags))
+ continue;
+ /* skip asking GuC for RESFIX exit if new recovery request arrived */
+ if (gt_vf_post_migration_needed(gt))
+ continue;
+ err = xe_gt_sriov_vf_notify_resfix_done(gt);
+ if (err)
+ break;
+ clear_bit(id, gt_flags);
}
- return ret;
+ if (*gt_flags && !err)
+ drm_dbg(&xe->drm, "another recovery imminent, skipped some notifications\n");
+ return err;
}
-static void vf_post_migration_fixup_ctb(struct xe_device *xe)
+static int vf_get_next_migrated_gt_id(struct xe_device *xe)
{
struct xe_gt *gt;
unsigned int id;
- xe_assert(xe, IS_SRIOV_VF(xe));
-
for_each_gt(gt, xe, id) {
- s32 shift = xe_gt_sriov_vf_ggtt_shift(gt);
-
- xe_guc_ct_fixup_messages_with_ggtt(>->uc.guc.ct, shift);
+ if (test_and_clear_bit(id, &xe->sriov.vf.migration.gt_flags))
+ return id;
}
+ return -1;
}
-/*
- * vf_post_migration_imminent - Check if post-restore recovery is coming.
- * @xe: the &xe_device struct instance
+/**
+ * Perform post-migration fixups on a single GT.
*
- * Return: True if migration recovery worker will soon be running. Any worker currently
- * executing does not affect the result.
+ * After migration, GuC needs to be re-queried for VF configuration to check
+ * if it matches previous provisioning. Most of VF provisioning shall be the
+ * same, except GGTT range, since GGTT is not virtualized per-VF. If GGTT
+ * range has changed, we have to perform fixups - shift all GGTT references
+ * used anywhere within the driver. After the fixups in this function succeed,
+ * it is allowed to ask the GuC bound to this GT to continue normal operation.
+ *
+ * Returns: 0 if the operation completed successfully, or a negative error
+ * code otherwise.
*/
-static bool vf_post_migration_imminent(struct xe_device *xe)
+static int gt_vf_post_migration_fixups(struct xe_gt *gt)
{
- return xe->sriov.vf.migration.gt_flags != 0 ||
- work_pending(&xe->sriov.vf.migration.worker);
-}
-
-static bool vf_post_migration_fixup_ggtt_nodes(struct xe_device *xe)
-{
- bool need_fixups = false;
- struct xe_tile *tile;
- unsigned int id;
-
- for_each_tile(tile, xe, id) {
- struct xe_gt *gt = tile->primary_gt;
- s64 shift;
-
- shift = xe_gt_sriov_vf_ggtt_shift(gt);
- if (shift) {
- need_fixups = true;
- xe_tile_sriov_vf_fixup_ggtt_nodes(tile, shift);
- }
- }
- return need_fixups;
-}
+ s64 shift;
+ int err;
-/*
- * Notify all GuCs about resource fixups apply finished.
- */
-static void vf_post_migration_notify_resfix_done(struct xe_device *xe)
-{
- struct xe_gt *gt;
- unsigned int id;
+ err = xe_gt_sriov_vf_query_config(gt);
+ if (err)
+ return err;
- for_each_gt(gt, xe, id) {
- if (vf_post_migration_imminent(xe))
- goto skip;
- xe_gt_sriov_vf_notify_resfix_done(gt);
+ shift = xe_gt_sriov_vf_ggtt_shift(gt);
+ if (shift) {
+ xe_tile_sriov_vf_fixup_ggtt_nodes(gt_to_tile(gt), shift);
+ /* FIXME: add the recovery steps */
+ xe_guc_ct_fixup_messages_with_ggtt(>->uc.guc.ct, shift);
}
- return;
-
-skip:
- drm_dbg(&xe->drm, "another recovery imminent, skipping notifications\n");
+ return 0;
}
static void vf_post_migration_recovery(struct xe_device *xe)
{
- bool need_fixups;
- int err;
+ int id, err;
+ unsigned long fixed_gts = 0;
drm_dbg(&xe->drm, "migration recovery in progress\n");
xe_pm_runtime_get(xe);
- err = vf_post_migration_requery_guc(xe);
- if (vf_post_migration_imminent(xe))
- goto defer;
- if (unlikely(err))
- goto fail;
+
if (!vf_migration_supported(xe)) {
xe_sriov_err(xe, "migration not supported by this module version\n");
err = -ENOTRECOVERABLE;
goto fail;
}
- need_fixups = vf_post_migration_fixup_ggtt_nodes(xe);
- /* FIXME: add the recovery steps */
- if (need_fixups)
- vf_post_migration_fixup_ctb(xe);
+ while (id = vf_get_next_migrated_gt_id(xe), id >= 0) {
+ struct xe_gt *gt = xe_device_get_gt(xe, id);
+
+ err = gt_vf_post_migration_fixups(gt);
+ if (err)
+ goto fail;
+
+ set_bit(id, &fixed_gts);
+ }
+
+ err = vf_post_migration_notify_resfix_done(xe, &fixed_gts);
+ if (err)
+ goto fail;
- vf_post_migration_notify_resfix_done(xe);
xe_pm_runtime_put(xe);
drm_notice(&xe->drm, "migration recovery ended\n");
return;
-defer:
- xe_pm_runtime_put(xe);
- drm_dbg(&xe->drm, "migration recovery deferred\n");
- return;
fail:
xe_pm_runtime_put(xe);
drm_err(&xe->drm, "migration recovery failed (%pe)\n", ERR_PTR(err));
@@ -282,18 +266,23 @@ static void migration_worker_func(struct work_struct *w)
vf_post_migration_recovery(xe);
}
-static bool vf_ready_to_recovery_on_all_gts(struct xe_device *xe)
+/*
+ * Check if post-restore recovery is coming on any of GTs.
+ * @xe: the &xe_device struct instance
+ *
+ * Return: True if migration recovery worker will soon be running. Any worker currently
+ * executing does not affect the result.
+ */
+static bool vf_ready_to_recovery_on_any_gts(struct xe_device *xe)
{
struct xe_gt *gt;
unsigned int id;
for_each_gt(gt, xe, id) {
- if (!test_bit(id, &xe->sriov.vf.migration.gt_flags)) {
- xe_gt_sriov_dbg_verbose(gt, "still not ready to recover\n");
- return false;
- }
+ if (test_bit(id, &xe->sriov.vf.migration.gt_flags))
+ return true;
}
- return true;
+ return false;
}
/**
@@ -308,13 +297,9 @@ void xe_sriov_vf_start_migration_recovery(struct xe_device *xe)
xe_assert(xe, IS_SRIOV_VF(xe));
- if (!vf_ready_to_recovery_on_all_gts(xe))
+ if (!vf_ready_to_recovery_on_any_gts(xe))
return;
- WRITE_ONCE(xe->sriov.vf.migration.gt_flags, 0);
- /* Ensure other threads see that no flags are set now. */
- smp_mb();
-
started = queue_work(xe->sriov.wq, &xe->sriov.vf.migration.worker);
drm_info(&xe->drm, "VF migration recovery %s\n", started ?
"scheduled" : "already in progress");
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ CI.KUnit: success for drm/xe/vf: Make multi-GT migration less error prone 2025-06-13 19:14 [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone Tomasz Lis @ 2025-06-13 20:10 ` Patchwork 2025-06-13 20:48 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-13 20:10 UTC (permalink / raw) To: Tomasz Lis; +Cc: intel-xe == Series Details == Series: drm/xe/vf: Make multi-GT migration less error prone URL : https://patchwork.freedesktop.org/series/150253/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [20:09:19] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [20:09:23] 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 [20:09:50] Starting KUnit Kernel (1/1)... [20:09:50] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [20:09:50] ================== guc_buf (11 subtests) =================== [20:09:50] [PASSED] test_smallest [20:09:50] [PASSED] test_largest [20:09:50] [PASSED] test_granular [20:09:50] [PASSED] test_unique [20:09:50] [PASSED] test_overlap [20:09:50] [PASSED] test_reusable [20:09:50] [PASSED] test_too_big [20:09:50] [PASSED] test_flush [20:09:50] [PASSED] test_lookup [20:09:50] [PASSED] test_data [20:09:50] [PASSED] test_class [20:09:50] ===================== [PASSED] guc_buf ===================== [20:09:50] =================== guc_dbm (7 subtests) =================== [20:09:50] [PASSED] test_empty [20:09:50] [PASSED] test_default [20:09:50] ======================== test_size ======================== [20:09:50] [PASSED] 4 [20:09:50] [PASSED] 8 [20:09:50] [PASSED] 32 [20:09:50] [PASSED] 256 [20:09:50] ==================== [PASSED] test_size ==================== [20:09:50] ======================= test_reuse ======================== [20:09:50] [PASSED] 4 [20:09:50] [PASSED] 8 [20:09:50] [PASSED] 32 [20:09:50] [PASSED] 256 [20:09:50] =================== [PASSED] test_reuse ==================== [20:09:50] =================== test_range_overlap ==================== [20:09:50] [PASSED] 4 [20:09:50] [PASSED] 8 [20:09:50] [PASSED] 32 [20:09:50] [PASSED] 256 [20:09:50] =============== [PASSED] test_range_overlap ================ [20:09:50] =================== test_range_compact ==================== [20:09:50] [PASSED] 4 [20:09:50] [PASSED] 8 [20:09:50] [PASSED] 32 [20:09:50] [PASSED] 256 [20:09:50] =============== [PASSED] test_range_compact ================ [20:09:50] ==================== test_range_spare ===================== [20:09:50] [PASSED] 4 [20:09:50] [PASSED] 8 [20:09:50] [PASSED] 32 [20:09:50] [PASSED] 256 [20:09:50] ================ [PASSED] test_range_spare ================= [20:09:50] ===================== [PASSED] guc_dbm ===================== [20:09:50] =================== guc_idm (6 subtests) =================== [20:09:50] [PASSED] bad_init [20:09:50] [PASSED] no_init [20:09:50] [PASSED] init_fini [20:09:50] [PASSED] check_used [20:09:50] [PASSED] check_quota [20:09:50] [PASSED] check_all [20:09:50] ===================== [PASSED] guc_idm ===================== [20:09:50] ================== no_relay (3 subtests) =================== [20:09:50] [PASSED] xe_drops_guc2pf_if_not_ready [20:09:50] [PASSED] xe_drops_guc2vf_if_not_ready [20:09:50] [PASSED] xe_rejects_send_if_not_ready [20:09:50] ==================== [PASSED] no_relay ===================== [20:09:50] ================== pf_relay (14 subtests) ================== [20:09:50] [PASSED] pf_rejects_guc2pf_too_short [20:09:50] [PASSED] pf_rejects_guc2pf_too_long [20:09:50] [PASSED] pf_rejects_guc2pf_no_payload [20:09:50] [PASSED] pf_fails_no_payload [20:09:50] [PASSED] pf_fails_bad_origin [20:09:50] [PASSED] pf_fails_bad_type [20:09:50] [PASSED] pf_txn_reports_error [20:09:50] [PASSED] pf_txn_sends_pf2guc [20:09:50] [PASSED] pf_sends_pf2guc [20:09:50] [SKIPPED] pf_loopback_nop [20:09:50] [SKIPPED] pf_loopback_echo [20:09:50] [SKIPPED] pf_loopback_fail [20:09:50] [SKIPPED] pf_loopback_busy [20:09:50] [SKIPPED] pf_loopback_retry [20:09:50] ==================== [PASSED] pf_relay ===================== [20:09:50] ================== vf_relay (3 subtests) =================== [20:09:50] [PASSED] vf_rejects_guc2vf_too_short [20:09:50] [PASSED] vf_rejects_guc2vf_too_long [20:09:50] [PASSED] vf_rejects_guc2vf_no_payload [20:09:50] ==================== [PASSED] vf_relay ===================== [20:09:50] ================= pf_service (11 subtests) ================= [20:09:50] [PASSED] pf_negotiate_any [20:09:50] [PASSED] pf_negotiate_base_match [20:09:50] [PASSED] pf_negotiate_base_newer [20:09:50] [PASSED] pf_negotiate_base_next [20:09:50] [SKIPPED] pf_negotiate_base_older [20:09:50] [PASSED] pf_negotiate_base_prev [20:09:50] [PASSED] pf_negotiate_latest_match [20:09:50] [PASSED] pf_negotiate_latest_newer [20:09:50] [PASSED] pf_negotiate_latest_next [20:09:50] [SKIPPED] pf_negotiate_latest_older [20:09:50] [SKIPPED] pf_negotiate_latest_prev [20:09:50] =================== [PASSED] pf_service ==================== [20:09:50] ===================== lmtt (1 subtest) ===================== [20:09:50] ======================== test_ops ========================= [20:09:50] [PASSED] 2-level [20:09:50] [PASSED] multi-level [20:09:50] ==================== [PASSED] test_ops ===================== [20:09:50] ====================== [PASSED] lmtt ======================= [20:09:50] =================== xe_mocs (2 subtests) =================== [20:09:50] ================ xe_live_mocs_kernel_kunit ================ [20:09:50] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [20:09:50] ================ xe_live_mocs_reset_kunit ================= [20:09:50] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [20:09:50] ==================== [SKIPPED] xe_mocs ===================== [20:09:50] ================= xe_migrate (2 subtests) ================== [20:09:50] ================= xe_migrate_sanity_kunit ================= [20:09:50] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [20:09:50] ================== xe_validate_ccs_kunit ================== [20:09:50] ============= [SKIPPED] xe_validate_ccs_kunit ============== [20:09:50] =================== [SKIPPED] xe_migrate =================== [20:09:50] ================== xe_dma_buf (1 subtest) ================== [20:09:50] ==================== xe_dma_buf_kunit ===================== [20:09:50] ================ [SKIPPED] xe_dma_buf_kunit ================ [20:09:50] =================== [SKIPPED] xe_dma_buf =================== [20:09:50] ================= xe_bo_shrink (1 subtest) ================= [20:09:50] =================== xe_bo_shrink_kunit ==================== [20:09:50] =============== [SKIPPED] xe_bo_shrink_kunit =============== [20:09:50] ================== [SKIPPED] xe_bo_shrink ================== [20:09:50] ==================== xe_bo (2 subtests) ==================== [20:09:50] ================== xe_ccs_migrate_kunit =================== [20:09:50] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [20:09:50] ==================== xe_bo_evict_kunit ==================== [20:09:50] =============== [SKIPPED] xe_bo_evict_kunit ================ [20:09:50] ===================== [SKIPPED] xe_bo ====================== [20:09:50] ==================== args (11 subtests) ==================== [20:09:50] [PASSED] count_args_test [20:09:50] [PASSED] call_args_example [20:09:50] [PASSED] call_args_test [20:09:50] [PASSED] drop_first_arg_example [20:09:50] [PASSED] drop_first_arg_test [20:09:50] [PASSED] first_arg_example [20:09:50] [PASSED] first_arg_test [20:09:50] [PASSED] last_arg_example [20:09:50] [PASSED] last_arg_test [20:09:50] [PASSED] pick_arg_example [20:09:50] [PASSED] sep_comma_example [20:09:50] ====================== [PASSED] args ======================= [20:09:50] =================== xe_pci (2 subtests) ==================== [20:09:50] [PASSED] xe_gmdid_graphics_ip [20:09:50] [PASSED] xe_gmdid_media_ip [20:09:50] ===================== [PASSED] xe_pci ====================== [20:09:50] =================== xe_rtp (2 subtests) ==================== [20:09:50] =============== xe_rtp_process_to_sr_tests ================ [20:09:50] [PASSED] coalesce-same-reg [20:09:50] [PASSED] no-match-no-add [20:09:50] [PASSED] match-or [20:09:50] [PASSED] match-or-xfail [20:09:50] [PASSED] no-match-no-add-multiple-rules [20:09:50] [PASSED] two-regs-two-entries [20:09:50] [PASSED] clr-one-set-other [20:09:50] [PASSED] set-field [20:09:50] [PASSED] conflict-duplicate [20:09:50] [PASSED] conflict-not-disjoint stty: 'standard input': Inappropriate ioctl for device [20:09:50] [PASSED] conflict-reg-type [20:09:50] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [20:09:50] ================== xe_rtp_process_tests =================== [20:09:50] [PASSED] active1 [20:09:50] [PASSED] active2 [20:09:50] [PASSED] active-inactive [20:09:50] [PASSED] inactive-active [20:09:50] [PASSED] inactive-1st_or_active-inactive [20:09:50] [PASSED] inactive-2nd_or_active-inactive [20:09:50] [PASSED] inactive-last_or_active-inactive [20:09:50] [PASSED] inactive-no_or_active-inactive [20:09:50] ============== [PASSED] xe_rtp_process_tests =============== [20:09:50] ===================== [PASSED] xe_rtp ====================== [20:09:50] ==================== xe_wa (1 subtest) ===================== [20:09:50] ======================== xe_wa_gt ========================= [20:09:50] [PASSED] TIGERLAKE (B0) [20:09:50] [PASSED] DG1 (A0) [20:09:50] [PASSED] DG1 (B0) [20:09:50] [PASSED] ALDERLAKE_S (A0) [20:09:50] [PASSED] ALDERLAKE_S (B0) [20:09:50] [PASSED] ALDERLAKE_S (C0) [20:09:50] [PASSED] ALDERLAKE_S (D0) [20:09:50] [PASSED] ALDERLAKE_P (A0) [20:09:50] [PASSED] ALDERLAKE_P (B0) [20:09:50] [PASSED] ALDERLAKE_P (C0) [20:09:50] [PASSED] ALDERLAKE_S_RPLS (D0) [20:09:50] [PASSED] ALDERLAKE_P_RPLU (E0) [20:09:50] [PASSED] DG2_G10 (C0) [20:09:50] [PASSED] DG2_G11 (B1) [20:09:50] [PASSED] DG2_G12 (A1) [20:09:50] [PASSED] METEORLAKE (g:A0, m:A0) [20:09:50] [PASSED] METEORLAKE (g:A0, m:A0) [20:09:50] [PASSED] METEORLAKE (g:A0, m:A0) [20:09:50] [PASSED] LUNARLAKE (g:A0, m:A0) [20:09:50] [PASSED] LUNARLAKE (g:B0, m:A0) [20:09:50] [PASSED] BATTLEMAGE (g:A0, m:A1) [20:09:50] ==================== [PASSED] xe_wa_gt ===================== [20:09:50] ====================== [PASSED] xe_wa ====================== [20:09:50] ============================================================ [20:09:50] Testing complete. Ran 133 tests: passed: 117, skipped: 16 [20:09:50] Elapsed time: 31.683s total, 4.177s configuring, 27.190s building, 0.298s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [20:09:50] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [20:09:52] 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 [20:10:14] Starting KUnit Kernel (1/1)... [20:10:14] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [20:10:14] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [20:10:14] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [20:10:14] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [20:10:14] =========== drm_validate_clone_mode (2 subtests) =========== [20:10:14] ============== drm_test_check_in_clone_mode =============== [20:10:14] [PASSED] in_clone_mode [20:10:14] [PASSED] not_in_clone_mode [20:10:14] ========== [PASSED] drm_test_check_in_clone_mode =========== [20:10:14] =============== drm_test_check_valid_clones =============== [20:10:14] [PASSED] not_in_clone_mode [20:10:14] [PASSED] valid_clone [20:10:14] [PASSED] invalid_clone [20:10:14] =========== [PASSED] drm_test_check_valid_clones =========== [20:10:14] ============= [PASSED] drm_validate_clone_mode ============= [20:10:14] ============= drm_validate_modeset (1 subtest) ============= [20:10:14] [PASSED] drm_test_check_connector_changed_modeset [20:10:14] ============== [PASSED] drm_validate_modeset =============== [20:10:14] ====== drm_test_bridge_get_current_state (2 subtests) ====== [20:10:14] [PASSED] drm_test_drm_bridge_get_current_state_atomic [20:10:14] [PASSED] drm_test_drm_bridge_get_current_state_legacy [20:10:14] ======== [PASSED] drm_test_bridge_get_current_state ======== [20:10:14] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [20:10:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [20:10:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [20:10:14] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [20:10:14] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [20:10:14] ============== drm_bridge_alloc (2 subtests) =============== [20:10:14] [PASSED] drm_test_drm_bridge_alloc_basic [20:10:14] [PASSED] drm_test_drm_bridge_alloc_get_put [20:10:14] ================ [PASSED] drm_bridge_alloc ================= [20:10:14] ================== drm_buddy (7 subtests) ================== [20:10:14] [PASSED] drm_test_buddy_alloc_limit [20:10:14] [PASSED] drm_test_buddy_alloc_optimistic [20:10:14] [PASSED] drm_test_buddy_alloc_pessimistic [20:10:14] [PASSED] drm_test_buddy_alloc_pathological [20:10:14] [PASSED] drm_test_buddy_alloc_contiguous [20:10:14] [PASSED] drm_test_buddy_alloc_clear [20:10:14] [PASSED] drm_test_buddy_alloc_range_bias [20:10:14] ==================== [PASSED] drm_buddy ==================== [20:10:14] ============= drm_cmdline_parser (40 subtests) ============= [20:10:14] [PASSED] drm_test_cmdline_force_d_only [20:10:14] [PASSED] drm_test_cmdline_force_D_only_dvi [20:10:14] [PASSED] drm_test_cmdline_force_D_only_hdmi [20:10:14] [PASSED] drm_test_cmdline_force_D_only_not_digital [20:10:14] [PASSED] drm_test_cmdline_force_e_only [20:10:14] [PASSED] drm_test_cmdline_res [20:10:14] [PASSED] drm_test_cmdline_res_vesa [20:10:14] [PASSED] drm_test_cmdline_res_vesa_rblank [20:10:14] [PASSED] drm_test_cmdline_res_rblank [20:10:14] [PASSED] drm_test_cmdline_res_bpp [20:10:14] [PASSED] drm_test_cmdline_res_refresh [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [20:10:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [20:10:14] [PASSED] drm_test_cmdline_res_margins_force_on [20:10:14] [PASSED] drm_test_cmdline_res_vesa_margins [20:10:14] [PASSED] drm_test_cmdline_name [20:10:14] [PASSED] drm_test_cmdline_name_bpp [20:10:14] [PASSED] drm_test_cmdline_name_option [20:10:14] [PASSED] drm_test_cmdline_name_bpp_option [20:10:14] [PASSED] drm_test_cmdline_rotate_0 [20:10:14] [PASSED] drm_test_cmdline_rotate_90 [20:10:14] [PASSED] drm_test_cmdline_rotate_180 [20:10:14] [PASSED] drm_test_cmdline_rotate_270 [20:10:14] [PASSED] drm_test_cmdline_hmirror [20:10:14] [PASSED] drm_test_cmdline_vmirror [20:10:14] [PASSED] drm_test_cmdline_margin_options [20:10:14] [PASSED] drm_test_cmdline_multiple_options [20:10:14] [PASSED] drm_test_cmdline_bpp_extra_and_option [20:10:14] [PASSED] drm_test_cmdline_extra_and_option [20:10:14] [PASSED] drm_test_cmdline_freestanding_options [20:10:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [20:10:14] [PASSED] drm_test_cmdline_panel_orientation [20:10:14] ================ drm_test_cmdline_invalid ================= [20:10:14] [PASSED] margin_only [20:10:14] [PASSED] interlace_only [20:10:14] [PASSED] res_missing_x [20:10:14] [PASSED] res_missing_y [20:10:14] [PASSED] res_bad_y [20:10:14] [PASSED] res_missing_y_bpp [20:10:14] [PASSED] res_bad_bpp [20:10:14] [PASSED] res_bad_refresh [20:10:14] [PASSED] res_bpp_refresh_force_on_off [20:10:14] [PASSED] res_invalid_mode [20:10:14] [PASSED] res_bpp_wrong_place_mode [20:10:14] [PASSED] name_bpp_refresh [20:10:14] [PASSED] name_refresh [20:10:14] [PASSED] name_refresh_wrong_mode [20:10:14] [PASSED] name_refresh_invalid_mode [20:10:14] [PASSED] rotate_multiple [20:10:14] [PASSED] rotate_invalid_val [20:10:14] [PASSED] rotate_truncated [20:10:14] [PASSED] invalid_option [20:10:14] [PASSED] invalid_tv_option [20:10:14] [PASSED] truncated_tv_option [20:10:14] ============ [PASSED] drm_test_cmdline_invalid ============= [20:10:14] =============== drm_test_cmdline_tv_options =============== [20:10:14] [PASSED] NTSC [20:10:14] [PASSED] NTSC_443 [20:10:14] [PASSED] NTSC_J [20:10:14] [PASSED] PAL [20:10:14] [PASSED] PAL_M [20:10:14] [PASSED] PAL_N [20:10:14] [PASSED] SECAM [20:10:14] [PASSED] MONO_525 [20:10:14] [PASSED] MONO_625 [20:10:14] =========== [PASSED] drm_test_cmdline_tv_options =========== [20:10:14] =============== [PASSED] drm_cmdline_parser ================ [20:10:14] ========== drmm_connector_hdmi_init (20 subtests) ========== [20:10:14] [PASSED] drm_test_connector_hdmi_init_valid [20:10:14] [PASSED] drm_test_connector_hdmi_init_bpc_8 [20:10:14] [PASSED] drm_test_connector_hdmi_init_bpc_10 [20:10:14] [PASSED] drm_test_connector_hdmi_init_bpc_12 [20:10:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [20:10:14] [PASSED] drm_test_connector_hdmi_init_bpc_null [20:10:14] [PASSED] drm_test_connector_hdmi_init_formats_empty [20:10:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [20:10:14] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [20:10:14] [PASSED] supported_formats=0x9 yuv420_allowed=1 [20:10:14] [PASSED] supported_formats=0x9 yuv420_allowed=0 [20:10:14] [PASSED] supported_formats=0x3 yuv420_allowed=1 [20:10:14] [PASSED] supported_formats=0x3 yuv420_allowed=0 [20:10:14] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [20:10:14] [PASSED] drm_test_connector_hdmi_init_null_ddc [20:10:14] [PASSED] drm_test_connector_hdmi_init_null_product [20:10:14] [PASSED] drm_test_connector_hdmi_init_null_vendor [20:10:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact [20:10:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [20:10:14] [PASSED] drm_test_connector_hdmi_init_product_valid [20:10:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [20:10:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [20:10:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid [20:10:14] ========= drm_test_connector_hdmi_init_type_valid ========= [20:10:14] [PASSED] HDMI-A [20:10:14] [PASSED] HDMI-B [20:10:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [20:10:14] ======== drm_test_connector_hdmi_init_type_invalid ======== [20:10:14] [PASSED] Unknown [20:10:14] [PASSED] VGA [20:10:14] [PASSED] DVI-I [20:10:14] [PASSED] DVI-D [20:10:14] [PASSED] DVI-A [20:10:14] [PASSED] Composite [20:10:14] [PASSED] SVIDEO [20:10:14] [PASSED] LVDS [20:10:14] [PASSED] Component [20:10:14] [PASSED] DIN [20:10:14] [PASSED] DP [20:10:14] [PASSED] TV [20:10:14] [PASSED] eDP [20:10:14] [PASSED] Virtual [20:10:14] [PASSED] DSI [20:10:14] [PASSED] DPI [20:10:14] [PASSED] Writeback [20:10:14] [PASSED] SPI [20:10:14] [PASSED] USB [20:10:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [20:10:14] ============ [PASSED] drmm_connector_hdmi_init ============= [20:10:14] ============= drmm_connector_init (3 subtests) ============= [20:10:14] [PASSED] drm_test_drmm_connector_init [20:10:14] [PASSED] drm_test_drmm_connector_init_null_ddc [20:10:14] ========= drm_test_drmm_connector_init_type_valid ========= [20:10:14] [PASSED] Unknown [20:10:14] [PASSED] VGA [20:10:14] [PASSED] DVI-I [20:10:14] [PASSED] DVI-D [20:10:14] [PASSED] DVI-A [20:10:14] [PASSED] Composite [20:10:14] [PASSED] SVIDEO [20:10:14] [PASSED] LVDS [20:10:14] [PASSED] Component [20:10:14] [PASSED] DIN [20:10:14] [PASSED] DP [20:10:14] [PASSED] HDMI-A [20:10:14] [PASSED] HDMI-B [20:10:14] [PASSED] TV [20:10:14] [PASSED] eDP [20:10:14] [PASSED] Virtual [20:10:14] [PASSED] DSI [20:10:14] [PASSED] DPI [20:10:14] [PASSED] Writeback [20:10:14] [PASSED] SPI [20:10:14] [PASSED] USB [20:10:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [20:10:14] =============== [PASSED] drmm_connector_init =============== [20:10:14] ========= drm_connector_dynamic_init (6 subtests) ========== [20:10:14] [PASSED] drm_test_drm_connector_dynamic_init [20:10:14] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [20:10:14] [PASSED] drm_test_drm_connector_dynamic_init_not_added [20:10:14] [PASSED] drm_test_drm_connector_dynamic_init_properties [20:10:14] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [20:10:14] [PASSED] Unknown [20:10:14] [PASSED] VGA [20:10:14] [PASSED] DVI-I [20:10:14] [PASSED] DVI-D [20:10:14] [PASSED] DVI-A [20:10:14] [PASSED] Composite [20:10:14] [PASSED] SVIDEO [20:10:14] [PASSED] LVDS [20:10:14] [PASSED] Component [20:10:14] [PASSED] DIN [20:10:14] [PASSED] DP [20:10:14] [PASSED] HDMI-A [20:10:14] [PASSED] HDMI-B [20:10:14] [PASSED] TV [20:10:14] [PASSED] eDP [20:10:14] [PASSED] Virtual [20:10:14] [PASSED] DSI [20:10:14] [PASSED] DPI [20:10:14] [PASSED] Writeback [20:10:14] [PASSED] SPI [20:10:14] [PASSED] USB [20:10:14] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [20:10:14] ======== drm_test_drm_connector_dynamic_init_name ========= [20:10:14] [PASSED] Unknown [20:10:14] [PASSED] VGA [20:10:14] [PASSED] DVI-I [20:10:14] [PASSED] DVI-D [20:10:14] [PASSED] DVI-A [20:10:14] [PASSED] Composite [20:10:14] [PASSED] SVIDEO [20:10:14] [PASSED] LVDS [20:10:14] [PASSED] Component [20:10:14] [PASSED] DIN [20:10:14] [PASSED] DP [20:10:14] [PASSED] HDMI-A [20:10:14] [PASSED] HDMI-B [20:10:14] [PASSED] TV [20:10:14] [PASSED] eDP [20:10:14] [PASSED] Virtual [20:10:14] [PASSED] DSI [20:10:14] [PASSED] DPI [20:10:14] [PASSED] Writeback [20:10:14] [PASSED] SPI [20:10:14] [PASSED] USB [20:10:14] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [20:10:14] =========== [PASSED] drm_connector_dynamic_init ============ [20:10:14] ==== drm_connector_dynamic_register_early (4 subtests) ===== [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [20:10:14] ====== [PASSED] drm_connector_dynamic_register_early ======= [20:10:14] ======= drm_connector_dynamic_register (7 subtests) ======== [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_on_list [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_no_init [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [20:10:14] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [20:10:14] ========= [PASSED] drm_connector_dynamic_register ========== [20:10:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [20:10:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [20:10:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [20:10:14] === [PASSED] drm_connector_attach_broadcast_rgb_property === [20:10:14] ========== drm_get_tv_mode_from_name (2 subtests) ========== [20:10:14] ========== drm_test_get_tv_mode_from_name_valid =========== [20:10:14] [PASSED] NTSC [20:10:14] [PASSED] NTSC-443 [20:10:14] [PASSED] NTSC-J [20:10:14] [PASSED] PAL [20:10:14] [PASSED] PAL-M [20:10:14] [PASSED] PAL-N [20:10:14] [PASSED] SECAM [20:10:14] [PASSED] Mono [20:10:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [20:10:14] [PASSED] drm_test_get_tv_mode_from_name_truncated [20:10:14] ============ [PASSED] drm_get_tv_mode_from_name ============ [20:10:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [20:10:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [20:10:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [20:10:14] [PASSED] VIC 96 [20:10:14] [PASSED] VIC 97 [20:10:14] [PASSED] VIC 101 [20:10:14] [PASSED] VIC 102 [20:10:14] [PASSED] VIC 106 [20:10:14] [PASSED] VIC 107 [20:10:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [20:10:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [20:10:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [20:10:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [20:10:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [20:10:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [20:10:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [20:10:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [20:10:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [20:10:14] [PASSED] Automatic [20:10:14] [PASSED] Full [20:10:14] [PASSED] Limited 16:235 [20:10:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [20:10:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [20:10:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [20:10:14] == drm_hdmi_connector_get_output_format_name (2 subtests) == [20:10:14] === drm_test_drm_hdmi_connector_get_output_format_name ==== [20:10:14] [PASSED] RGB [20:10:14] [PASSED] YUV 4:2:0 [20:10:14] [PASSED] YUV 4:2:2 [20:10:14] [PASSED] YUV 4:4:4 [20:10:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [20:10:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [20:10:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [20:10:14] ============= drm_damage_helper (21 subtests) ============== [20:10:14] [PASSED] drm_test_damage_iter_no_damage [20:10:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src [20:10:14] [PASSED] drm_test_damage_iter_no_damage_src_moved [20:10:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [20:10:14] [PASSED] drm_test_damage_iter_no_damage_not_visible [20:10:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc [20:10:14] [PASSED] drm_test_damage_iter_no_damage_no_fb [20:10:14] [PASSED] drm_test_damage_iter_simple_damage [20:10:14] [PASSED] drm_test_damage_iter_single_damage [20:10:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src [20:10:14] [PASSED] drm_test_damage_iter_single_damage_outside_src [20:10:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src [20:10:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [20:10:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [20:10:14] [PASSED] drm_test_damage_iter_single_damage_src_moved [20:10:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [20:10:14] [PASSED] drm_test_damage_iter_damage [20:10:14] [PASSED] drm_test_damage_iter_damage_one_intersect [20:10:14] [PASSED] drm_test_damage_iter_damage_one_outside [20:10:14] [PASSED] drm_test_damage_iter_damage_src_moved [20:10:14] [PASSED] drm_test_damage_iter_damage_not_visible [20:10:14] ================ [PASSED] drm_damage_helper ================ [20:10:14] ============== drm_dp_mst_helper (3 subtests) ============== [20:10:14] ============== drm_test_dp_mst_calc_pbn_mode ============== [20:10:14] [PASSED] Clock 154000 BPP 30 DSC disabled [20:10:14] [PASSED] Clock 234000 BPP 30 DSC disabled [20:10:14] [PASSED] Clock 297000 BPP 24 DSC disabled [20:10:14] [PASSED] Clock 332880 BPP 24 DSC enabled [20:10:14] [PASSED] Clock 324540 BPP 24 DSC enabled [20:10:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [20:10:14] ============== drm_test_dp_mst_calc_pbn_div =============== [20:10:14] [PASSED] Link rate 2000000 lane count 4 [20:10:14] [PASSED] Link rate 2000000 lane count 2 [20:10:14] [PASSED] Link rate 2000000 lane count 1 [20:10:14] [PASSED] Link rate 1350000 lane count 4 [20:10:14] [PASSED] Link rate 1350000 lane count 2 [20:10:14] [PASSED] Link rate 1350000 lane count 1 [20:10:14] [PASSED] Link rate 1000000 lane count 4 [20:10:14] [PASSED] Link rate 1000000 lane count 2 [20:10:14] [PASSED] Link rate 1000000 lane count 1 [20:10:14] [PASSED] Link rate 810000 lane count 4 [20:10:14] [PASSED] Link rate 810000 lane count 2 [20:10:14] [PASSED] Link rate 810000 lane count 1 [20:10:14] [PASSED] Link rate 540000 lane count 4 [20:10:14] [PASSED] Link rate 540000 lane count 2 [20:10:14] [PASSED] Link rate 540000 lane count 1 [20:10:14] [PASSED] Link rate 270000 lane count 4 [20:10:14] [PASSED] Link rate 270000 lane count 2 [20:10:14] [PASSED] Link rate 270000 lane count 1 [20:10:14] [PASSED] Link rate 162000 lane count 4 [20:10:14] [PASSED] Link rate 162000 lane count 2 [20:10:14] [PASSED] Link rate 162000 lane count 1 [20:10:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [20:10:14] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [20:10:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number [20:10:14] [PASSED] DP_POWER_UP_PHY with port number [20:10:14] [PASSED] DP_POWER_DOWN_PHY with port number [20:10:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [20:10:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number [20:10:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [20:10:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [20:10:14] [PASSED] DP_QUERY_PAYLOAD with port number [20:10:14] [PASSED] DP_QUERY_PAYLOAD with VCPI [20:10:14] [PASSED] DP_REMOTE_DPCD_READ with port number [20:10:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [20:10:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [20:10:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number [20:10:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [20:10:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array [20:10:14] [PASSED] DP_REMOTE_I2C_READ with port number [20:10:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [20:10:14] [PASSED] DP_REMOTE_I2C_READ with transactions array [20:10:14] [PASSED] DP_REMOTE_I2C_WRITE with port number [20:10:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [20:10:14] [PASSED] DP_REMOTE_I2C_WRITE with data array [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [20:10:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [20:10:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [20:10:14] ================ [PASSED] drm_dp_mst_helper ================ [20:10:14] ================== drm_exec (7 subtests) =================== [20:10:14] [PASSED] sanitycheck [20:10:14] [PASSED] test_lock [20:10:14] [PASSED] test_lock_unlock [20:10:14] [PASSED] test_duplicates [20:10:14] [PASSED] test_prepare [20:10:14] [PASSED] test_prepare_array [20:10:14] [PASSED] test_multiple_loops [20:10:14] ==================== [PASSED] drm_exec ===================== [20:10:14] =========== drm_format_helper_test (18 subtests) =========== [20:10:14] ============== drm_test_fb_xrgb8888_to_gray8 ============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [20:10:14] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [20:10:14] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [20:10:14] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [20:10:14] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [20:10:14] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [20:10:14] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [20:10:14] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [20:10:14] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [20:10:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [20:10:14] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [20:10:14] ============== drm_test_fb_xrgb8888_to_mono =============== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [20:10:14] ==================== drm_test_fb_swab ===================== [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ================ [PASSED] drm_test_fb_swab ================= [20:10:14] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [20:10:14] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [20:10:14] [PASSED] single_pixel_source_buffer [20:10:14] [PASSED] single_pixel_clip_rectangle [20:10:14] [PASSED] well_known_colors [20:10:14] [PASSED] destination_pitch [20:10:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [20:10:14] ================= drm_test_fb_clip_offset ================= [20:10:14] [PASSED] pass through [20:10:14] [PASSED] horizontal offset [20:10:14] [PASSED] vertical offset [20:10:14] [PASSED] horizontal and vertical offset [20:10:14] [PASSED] horizontal offset (custom pitch) [20:10:14] [PASSED] vertical offset (custom pitch) [20:10:14] [PASSED] horizontal and vertical offset (custom pitch) [20:10:14] ============= [PASSED] drm_test_fb_clip_offset ============= [20:10:14] ============== drm_test_fb_build_fourcc_list ============== [20:10:14] [PASSED] no native formats [20:10:14] [PASSED] XRGB8888 as native format [20:10:14] [PASSED] remove duplicates [20:10:14] [PASSED] convert alpha formats [20:10:14] [PASSED] random formats [20:10:14] ========== [PASSED] drm_test_fb_build_fourcc_list ========== [20:10:14] =================== drm_test_fb_memcpy ==================== [20:10:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [20:10:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [20:10:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [20:10:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [20:10:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [20:10:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [20:10:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [20:10:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [20:10:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [20:10:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [20:10:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [20:10:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [20:10:14] =============== [PASSED] drm_test_fb_memcpy ================ [20:10:14] ============= [PASSED] drm_format_helper_test ============== [20:10:14] ================= drm_format (18 subtests) ================= [20:10:14] [PASSED] drm_test_format_block_width_invalid [20:10:14] [PASSED] drm_test_format_block_width_one_plane [20:10:14] [PASSED] drm_test_format_block_width_two_plane [20:10:14] [PASSED] drm_test_format_block_width_three_plane [20:10:14] [PASSED] drm_test_format_block_width_tiled [20:10:14] [PASSED] drm_test_format_block_height_invalid [20:10:14] [PASSED] drm_test_format_block_height_one_plane [20:10:14] [PASSED] drm_test_format_block_height_two_plane [20:10:14] [PASSED] drm_test_format_block_height_three_plane [20:10:14] [PASSED] drm_test_format_block_height_tiled [20:10:14] [PASSED] drm_test_format_min_pitch_invalid [20:10:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [20:10:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [20:10:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [20:10:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [20:10:14] [PASSED] drm_test_format_min_pitch_two_plane [20:10:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [20:10:14] [PASSED] drm_test_format_min_pitch_tiled [20:10:14] =================== [PASSED] drm_format ==================== [20:10:14] ============== drm_framebuffer (10 subtests) =============== [20:10:14] ========== drm_test_framebuffer_check_src_coords ========== [20:10:14] [PASSED] Success: source fits into fb [20:10:14] [PASSED] Fail: overflowing fb with x-axis coordinate [20:10:14] [PASSED] Fail: overflowing fb with y-axis coordinate [20:10:14] [PASSED] Fail: overflowing fb with source width [20:10:14] [PASSED] Fail: overflowing fb with source height [20:10:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [20:10:14] [PASSED] drm_test_framebuffer_cleanup [20:10:14] =============== drm_test_framebuffer_create =============== [20:10:14] [PASSED] ABGR8888 normal sizes [20:10:14] [PASSED] ABGR8888 max sizes [20:10:14] [PASSED] ABGR8888 pitch greater than min required [20:10:14] [PASSED] ABGR8888 pitch less than min required [20:10:14] [PASSED] ABGR8888 Invalid width [20:10:14] [PASSED] ABGR8888 Invalid buffer handle [20:10:14] [PASSED] No pixel format [20:10:14] [PASSED] ABGR8888 Width 0 [20:10:14] [PASSED] ABGR8888 Height 0 [20:10:14] [PASSED] ABGR8888 Out of bound height * pitch combination [20:10:14] [PASSED] ABGR8888 Large buffer offset [20:10:14] [PASSED] ABGR8888 Buffer offset for inexistent plane [20:10:14] [PASSED] ABGR8888 Invalid flag [20:10:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [20:10:14] [PASSED] ABGR8888 Valid buffer modifier [20:10:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [20:10:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] NV12 Normal sizes [20:10:14] [PASSED] NV12 Max sizes [20:10:14] [PASSED] NV12 Invalid pitch [20:10:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [20:10:14] [PASSED] NV12 different modifier per-plane [20:10:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [20:10:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] NV12 Modifier for inexistent plane [20:10:14] [PASSED] NV12 Handle for inexistent plane [20:10:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [20:10:14] [PASSED] YVU420 Normal sizes [20:10:14] [PASSED] YVU420 Max sizes [20:10:14] [PASSED] YVU420 Invalid pitch [20:10:14] [PASSED] YVU420 Different pitches [20:10:14] [PASSED] YVU420 Different buffer offsets/pitches [20:10:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [20:10:14] [PASSED] YVU420 Valid modifier [20:10:14] [PASSED] YVU420 Different modifiers per plane [20:10:14] [PASSED] YVU420 Modifier for inexistent plane [20:10:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [20:10:14] [PASSED] X0L2 Normal sizes [20:10:14] [PASSED] X0L2 Max sizes [20:10:14] [PASSED] X0L2 Invalid pitch [20:10:14] [PASSED] X0L2 Pitch greater than minimum required [20:10:14] [PASSED] X0L2 Handle for inexistent plane [20:10:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [20:10:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [20:10:14] [PASSED] X0L2 Valid modifier [20:10:14] [PASSED] X0L2 Modifier for inexistent plane [20:10:14] =========== [PASSED] drm_test_framebuffer_create =========== [20:10:14] [PASSED] drm_test_framebuffer_free [20:10:14] [PASSED] drm_test_framebuffer_init [20:10:14] [PASSED] drm_test_framebuffer_init_bad_format [20:10:14] [PASSED] drm_test_framebuffer_init_dev_mismatch [20:10:14] [PASSED] drm_test_framebuffer_lookup [20:10:14] [PASSED] drm_test_framebuffer_lookup_inexistent [20:10:14] [PASSED] drm_test_framebuffer_modifiers_not_supported [20:10:14] ================= [PASSED] drm_framebuffer ================= [20:10:14] ================ drm_gem_shmem (8 subtests) ================ [20:10:14] [PASSED] drm_gem_shmem_test_obj_create [20:10:14] [PASSED] drm_gem_shmem_test_obj_create_private [20:10:14] [PASSED] drm_gem_shmem_test_pin_pages [20:10:14] [PASSED] drm_gem_shmem_test_vmap [20:10:14] [PASSED] drm_gem_shmem_test_get_pages_sgt [20:10:14] [PASSED] drm_gem_shmem_test_get_sg_table [20:10:14] [PASSED] drm_gem_shmem_test_madvise [20:10:14] [PASSED] drm_gem_shmem_test_purge [20:10:14] ================== [PASSED] drm_gem_shmem ================== [20:10:14] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [20:10:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [20:10:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [20:10:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [20:10:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [20:10:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [20:10:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [20:10:14] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [20:10:14] [PASSED] Automatic [20:10:14] [PASSED] Full [20:10:14] [PASSED] Limited 16:235 [20:10:14] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [20:10:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [20:10:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [20:10:14] [PASSED] drm_test_check_disable_connector [20:10:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate [20:10:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [20:10:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [20:10:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [20:10:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [20:10:14] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [20:10:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [20:10:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [20:10:14] [PASSED] drm_test_check_output_bpc_dvi [20:10:14] [PASSED] drm_test_check_output_bpc_format_vic_1 [20:10:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [20:10:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [20:10:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [20:10:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [20:10:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [20:10:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [20:10:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [20:10:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [20:10:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [20:10:14] [PASSED] drm_test_check_broadcast_rgb_value [20:10:14] [PASSED] drm_test_check_bpc_8_value [20:10:14] [PASSED] drm_test_check_bpc_10_value [20:10:14] [PASSED] drm_test_check_bpc_12_value [20:10:14] [PASSED] drm_test_check_format_value [20:10:14] [PASSED] drm_test_check_tmds_char_value [20:10:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [20:10:14] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [20:10:14] [PASSED] drm_test_check_mode_valid [20:10:14] [PASSED] drm_test_check_mode_valid_reject [20:10:14] [PASSED] drm_test_check_mode_valid_reject_rate [20:10:14] [PASSED] drm_test_check_mode_valid_reject_max_clock [20:10:14] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [20:10:14] ================= drm_managed (2 subtests) ================= [20:10:14] [PASSED] drm_test_managed_release_action [20:10:14] [PASSED] drm_test_managed_run_action [20:10:14] =================== [PASSED] drm_managed =================== [20:10:14] =================== drm_mm (6 subtests) ==================== [20:10:14] [PASSED] drm_test_mm_init [20:10:14] [PASSED] drm_test_mm_debug [20:10:14] [PASSED] drm_test_mm_align32 [20:10:14] [PASSED] drm_test_mm_align64 [20:10:14] [PASSED] drm_test_mm_lowest [20:10:14] [PASSED] drm_test_mm_highest [20:10:14] ===================== [PASSED] drm_mm ====================== [20:10:14] ============= drm_modes_analog_tv (5 subtests) ============= [20:10:14] [PASSED] drm_test_modes_analog_tv_mono_576i [20:10:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i [20:10:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [20:10:14] [PASSED] drm_test_modes_analog_tv_pal_576i [20:10:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [20:10:14] =============== [PASSED] drm_modes_analog_tv =============== [20:10:14] ============== drm_plane_helper (2 subtests) =============== [20:10:14] =============== drm_test_check_plane_state ================ [20:10:14] [PASSED] clipping_simple [20:10:14] [PASSED] clipping_rotate_reflect [20:10:14] [PASSED] positioning_simple [20:10:14] [PASSED] upscaling [20:10:14] [PASSED] downscaling [20:10:14] [PASSED] rounding1 [20:10:14] [PASSED] rounding2 [20:10:14] [PASSED] rounding3 [20:10:14] [PASSED] rounding4 [20:10:14] =========== [PASSED] drm_test_check_plane_state ============ [20:10:14] =========== drm_test_check_invalid_plane_state ============ [20:10:14] [PASSED] positioning_invalid [20:10:14] [PASSED] upscaling_invalid [20:10:14] [PASSED] downscaling_invalid [20:10:14] ======= [PASSED] drm_test_check_invalid_plane_state ======== [20:10:14] ================ [PASSED] drm_plane_helper ================= [20:10:14] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [20:10:14] ====== drm_test_connector_helper_tv_get_modes_check ======= [20:10:14] [PASSED] None [20:10:14] [PASSED] PAL [20:10:14] [PASSED] NTSC [20:10:14] [PASSED] Both, NTSC Default [20:10:14] [PASSED] Both, PAL Default [20:10:14] [PASSED] Both, NTSC Default, with PAL on command-line [20:10:14] [PASSED] Both, PAL Default, with NTSC on command-line [20:10:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [20:10:14] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [20:10:14] ================== drm_rect (9 subtests) =================== [20:10:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero [20:10:14] [PASSED] drm_test_rect_clip_scaled_not_clipped [20:10:14] [PASSED] drm_test_rect_clip_scaled_clipped [20:10:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [20:10:14] ================= drm_test_rect_intersect ================= [20:10:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [20:10:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [20:10:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [20:10:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [20:10:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [20:10:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [20:10:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [20:10:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [20:10:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [20:10:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [20:10:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [20:10:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [20:10:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [20:10:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [20:10:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [20:10:14] ============= [PASSED] drm_test_rect_intersect ============= [20:10:14] ================ drm_test_rect_calc_hscale ================ [20:10:14] [PASSED] normal use [20:10:14] [PASSED] out of max range [20:10:14] [PASSED] out of min range [20:10:14] [PASSED] zero dst [20:10:14] [PASSED] negative src [20:10:14] [PASSED] negative dst [20:10:14] ============ [PASSED] drm_test_rect_calc_hscale ============ [20:10:14] ================ drm_test_rect_calc_vscale ================ [20:10:14] [PASSED] normal use [20:10:14] [PASSED] out of max range [20:10:14] [PASSED] out of min range [20:10:14] [PASSED] zero dst [20:10:14] [PASSED] negative src [20:10:14] [PASSED] negative dst stty: 'standard input': Inappropriate ioctl for device [20:10:14] ============ [PASSED] drm_test_rect_calc_vscale ============ [20:10:14] ================== drm_test_rect_rotate =================== [20:10:14] [PASSED] reflect-x [20:10:14] [PASSED] reflect-y [20:10:14] [PASSED] rotate-0 [20:10:14] [PASSED] rotate-90 [20:10:14] [PASSED] rotate-180 [20:10:14] [PASSED] rotate-270 [20:10:14] ============== [PASSED] drm_test_rect_rotate =============== [20:10:14] ================ drm_test_rect_rotate_inv ================= [20:10:14] [PASSED] reflect-x [20:10:14] [PASSED] reflect-y [20:10:14] [PASSED] rotate-0 [20:10:14] [PASSED] rotate-90 [20:10:14] [PASSED] rotate-180 [20:10:14] [PASSED] rotate-270 [20:10:14] ============ [PASSED] drm_test_rect_rotate_inv ============= [20:10:14] ==================== [PASSED] drm_rect ===================== [20:10:14] ============================================================ [20:10:14] Testing complete. Ran 616 tests: passed: 616 [20:10:14] Elapsed time: 23.780s total, 1.682s configuring, 21.877s building, 0.182s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [20:10:14] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [20:10:16] 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 [20:10:24] Starting KUnit Kernel (1/1)... [20:10:24] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [20:10:24] ================= ttm_device (5 subtests) ================== [20:10:24] [PASSED] ttm_device_init_basic [20:10:24] [PASSED] ttm_device_init_multiple [20:10:24] [PASSED] ttm_device_fini_basic [20:10:24] [PASSED] ttm_device_init_no_vma_man [20:10:24] ================== ttm_device_init_pools ================== [20:10:24] [PASSED] No DMA allocations, no DMA32 required [20:10:24] [PASSED] DMA allocations, DMA32 required [20:10:24] [PASSED] No DMA allocations, DMA32 required [20:10:24] [PASSED] DMA allocations, no DMA32 required [20:10:24] ============== [PASSED] ttm_device_init_pools ============== [20:10:24] =================== [PASSED] ttm_device ==================== [20:10:24] ================== ttm_pool (8 subtests) =================== [20:10:24] ================== ttm_pool_alloc_basic =================== [20:10:24] [PASSED] One page [20:10:24] [PASSED] More than one page [20:10:24] [PASSED] Above the allocation limit [20:10:24] [PASSED] One page, with coherent DMA mappings enabled [20:10:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [20:10:24] ============== [PASSED] ttm_pool_alloc_basic =============== [20:10:24] ============== ttm_pool_alloc_basic_dma_addr ============== [20:10:24] [PASSED] One page [20:10:24] [PASSED] More than one page [20:10:24] [PASSED] Above the allocation limit [20:10:24] [PASSED] One page, with coherent DMA mappings enabled [20:10:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [20:10:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [20:10:24] [PASSED] ttm_pool_alloc_order_caching_match [20:10:24] [PASSED] ttm_pool_alloc_caching_mismatch [20:10:24] [PASSED] ttm_pool_alloc_order_mismatch [20:10:24] [PASSED] ttm_pool_free_dma_alloc [20:10:24] [PASSED] ttm_pool_free_no_dma_alloc [20:10:24] [PASSED] ttm_pool_fini_basic [20:10:24] ==================== [PASSED] ttm_pool ===================== [20:10:24] ================ ttm_resource (8 subtests) ================= [20:10:24] ================= ttm_resource_init_basic ================= [20:10:24] [PASSED] Init resource in TTM_PL_SYSTEM [20:10:24] [PASSED] Init resource in TTM_PL_VRAM [20:10:24] [PASSED] Init resource in a private placement [20:10:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [20:10:24] ============= [PASSED] ttm_resource_init_basic ============= [20:10:24] [PASSED] ttm_resource_init_pinned [20:10:24] [PASSED] ttm_resource_fini_basic [20:10:24] [PASSED] ttm_resource_manager_init_basic [20:10:24] [PASSED] ttm_resource_manager_usage_basic [20:10:24] [PASSED] ttm_resource_manager_set_used_basic [20:10:24] [PASSED] ttm_sys_man_alloc_basic [20:10:24] [PASSED] ttm_sys_man_free_basic [20:10:24] ================== [PASSED] ttm_resource =================== [20:10:24] =================== ttm_tt (15 subtests) =================== [20:10:24] ==================== ttm_tt_init_basic ==================== [20:10:24] [PASSED] Page-aligned size [20:10:24] [PASSED] Extra pages requested [20:10:24] ================ [PASSED] ttm_tt_init_basic ================ [20:10:24] [PASSED] ttm_tt_init_misaligned [20:10:24] [PASSED] ttm_tt_fini_basic [20:10:24] [PASSED] ttm_tt_fini_sg [20:10:24] [PASSED] ttm_tt_fini_shmem [20:10:24] [PASSED] ttm_tt_create_basic [20:10:24] [PASSED] ttm_tt_create_invalid_bo_type [20:10:24] [PASSED] ttm_tt_create_ttm_exists [20:10:24] [PASSED] ttm_tt_create_failed [20:10:24] [PASSED] ttm_tt_destroy_basic [20:10:24] [PASSED] ttm_tt_populate_null_ttm [20:10:24] [PASSED] ttm_tt_populate_populated_ttm [20:10:24] [PASSED] ttm_tt_unpopulate_basic [20:10:24] [PASSED] ttm_tt_unpopulate_empty_ttm [20:10:24] [PASSED] ttm_tt_swapin_basic [20:10:24] ===================== [PASSED] ttm_tt ====================== [20:10:24] =================== ttm_bo (14 subtests) =================== [20:10:24] =========== ttm_bo_reserve_optimistic_no_ticket =========== [20:10:24] [PASSED] Cannot be interrupted and sleeps [20:10:24] [PASSED] Cannot be interrupted, locks straight away [20:10:24] [PASSED] Can be interrupted, sleeps [20:10:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [20:10:24] [PASSED] ttm_bo_reserve_locked_no_sleep [20:10:24] [PASSED] ttm_bo_reserve_no_wait_ticket [20:10:24] [PASSED] ttm_bo_reserve_double_resv [20:10:24] [PASSED] ttm_bo_reserve_interrupted [20:10:24] [PASSED] ttm_bo_reserve_deadlock [20:10:24] [PASSED] ttm_bo_unreserve_basic [20:10:24] [PASSED] ttm_bo_unreserve_pinned [20:10:24] [PASSED] ttm_bo_unreserve_bulk [20:10:24] [PASSED] ttm_bo_put_basic [20:10:24] [PASSED] ttm_bo_put_shared_resv [20:10:24] [PASSED] ttm_bo_pin_basic [20:10:24] [PASSED] ttm_bo_pin_unpin_resource [20:10:24] [PASSED] ttm_bo_multiple_pin_one_unpin [20:10:24] ===================== [PASSED] ttm_bo ====================== [20:10:24] ============== ttm_bo_validate (22 subtests) =============== [20:10:24] ============== ttm_bo_init_reserved_sys_man =============== [20:10:24] [PASSED] Buffer object for userspace [20:10:24] [PASSED] Kernel buffer object [20:10:24] [PASSED] Shared buffer object [20:10:24] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [20:10:24] ============== ttm_bo_init_reserved_mock_man ============== [20:10:24] [PASSED] Buffer object for userspace [20:10:24] [PASSED] Kernel buffer object [20:10:24] [PASSED] Shared buffer object [20:10:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [20:10:24] [PASSED] ttm_bo_init_reserved_resv [20:10:24] ================== ttm_bo_validate_basic ================== [20:10:24] [PASSED] Buffer object for userspace [20:10:24] [PASSED] Kernel buffer object [20:10:24] [PASSED] Shared buffer object [20:10:24] ============== [PASSED] ttm_bo_validate_basic ============== [20:10:24] [PASSED] ttm_bo_validate_invalid_placement [20:10:24] ============= ttm_bo_validate_same_placement ============== [20:10:24] [PASSED] System manager [20:10:24] [PASSED] VRAM manager [20:10:24] ========= [PASSED] ttm_bo_validate_same_placement ========== [20:10:24] [PASSED] ttm_bo_validate_failed_alloc [20:10:24] [PASSED] ttm_bo_validate_pinned [20:10:24] [PASSED] ttm_bo_validate_busy_placement [20:10:24] ================ ttm_bo_validate_multihop ================= [20:10:24] [PASSED] Buffer object for userspace [20:10:24] [PASSED] Kernel buffer object [20:10:24] [PASSED] Shared buffer object [20:10:24] ============ [PASSED] ttm_bo_validate_multihop ============= [20:10:24] ========== ttm_bo_validate_no_placement_signaled ========== [20:10:24] [PASSED] Buffer object in system domain, no page vector [20:10:24] [PASSED] Buffer object in system domain with an existing page vector [20:10:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [20:10:24] ======== ttm_bo_validate_no_placement_not_signaled ======== [20:10:24] [PASSED] Buffer object for userspace [20:10:24] [PASSED] Kernel buffer object [20:10:24] [PASSED] Shared buffer object [20:10:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [20:10:24] [PASSED] ttm_bo_validate_move_fence_signaled [20:10:24] ========= ttm_bo_validate_move_fence_not_signaled ========= [20:10:24] [PASSED] Waits for GPU [20:10:24] [PASSED] Tries to lock straight away [20:10:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [20:10:24] [PASSED] ttm_bo_validate_swapout [20:10:24] [PASSED] ttm_bo_validate_happy_evict [20:10:24] [PASSED] ttm_bo_validate_all_pinned_evict [20:10:24] [PASSED] ttm_bo_validate_allowed_only_evict [20:10:24] [PASSED] ttm_bo_validate_deleted_evict [20:10:24] [PASSED] ttm_bo_validate_busy_domain_evict [20:10:24] [PASSED] ttm_bo_validate_evict_gutting [20:10:24] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [20:10:24] ================= [PASSED] ttm_bo_validate ================= [20:10:24] ============================================================ [20:10:24] Testing complete. Ran 102 tests: passed: 102 [20:10:24] Elapsed time: 10.127s total, 1.670s configuring, 7.791s building, 0.573s 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/xe/vf: Make multi-GT migration less error prone 2025-06-13 19:14 [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone Tomasz Lis 2025-06-13 20:10 ` ✓ CI.KUnit: success for " Patchwork @ 2025-06-13 20:48 ` Patchwork 2025-06-15 18:48 ` ✗ Xe.CI.Full: failure " Patchwork 2025-06-19 10:26 ` [PATCH v1] " K V P, Satyanarayana 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-13 20:48 UTC (permalink / raw) To: Tomasz Lis; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 963 bytes --] == Series Details == Series: drm/xe/vf: Make multi-GT migration less error prone URL : https://patchwork.freedesktop.org/series/150253/ State : success == Summary == CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_BAT -> xe-pw-150253v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150253v1 IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a xe-pw-150253v1: 150253v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/index.html [-- Attachment #2: Type: text/html, Size: 1511 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe/vf: Make multi-GT migration less error prone 2025-06-13 19:14 [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone Tomasz Lis 2025-06-13 20:10 ` ✓ CI.KUnit: success for " Patchwork 2025-06-13 20:48 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-06-15 18:48 ` Patchwork 2025-06-19 10:26 ` [PATCH v1] " K V P, Satyanarayana 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-15 18:48 UTC (permalink / raw) To: Tomasz Lis; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 68512 bytes --] == Series Details == Series: drm/xe/vf: Make multi-GT migration less error prone URL : https://patchwork.freedesktop.org/series/150253/ State : failure == Summary == CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150253v1_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-150253v1_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-150253v1_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-150253v1_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map-nomemset.html * igt@xe_pmu@gt-frequency@gt0: - shard-adlp: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-1/igt@xe_pmu@gt-frequency@gt0.html Known issues ------------ Here are the changes found in xe-pw-150253v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#664]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [FAIL][5] ([Intel XE#3908]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#787]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3862]) +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +34 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/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-a-dp-4: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#3113]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][28] ([Intel XE#3124]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][29] ([Intel XE#1727] / [Intel XE#3113]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2724]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#4417]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#306]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#5176]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1178]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1188]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-464/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2320]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2291]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2286]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#4302]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#301]) +10 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#886]) +1 other test fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2: - shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#2882]) +2 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#455]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/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][57] ([Intel XE#2293]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +9 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4141]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#656]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#653]) +9 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2313]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#1503]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2925]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_lease@lease-uevent: - shard-adlp: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_lease@lease-uevent.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-8/igt@kms_lease@lease-uevent.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#4329]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#736]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3309]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1439] / [Intel XE#3141]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1489]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2893] / [Intel XE#4608]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#4608]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1122]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-suspend: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_psr@fbc-psr-suspend.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4609]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2414]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1127]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#3414] / [Intel XE#3904]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][86] ([Intel XE#4358]) +1 other test incomplete [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_eudebug@basic-vm-bind: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-extended-discovery.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#688]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#288]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-464/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4943]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#4915]) +79 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4943]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#4937] / [Intel XE#5018]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2229]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#5100]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-3/igt@xe_mmap@pci-membarrier-bad-pagesize.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_oa@polling-small-buf.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#569]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html * igt@xe_pmu@gt-frequency: - shard-adlp: NOTRUN -> [INCOMPLETE][106] ([Intel XE#5214]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-1/igt@xe_pmu@gt-frequency.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4733]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3342]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@core_hotunplug@hotrebind-lateclose: - shard-adlp: [SKIP][109] ([Intel XE#4963]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@core_hotunplug@hotrebind-lateclose.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@core_hotunplug@hotrebind-lateclose.html * igt@kms_addfb_basic@bad-pitch-63: - shard-adlp: [SKIP][111] ([Intel XE#4950]) -> [PASS][112] +17 other tests pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_addfb_basic@bad-pitch-63.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_addfb_basic@bad-pitch-63.html * igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1: - shard-adlp: [DMESG-WARN][113] ([Intel XE#4543]) -> [PASS][114] +1 other test pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][115] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][117] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][118] +1 other test pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][121] ([Intel XE#2291]) -> [PASS][122] +3 other tests pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [FAIL][123] ([Intel XE#2882]) -> [PASS][124] +1 other test pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [SKIP][125] ([Intel XE#2316]) -> [PASS][126] +4 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][127] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-adlp: [SKIP][129] ([Intel XE#4947]) -> [PASS][130] +2 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [INCOMPLETE][131] ([Intel XE#4842]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][133] ([Intel XE#1503]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_hdr@invalid-hdr.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][135] ([Intel XE#1435]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][137] ([Intel XE#4459]) -> [PASS][138] +1 other test pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html * {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}: - shard-bmg: [ABORT][139] ([Intel XE#3970]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-7/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset: - shard-bmg: [FAIL][141] -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate: - shard-dg2-set2: [INCOMPLETE][143] -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html * igt@xe_pm@s2idle-basic: - shard-adlp: [DMESG-WARN][145] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-4/igt@xe_pm@s2idle-basic.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [FAIL][147] ([Intel XE#4835]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-436/igt@xe_pmu@gt-frequency.html * igt@xe_vm@large-misaligned-binds-2147483648: - shard-adlp: [SKIP][149] ([Intel XE#4945]) -> [PASS][150] +29 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_vm@large-misaligned-binds-2147483648.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_vm@large-misaligned-binds-2147483648.html #### Warnings #### * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-adlp: [SKIP][151] ([Intel XE#4950]) -> [FAIL][152] ([Intel XE#3908]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-adlp: [SKIP][153] ([Intel XE#4947]) -> [SKIP][154] ([Intel XE#1124]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-adlp: [SKIP][155] ([Intel XE#4947]) -> [SKIP][156] ([Intel XE#316]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@linear-32bpp-rotate-90.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-adlp: [SKIP][157] ([Intel XE#4947]) -> [SKIP][158] ([Intel XE#610]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-adlp: [SKIP][159] ([Intel XE#4950]) -> [SKIP][160] ([Intel XE#367]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-adlp: [SKIP][161] ([Intel XE#4947]) -> [SKIP][162] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-adlp: [SKIP][163] ([Intel XE#4947]) -> [SKIP][164] ([Intel XE#2907]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][165] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][166] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-adlp: [SKIP][167] ([Intel XE#4947]) -> [SKIP][168] ([Intel XE#4417] / [Intel XE#455]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_cdclk@mode-transition.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-adlp: [SKIP][169] ([Intel XE#4950]) -> [SKIP][170] ([Intel XE#373]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][171] ([Intel XE#1178]) -> [SKIP][172] ([Intel XE#2341]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_content_protection@lic-type-0.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][173] ([Intel XE#2341]) -> [FAIL][174] ([Intel XE#1178]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_content_protection@srm.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_fbcon_fbt@psr: - shard-adlp: [SKIP][175] ([Intel XE#4947]) -> [SKIP][176] ([Intel XE#776]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_fbcon_fbt@psr.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-adlp: [SKIP][177] ([Intel XE#4950]) -> [SKIP][178] ([Intel XE#310]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip@2x-plain-flip-interruptible.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-adlp: [SKIP][179] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][180] ([Intel XE#455]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-adlp: [SKIP][181] ([Intel XE#4947]) -> [SKIP][182] ([Intel XE#455]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-adlp: [SKIP][183] ([Intel XE#4947]) -> [SKIP][184] ([Intel XE#651]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][185] ([Intel XE#2311]) -> [SKIP][186] ([Intel XE#2312]) +10 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-adlp: [SKIP][187] ([Intel XE#4947]) -> [SKIP][188] ([Intel XE#656]) +6 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][189] ([Intel XE#2312]) -> [SKIP][190] ([Intel XE#4141]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][191] ([Intel XE#4141]) -> [SKIP][192] ([Intel XE#2312]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt: - shard-adlp: [SKIP][193] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][194] ([Intel XE#651]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2311]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - shard-adlp: [SKIP][197] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][198] ([Intel XE#656]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][199] ([Intel XE#2313]) -> [SKIP][200] ([Intel XE#2312]) +10 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-adlp: [SKIP][201] ([Intel XE#4947]) -> [SKIP][202] ([Intel XE#653]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][203] ([Intel XE#2312]) -> [SKIP][204] ([Intel XE#2313]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@intel-max-src-size: - shard-adlp: [SKIP][205] ([Intel XE#4950]) -> [SKIP][206] ([Intel XE#455]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_plane_scaling@intel-max-src-size.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-adlp: [SKIP][207] ([Intel XE#4947]) -> [SKIP][208] ([Intel XE#1489]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-adlp: [SKIP][209] ([Intel XE#4947]) -> [SKIP][210] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr@fbc-pr-primary-page-flip.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-adlp: [SKIP][211] ([Intel XE#4950]) -> [SKIP][212] ([Intel XE#1127]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@xe_ccs@suspend-resume: - shard-adlp: [SKIP][213] ([Intel XE#4945]) -> [SKIP][214] ([Intel XE#455] / [Intel XE#488]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_ccs@suspend-resume.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_ccs@suspend-resume.html * igt@xe_eudebug@read-metadata: - shard-adlp: [SKIP][215] ([Intel XE#4945]) -> [SKIP][216] ([Intel XE#4837]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_eudebug@read-metadata.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_eudebug@read-metadata.html * igt@xe_evict@evict-large-cm: - shard-adlp: [SKIP][217] ([Intel XE#4945]) -> [SKIP][218] ([Intel XE#261] / [Intel XE#688]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_evict@evict-large-cm.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_evict@evict-large-cm.html * igt@xe_exec_fault_mode@many-bindexecqueue-rebind: - shard-adlp: [SKIP][219] ([Intel XE#4945]) -> [SKIP][220] ([Intel XE#288]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html * igt@xe_exec_system_allocator@processes-evict-malloc: - shard-adlp: [SKIP][221] ([Intel XE#4945]) -> [SKIP][222] ([Intel XE#4915]) +60 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_system_allocator@processes-evict-malloc.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_exec_system_allocator@processes-evict-malloc.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-adlp: [SKIP][223] ([Intel XE#4945]) -> [SKIP][224] ([Intel XE#2541] / [Intel XE#3573]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@non-privileged-map-oa-buffer.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-adlp: [SKIP][225] ([Intel XE#4945]) -> [SKIP][226] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@syncs-ufence-wait-cfg.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_pm@d3cold-mmap-vram: - shard-adlp: [SKIP][227] ([Intel XE#4945]) -> [SKIP][228] ([Intel XE#2284] / [Intel XE#366]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pm@d3cold-mmap-vram.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pmu@engine-activity-all-load-idle: - shard-adlp: [DMESG-WARN][229] ([Intel XE#5214]) -> [ABORT][230] ([Intel XE#5214]) +2 other tests abort [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html * igt@xe_pmu@gt-c6-idle: - shard-adlp: [ABORT][231] ([Intel XE#5214]) -> [DMESG-WARN][232] ([Intel XE#5214]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-8/igt@xe_pmu@gt-c6-idle.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-9/igt@xe_pmu@gt-c6-idle.html * igt@xe_pxp@display-pxp-fb: - shard-adlp: [SKIP][233] ([Intel XE#4945]) -> [SKIP][234] ([Intel XE#4733]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pxp@display-pxp-fb.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_pxp@display-pxp-fb.html * igt@xe_query@multigpu-query-gt-list: - shard-adlp: [SKIP][235] ([Intel XE#4945]) -> [SKIP][236] ([Intel XE#944]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_query@multigpu-query-gt-list.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_query@multigpu-query-gt-list.html * igt@xe_spin_batch@spin-mem-copy: - shard-adlp: [SKIP][237] ([Intel XE#4945]) -> [SKIP][238] ([Intel XE#4821]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_spin_batch@spin-mem-copy.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-2/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_scheduling@equal-throughput: - shard-adlp: [ABORT][239] ([Intel XE#5214]) -> [DMESG-FAIL][240] ([Intel XE#5237]) +1 other test dmesg-fail [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_sriov_scheduling@equal-throughput.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/shard-adlp-1/igt@xe_sriov_scheduling@equal-throughput.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [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#4358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4358 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842 [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [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#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172 [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176 [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214 [Intel XE#5237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5237 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150253v1 IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a xe-pw-150253v1: 150253v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150253v1/index.html [-- Attachment #2: Type: text/html, Size: 82942 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone 2025-06-13 19:14 [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone Tomasz Lis ` (2 preceding siblings ...) 2025-06-15 18:48 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-06-19 10:26 ` K V P, Satyanarayana 3 siblings, 0 replies; 5+ messages in thread From: K V P, Satyanarayana @ 2025-06-19 10:26 UTC (permalink / raw) To: Lis, Tomasz, intel-xe@lists.freedesktop.org Cc: Winiarski, Michal, Wajdeczko, Michal, Piorkowski, Piotr, K V P, Satyanarayana Hi > -----Original Message----- > From: Lis, Tomasz <tomasz.lis@intel.com> > Sent: Saturday, June 14, 2025 12:45 AM > To: intel-xe@lists.freedesktop.org > Cc: Winiarski, Michal <michal.winiarski@intel.com>; Wajdeczko, Michal > <Michal.Wajdeczko@intel.com>; Piorkowski, Piotr > <piotr.piorkowski@intel.com>; K V P, Satyanarayana > <satyanarayana.k.v.p@intel.com> > Subject: [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone > > There is a remote chance that after migration, some GTs will not > send the MIGRATED interrupt, or due to current VF KMD state the > interrupt will not lead to marking the GT for recovery. > > Requiring IRQs from all GTs before starting migration introduces > the possibility that the process will get stalled due to one GuC. > > One could argue it is also waste of time to wait for all IRQs, > but we should get them all IRQs as soon as VGPU starts, so that's > not really an implactful argument. > > Still, not waiting for all GTs makes it easier to handle situations: > * where one GuC IRQ missing > * where state before probe is unclean - getting MIGRATED IRQ as soon > as interrupts are enabled > * where multiple migrations happen close to each other > > To help with these cases, this patch alters the post-migration > recovery so thar recovery task is started as soon as one GuC IRQ Typo (thar) > is handled, and other GTs are included in recovery later as the > subrequent IRQs are services. Typo (subrequent). Do you mean "subsequent IRQs are serviced" ? > > The post-migration recovery can now be called for any selection of > GTs, and it will perform recovery on all GTs for which IRQs have > arrived, even multiple times if necessary. > > Signed-off-by: Tomasz Lis <tomasz.lis@intel.com> > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> > Cc: Michal Winiarski <michal.winiarski@intel.com> > Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com> > --- > drivers/gpu/drm/xe/xe_sriov_vf.c | 167 ++++++++++++++----------------- > 1 file changed, 76 insertions(+), 91 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c > b/drivers/gpu/drm/xe/xe_sriov_vf.c > index 6526fe450e55..aef1d256e871 100644 > --- a/drivers/gpu/drm/xe/xe_sriov_vf.c > +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c > @@ -147,127 +147,111 @@ void xe_sriov_vf_init_early(struct xe_device *xe) > xe_sriov_info(xe, "migration not supported by this module > version\n"); > } > > -/** > - * vf_post_migration_requery_guc - Re-query GuC for current VF > provisioning. > - * @xe: the &xe_device struct instance > - * > - * After migration, we need to re-query all VF configuration to make sure > - * they match previous provisioning. Note that most of VF provisioning > - * shall be the same, except GGTT range, since GGTT is not virtualized per-VF. > - * > - * Returns: 0 if the operation completed successfully, or a negative error > - * code otherwise. > +static bool gt_vf_post_migration_needed(struct xe_gt *gt) > +{ > + return test_bit(gt->info.id, >_to_xe(gt)->sriov.vf.migration.gt_flags); > +} > + > +/* > + * Notify GuCs marked in flags about resource fixups apply finished. > */ > -static int vf_post_migration_requery_guc(struct xe_device *xe) > +static int vf_post_migration_notify_resfix_done(struct xe_device *xe, > unsigned long *gt_flags) > { > struct xe_gt *gt; > unsigned int id; > - int err, ret = 0; > + int err = 0; > > for_each_gt(gt, xe, id) { > - err = xe_gt_sriov_vf_query_config(gt); > - ret = ret ?: err; > + if (!test_bit(id, gt_flags)) > + continue; > + /* skip asking GuC for RESFIX exit if new recovery request > arrived */ > + if (gt_vf_post_migration_needed(gt)) > + continue; > + err = xe_gt_sriov_vf_notify_resfix_done(gt); > + if (err) > + break; > + clear_bit(id, gt_flags); > } > > - return ret; > + if (*gt_flags && !err) > + drm_dbg(&xe->drm, "another recovery imminent, skipped > some notifications\n"); > + return err; > } > > -static void vf_post_migration_fixup_ctb(struct xe_device *xe) > +static int vf_get_next_migrated_gt_id(struct xe_device *xe) > { > struct xe_gt *gt; > unsigned int id; > > - xe_assert(xe, IS_SRIOV_VF(xe)); > - > for_each_gt(gt, xe, id) { > - s32 shift = xe_gt_sriov_vf_ggtt_shift(gt); > - > - xe_guc_ct_fixup_messages_with_ggtt(>->uc.guc.ct, shift); > + if (test_and_clear_bit(id, &xe->sriov.vf.migration.gt_flags)) > + return id; > } > + return -1; > } > > -/* > - * vf_post_migration_imminent - Check if post-restore recovery is coming. > - * @xe: the &xe_device struct instance > +/** > + * Perform post-migration fixups on a single GT. > * > - * Return: True if migration recovery worker will soon be running. Any worker > currently > - * executing does not affect the result. > + * After migration, GuC needs to be re-queried for VF configuration to check > + * if it matches previous provisioning. Most of VF provisioning shall be the > + * same, except GGTT range, since GGTT is not virtualized per-VF. If GGTT > + * range has changed, we have to perform fixups - shift all GGTT references > + * used anywhere within the driver. After the fixups in this function succeed, > + * it is allowed to ask the GuC bound to this GT to continue normal operation. > + * > + * Returns: 0 if the operation completed successfully, or a negative error > + * code otherwise. > */ > -static bool vf_post_migration_imminent(struct xe_device *xe) > +static int gt_vf_post_migration_fixups(struct xe_gt *gt) > { > - return xe->sriov.vf.migration.gt_flags != 0 || > - work_pending(&xe->sriov.vf.migration.worker); > -} > - > -static bool vf_post_migration_fixup_ggtt_nodes(struct xe_device *xe) > -{ > - bool need_fixups = false; > - struct xe_tile *tile; > - unsigned int id; > - > - for_each_tile(tile, xe, id) { > - struct xe_gt *gt = tile->primary_gt; > - s64 shift; > - > - shift = xe_gt_sriov_vf_ggtt_shift(gt); > - if (shift) { > - need_fixups = true; > - xe_tile_sriov_vf_fixup_ggtt_nodes(tile, shift); > - } > - } > - return need_fixups; > -} > + s64 shift; > + int err; > > -/* > - * Notify all GuCs about resource fixups apply finished. > - */ > -static void vf_post_migration_notify_resfix_done(struct xe_device *xe) > -{ > - struct xe_gt *gt; > - unsigned int id; > + err = xe_gt_sriov_vf_query_config(gt); > + if (err) > + return err; > > - for_each_gt(gt, xe, id) { > - if (vf_post_migration_imminent(xe)) > - goto skip; > - xe_gt_sriov_vf_notify_resfix_done(gt); > + shift = xe_gt_sriov_vf_ggtt_shift(gt); > + if (shift) { > + xe_tile_sriov_vf_fixup_ggtt_nodes(gt_to_tile(gt), shift); > + /* FIXME: add the recovery steps */ > + xe_guc_ct_fixup_messages_with_ggtt(>->uc.guc.ct, shift); > } > - return; > - > -skip: > - drm_dbg(&xe->drm, "another recovery imminent, skipping > notifications\n"); > + return 0; > } > > static void vf_post_migration_recovery(struct xe_device *xe) > { > - bool need_fixups; > - int err; > + int id, err; > + unsigned long fixed_gts = 0; > Follow inverted xmas tree. > drm_dbg(&xe->drm, "migration recovery in progress\n"); > xe_pm_runtime_get(xe); > - err = vf_post_migration_requery_guc(xe); > - if (vf_post_migration_imminent(xe)) > - goto defer; > - if (unlikely(err)) > - goto fail; > + > if (!vf_migration_supported(xe)) { > xe_sriov_err(xe, "migration not supported by this module > version\n"); > err = -ENOTRECOVERABLE; > goto fail; > } > > - need_fixups = vf_post_migration_fixup_ggtt_nodes(xe); > - /* FIXME: add the recovery steps */ > - if (need_fixups) > - vf_post_migration_fixup_ctb(xe); > + while (id = vf_get_next_migrated_gt_id(xe), id >= 0) { > + struct xe_gt *gt = xe_device_get_gt(xe, id); > + > + err = gt_vf_post_migration_fixups(gt); > + if (err) > + goto fail; > + > + set_bit(id, &fixed_gts); > + } > + > + err = vf_post_migration_notify_resfix_done(xe, &fixed_gts); > + if (err) > + goto fail; > > - vf_post_migration_notify_resfix_done(xe); > xe_pm_runtime_put(xe); > drm_notice(&xe->drm, "migration recovery ended\n"); > return; > -defer: > - xe_pm_runtime_put(xe); > - drm_dbg(&xe->drm, "migration recovery deferred\n"); > - return; > fail: > xe_pm_runtime_put(xe); > drm_err(&xe->drm, "migration recovery failed (%pe)\n", > ERR_PTR(err)); > @@ -282,18 +266,23 @@ static void migration_worker_func(struct > work_struct *w) > vf_post_migration_recovery(xe); > } > > -static bool vf_ready_to_recovery_on_all_gts(struct xe_device *xe) > +/* > + * Check if post-restore recovery is coming on any of GTs. > + * @xe: the &xe_device struct instance > + * > + * Return: True if migration recovery worker will soon be running. Any worker > currently > + * executing does not affect the result. > + */ > +static bool vf_ready_to_recovery_on_any_gts(struct xe_device *xe) > { > struct xe_gt *gt; > unsigned int id; > > for_each_gt(gt, xe, id) { > - if (!test_bit(id, &xe->sriov.vf.migration.gt_flags)) { > - xe_gt_sriov_dbg_verbose(gt, "still not ready to > recover\n"); > - return false; > - } > + if (test_bit(id, &xe->sriov.vf.migration.gt_flags)) > + return true; > } > - return true; > + return false; > } > > /** > @@ -308,13 +297,9 @@ void xe_sriov_vf_start_migration_recovery(struct > xe_device *xe) > > xe_assert(xe, IS_SRIOV_VF(xe)); > > - if (!vf_ready_to_recovery_on_all_gts(xe)) > + if (!vf_ready_to_recovery_on_any_gts(xe)) > return; > > - WRITE_ONCE(xe->sriov.vf.migration.gt_flags, 0); > - /* Ensure other threads see that no flags are set now. */ > - smp_mb(); > - > started = queue_work(xe->sriov.wq, &xe->sriov.vf.migration.worker); > drm_info(&xe->drm, "VF migration recovery %s\n", started ? > "scheduled" : "already in progress"); > -- With nits fixed, Acked-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com> > 2.25.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-06-19 10:26 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-13 19:14 [PATCH v1] drm/xe/vf: Make multi-GT migration less error prone Tomasz Lis 2025-06-13 20:10 ` ✓ CI.KUnit: success for " Patchwork 2025-06-13 20:48 ` ✓ Xe.CI.BAT: " Patchwork 2025-06-15 18:48 ` ✗ Xe.CI.Full: failure " Patchwork 2025-06-19 10:26 ` [PATCH v1] " K V P, Satyanarayana
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox