* [PATCH v1 1/3] drm/xe/vf: Skip fixups on VF migration before getting GGTT info
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
@ 2025-10-14 0:44 ` Tomasz Lis
2025-10-14 0:44 ` [PATCH v1 2/3] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Tomasz Lis @ 2025-10-14 0:44 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
The GuC RESFIX state should be achievable only after a successful
handshake. If VF KMD has no GGTT configuration yet and we still got
into RESFIX state, then either we're dealing with unclean initial
state due to unusual actions before probe, or the migration
happened while xe init (started by probe) was running.
In 1st case (VF migration before probe), we should just skip migration.
Init procedure will ensure exit from RESFIX state as it starts GuC
handshake with a reset.
In 2nd case (VF migration during xe init), the migration procedure
should execute normally if GGTT configuration was already acquired
from GuC, and can be skipped if it was not acquired.
This solution will avoid crashes due to the VF migration running
on non-initialized xe sub-structures. But it is not enough to allow
fully reliable migration during driver probe. In particular, the
situation where the probe might not end successfully, is:
* The VF is paused and migrated after GuC reset (vf_bootstrap) but
before config is acquired (vf_query_config). In such case, GuC may
remain in RESFIX state, leading to timeouting requests.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 46518e629ba3..6d9bffe25acc 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1108,6 +1108,12 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
pf_version->major, pf_version->minor);
}
+static bool vf_ggtt_queried(struct xe_tile *tile)
+{
+ guard(mutex)(&tile->mem.ggtt->lock);
+ return xe_tile_sriov_vf_ggtt(tile) != 0;
+}
+
static bool vf_post_migration_shutdown(struct xe_gt *gt)
{
struct xe_device *xe = gt_to_xe(gt);
@@ -1219,6 +1225,11 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
xe_pm_runtime_get(xe);
+
+ /* If during init and before GGTT configuration, skip the procedure. */
+ if (!vf_ggtt_queried(gt_to_tile(gt)))
+ goto skip;
+
retry = vf_post_migration_shutdown(gt);
if (retry)
goto queue;
@@ -1241,6 +1252,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
vf_post_migration_kickstart(gt);
+skip:
xe_pm_runtime_put(xe);
xe_gt_sriov_notice(gt, "migration recovery ended\n");
return;
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v1 2/3] drm/xe: Assert that VF will never use fixed placement of BOs
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-14 0:44 ` [PATCH v1 1/3] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
@ 2025-10-14 0:44 ` Tomasz Lis
2025-10-14 0:44 ` [PATCH v1 3/3] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Tomasz Lis @ 2025-10-14 0:44 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
Most BOs do not care at which offset they will be accessed within
GGTT or PPGTT. The few which do care, should be only created
on PF, and mapped within GGTT. On VFs, mapping at fixed offset
would be problematic, as each VF is granted access to a range of
GGTT address space.
So, since fixed addresses of GGTT mapping can only be used on PF,
we can add an assert which makes sure no attempt of fixed placement
will happen for a driver probed on a VF.
The assert will also ensure that VF migration can be properly
performed without a need for special handling of the fixed placement
addresses.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 7b6502081873..8e826a4aa574 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2259,6 +2259,12 @@ static int __xe_bo_fixed_placement(struct xe_device *xe,
struct ttm_place *place = bo->placements;
u32 vram_flag, vram_stolen_flags;
+ /*
+ * to allow fixed placement in GGTT of a VF, post-migration fixups
+ * would have to include shifting the page ranges
+ */
+ xe_assert(xe, !IS_SRIOV_VF(xe) || !(bo->flags & XE_BO_FLAG_GGTT));
+
if (flags & (XE_BO_FLAG_USER | XE_BO_FLAG_SYSTEM))
return -EINVAL;
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH v1 3/3] drm/xe/vf: Do not disable VF migration on ATS-M
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-14 0:44 ` [PATCH v1 1/3] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
2025-10-14 0:44 ` [PATCH v1 2/3] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
@ 2025-10-14 0:44 ` Tomasz Lis
2025-10-14 1:57 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Tomasz Lis @ 2025-10-14 0:44 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
The ATS-M does support VF migration, and it has graphics ver below
the currently allowed range. This change rectifies that, allowing
ATS-M support.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_vf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 911d5720917b..4a4f44f33870 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -159,8 +159,8 @@ static void vf_migration_init_early(struct xe_device *xe)
return vf_disable_migration(xe,
"experimental feature not available on production builds");
- if (GRAPHICS_VER(xe) < 20)
- return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
+ if (GRAPHICS_VER(xe) < 12)
+ return vf_disable_migration(xe, "requires gfx version >= 12, but only %u found",
GRAPHICS_VER(xe));
if (!IS_DGFX(xe)) {
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (2 preceding siblings ...)
2025-10-14 0:44 ` [PATCH v1 3/3] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
@ 2025-10-14 1:57 ` Patchwork
2025-10-14 2:40 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-10-14 10:44 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-10-14 1:57 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery
URL : https://patchwork.freedesktop.org/series/155865/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:56:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:56:28] 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
[01:56:58] Starting KUnit Kernel (1/1)...
[01:56:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:56:58] ================== guc_buf (11 subtests) ===================
[01:56:58] [PASSED] test_smallest
[01:56:58] [PASSED] test_largest
[01:56:58] [PASSED] test_granular
[01:56:58] [PASSED] test_unique
[01:56:58] [PASSED] test_overlap
[01:56:58] [PASSED] test_reusable
[01:56:58] [PASSED] test_too_big
[01:56:58] [PASSED] test_flush
[01:56:58] [PASSED] test_lookup
[01:56:58] [PASSED] test_data
[01:56:58] [PASSED] test_class
[01:56:58] ===================== [PASSED] guc_buf =====================
[01:56:58] =================== guc_dbm (7 subtests) ===================
[01:56:58] [PASSED] test_empty
[01:56:58] [PASSED] test_default
[01:56:58] ======================== test_size ========================
[01:56:58] [PASSED] 4
[01:56:58] [PASSED] 8
[01:56:58] [PASSED] 32
[01:56:58] [PASSED] 256
[01:56:58] ==================== [PASSED] test_size ====================
[01:56:58] ======================= test_reuse ========================
[01:56:58] [PASSED] 4
[01:56:58] [PASSED] 8
[01:56:58] [PASSED] 32
[01:56:58] [PASSED] 256
[01:56:58] =================== [PASSED] test_reuse ====================
[01:56:58] =================== test_range_overlap ====================
[01:56:58] [PASSED] 4
[01:56:58] [PASSED] 8
[01:56:58] [PASSED] 32
[01:56:58] [PASSED] 256
[01:56:58] =============== [PASSED] test_range_overlap ================
[01:56:58] =================== test_range_compact ====================
[01:56:58] [PASSED] 4
[01:56:58] [PASSED] 8
[01:56:58] [PASSED] 32
[01:56:58] [PASSED] 256
[01:56:58] =============== [PASSED] test_range_compact ================
[01:56:58] ==================== test_range_spare =====================
[01:56:58] [PASSED] 4
[01:56:58] [PASSED] 8
[01:56:58] [PASSED] 32
[01:56:58] [PASSED] 256
[01:56:58] ================ [PASSED] test_range_spare =================
[01:56:58] ===================== [PASSED] guc_dbm =====================
[01:56:58] =================== guc_idm (6 subtests) ===================
[01:56:58] [PASSED] bad_init
[01:56:58] [PASSED] no_init
[01:56:58] [PASSED] init_fini
[01:56:58] [PASSED] check_used
[01:56:58] [PASSED] check_quota
[01:56:58] [PASSED] check_all
[01:56:58] ===================== [PASSED] guc_idm =====================
[01:56:58] ================== no_relay (3 subtests) ===================
[01:56:58] [PASSED] xe_drops_guc2pf_if_not_ready
[01:56:58] [PASSED] xe_drops_guc2vf_if_not_ready
[01:56:58] [PASSED] xe_rejects_send_if_not_ready
[01:56:58] ==================== [PASSED] no_relay =====================
[01:56:58] ================== pf_relay (14 subtests) ==================
[01:56:58] [PASSED] pf_rejects_guc2pf_too_short
[01:56:58] [PASSED] pf_rejects_guc2pf_too_long
[01:56:58] [PASSED] pf_rejects_guc2pf_no_payload
[01:56:58] [PASSED] pf_fails_no_payload
[01:56:58] [PASSED] pf_fails_bad_origin
[01:56:58] [PASSED] pf_fails_bad_type
[01:56:58] [PASSED] pf_txn_reports_error
[01:56:58] [PASSED] pf_txn_sends_pf2guc
[01:56:58] [PASSED] pf_sends_pf2guc
[01:56:58] [SKIPPED] pf_loopback_nop
[01:56:58] [SKIPPED] pf_loopback_echo
[01:56:58] [SKIPPED] pf_loopback_fail
[01:56:58] [SKIPPED] pf_loopback_busy
[01:56:58] [SKIPPED] pf_loopback_retry
[01:56:58] ==================== [PASSED] pf_relay =====================
[01:56:58] ================== vf_relay (3 subtests) ===================
[01:56:58] [PASSED] vf_rejects_guc2vf_too_short
[01:56:58] [PASSED] vf_rejects_guc2vf_too_long
[01:56:58] [PASSED] vf_rejects_guc2vf_no_payload
[01:56:58] ==================== [PASSED] vf_relay =====================
[01:56:58] ===================== lmtt (1 subtest) =====================
[01:56:58] ======================== test_ops =========================
[01:56:58] [PASSED] 2-level
[01:56:58] [PASSED] multi-level
[01:56:58] ==================== [PASSED] test_ops =====================
[01:56:58] ====================== [PASSED] lmtt =======================
[01:56:58] ================= pf_service (11 subtests) =================
[01:56:58] [PASSED] pf_negotiate_any
[01:56:58] [PASSED] pf_negotiate_base_match
[01:56:58] [PASSED] pf_negotiate_base_newer
[01:56:58] [PASSED] pf_negotiate_base_next
[01:56:58] [SKIPPED] pf_negotiate_base_older
[01:56:58] [PASSED] pf_negotiate_base_prev
[01:56:58] [PASSED] pf_negotiate_latest_match
[01:56:58] [PASSED] pf_negotiate_latest_newer
[01:56:58] [PASSED] pf_negotiate_latest_next
[01:56:58] [SKIPPED] pf_negotiate_latest_older
[01:56:58] [SKIPPED] pf_negotiate_latest_prev
[01:56:58] =================== [PASSED] pf_service ====================
[01:56:58] ================= xe_guc_g2g (2 subtests) ==================
[01:56:58] ============== xe_live_guc_g2g_kunit_default ==============
[01:56:58] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:56:58] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:56:58] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:56:58] =================== [SKIPPED] xe_guc_g2g ===================
[01:56:58] =================== xe_mocs (2 subtests) ===================
[01:56:58] ================ xe_live_mocs_kernel_kunit ================
[01:56:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:56:58] ================ xe_live_mocs_reset_kunit =================
[01:56:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:56:58] ==================== [SKIPPED] xe_mocs =====================
[01:56:58] ================= xe_migrate (2 subtests) ==================
[01:56:58] ================= xe_migrate_sanity_kunit =================
[01:56:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:56:58] ================== xe_validate_ccs_kunit ==================
[01:56:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:56:58] =================== [SKIPPED] xe_migrate ===================
[01:56:58] ================== xe_dma_buf (1 subtest) ==================
[01:56:58] ==================== xe_dma_buf_kunit =====================
[01:56:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:56:58] =================== [SKIPPED] xe_dma_buf ===================
[01:56:58] ================= xe_bo_shrink (1 subtest) =================
[01:56:58] =================== xe_bo_shrink_kunit ====================
[01:56:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:56:58] ================== [SKIPPED] xe_bo_shrink ==================
[01:56:58] ==================== xe_bo (2 subtests) ====================
[01:56:58] ================== xe_ccs_migrate_kunit ===================
[01:56:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:56:58] ==================== xe_bo_evict_kunit ====================
[01:56:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:56:58] ===================== [SKIPPED] xe_bo ======================
[01:56:58] ==================== args (11 subtests) ====================
[01:56:58] [PASSED] count_args_test
[01:56:58] [PASSED] call_args_example
[01:56:58] [PASSED] call_args_test
[01:56:58] [PASSED] drop_first_arg_example
[01:56:58] [PASSED] drop_first_arg_test
[01:56:58] [PASSED] first_arg_example
[01:56:58] [PASSED] first_arg_test
[01:56:58] [PASSED] last_arg_example
[01:56:58] [PASSED] last_arg_test
[01:56:58] [PASSED] pick_arg_example
[01:56:58] [PASSED] sep_comma_example
[01:56:58] ====================== [PASSED] args =======================
[01:56:58] =================== xe_pci (3 subtests) ====================
[01:56:58] ==================== check_graphics_ip ====================
[01:56:58] [PASSED] 12.00 Xe_LP
[01:56:58] [PASSED] 12.10 Xe_LP+
[01:56:58] [PASSED] 12.55 Xe_HPG
[01:56:58] [PASSED] 12.60 Xe_HPC
[01:56:58] [PASSED] 12.70 Xe_LPG
[01:56:58] [PASSED] 12.71 Xe_LPG
[01:56:58] [PASSED] 12.74 Xe_LPG+
[01:56:58] [PASSED] 20.01 Xe2_HPG
[01:56:58] [PASSED] 20.02 Xe2_HPG
[01:56:58] [PASSED] 20.04 Xe2_LPG
[01:56:58] [PASSED] 30.00 Xe3_LPG
[01:56:58] [PASSED] 30.01 Xe3_LPG
[01:56:58] [PASSED] 30.03 Xe3_LPG
[01:56:58] ================ [PASSED] check_graphics_ip ================
[01:56:58] ===================== check_media_ip ======================
[01:56:58] [PASSED] 12.00 Xe_M
[01:56:58] [PASSED] 12.55 Xe_HPM
[01:56:58] [PASSED] 13.00 Xe_LPM+
[01:56:58] [PASSED] 13.01 Xe2_HPM
[01:56:58] [PASSED] 20.00 Xe2_LPM
[01:56:58] [PASSED] 30.00 Xe3_LPM
[01:56:58] [PASSED] 30.02 Xe3_LPM
[01:56:58] ================= [PASSED] check_media_ip ==================
[01:56:58] ================= check_platform_gt_count =================
[01:56:58] [PASSED] 0x9A60 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A68 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A70 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A40 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A49 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A59 (TIGERLAKE)
[01:56:58] [PASSED] 0x9A78 (TIGERLAKE)
[01:56:58] [PASSED] 0x9AC0 (TIGERLAKE)
[01:56:58] [PASSED] 0x9AC9 (TIGERLAKE)
[01:56:58] [PASSED] 0x9AD9 (TIGERLAKE)
[01:56:58] [PASSED] 0x9AF8 (TIGERLAKE)
[01:56:58] [PASSED] 0x4C80 (ROCKETLAKE)
[01:56:58] [PASSED] 0x4C8A (ROCKETLAKE)
[01:56:58] [PASSED] 0x4C8B (ROCKETLAKE)
[01:56:58] [PASSED] 0x4C8C (ROCKETLAKE)
[01:56:58] [PASSED] 0x4C90 (ROCKETLAKE)
[01:56:58] [PASSED] 0x4C9A (ROCKETLAKE)
[01:56:58] [PASSED] 0x4680 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4682 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4688 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x468A (ALDERLAKE_S)
[01:56:58] [PASSED] 0x468B (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4690 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4692 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4693 (ALDERLAKE_S)
[01:56:58] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46AA (ALDERLAKE_P)
[01:56:58] [PASSED] 0x462A (ALDERLAKE_P)
[01:56:58] [PASSED] 0x4626 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x4628 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:56:58] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:56:58] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:56:58] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:56:58] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:56:58] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:56:58] [PASSED] 0xA721 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA720 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:56:58] [PASSED] 0xA780 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA781 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA782 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA783 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA788 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA789 (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA78A (ALDERLAKE_S)
[01:56:58] [PASSED] 0xA78B (ALDERLAKE_S)
[01:56:58] [PASSED] 0x4905 (DG1)
[01:56:58] [PASSED] 0x4906 (DG1)
[01:56:58] [PASSED] 0x4907 (DG1)
[01:56:58] [PASSED] 0x4908 (DG1)
[01:56:58] [PASSED] 0x4909 (DG1)
[01:56:58] [PASSED] 0x56C0 (DG2)
[01:56:58] [PASSED] 0x56C2 (DG2)
[01:56:58] [PASSED] 0x56C1 (DG2)
[01:56:58] [PASSED] 0x7D51 (METEORLAKE)
[01:56:58] [PASSED] 0x7DD1 (METEORLAKE)
[01:56:58] [PASSED] 0x7D41 (METEORLAKE)
[01:56:58] [PASSED] 0x7D67 (METEORLAKE)
[01:56:58] [PASSED] 0xB640 (METEORLAKE)
[01:56:58] [PASSED] 0x56A0 (DG2)
[01:56:58] [PASSED] 0x56A1 (DG2)
[01:56:58] [PASSED] 0x56A2 (DG2)
[01:56:58] [PASSED] 0x56BE (DG2)
[01:56:58] [PASSED] 0x56BF (DG2)
[01:56:58] [PASSED] 0x5690 (DG2)
[01:56:58] [PASSED] 0x5691 (DG2)
[01:56:58] [PASSED] 0x5692 (DG2)
[01:56:58] [PASSED] 0x56A5 (DG2)
[01:56:58] [PASSED] 0x56A6 (DG2)
[01:56:58] [PASSED] 0x56B0 (DG2)
[01:56:58] [PASSED] 0x56B1 (DG2)
[01:56:58] [PASSED] 0x56BA (DG2)
[01:56:58] [PASSED] 0x56BB (DG2)
[01:56:58] [PASSED] 0x56BC (DG2)
[01:56:58] [PASSED] 0x56BD (DG2)
[01:56:58] [PASSED] 0x5693 (DG2)
[01:56:58] [PASSED] 0x5694 (DG2)
[01:56:58] [PASSED] 0x5695 (DG2)
[01:56:58] [PASSED] 0x56A3 (DG2)
[01:56:58] [PASSED] 0x56A4 (DG2)
[01:56:58] [PASSED] 0x56B2 (DG2)
[01:56:58] [PASSED] 0x56B3 (DG2)
[01:56:58] [PASSED] 0x5696 (DG2)
[01:56:58] [PASSED] 0x5697 (DG2)
[01:56:58] [PASSED] 0xB69 (PVC)
[01:56:58] [PASSED] 0xB6E (PVC)
[01:56:58] [PASSED] 0xBD4 (PVC)
[01:56:58] [PASSED] 0xBD5 (PVC)
[01:56:58] [PASSED] 0xBD6 (PVC)
[01:56:58] [PASSED] 0xBD7 (PVC)
[01:56:58] [PASSED] 0xBD8 (PVC)
[01:56:58] [PASSED] 0xBD9 (PVC)
[01:56:58] [PASSED] 0xBDA (PVC)
[01:56:58] [PASSED] 0xBDB (PVC)
[01:56:58] [PASSED] 0xBE0 (PVC)
[01:56:58] [PASSED] 0xBE1 (PVC)
[01:56:58] [PASSED] 0xBE5 (PVC)
[01:56:58] [PASSED] 0x7D40 (METEORLAKE)
[01:56:58] [PASSED] 0x7D45 (METEORLAKE)
[01:56:58] [PASSED] 0x7D55 (METEORLAKE)
[01:56:58] [PASSED] 0x7D60 (METEORLAKE)
[01:56:58] [PASSED] 0x7DD5 (METEORLAKE)
[01:56:58] [PASSED] 0x6420 (LUNARLAKE)
[01:56:58] [PASSED] 0x64A0 (LUNARLAKE)
[01:56:58] [PASSED] 0x64B0 (LUNARLAKE)
[01:56:58] [PASSED] 0xE202 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE209 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE20B (BATTLEMAGE)
[01:56:58] [PASSED] 0xE20C (BATTLEMAGE)
[01:56:58] [PASSED] 0xE20D (BATTLEMAGE)
[01:56:58] [PASSED] 0xE210 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE211 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE212 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE216 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE220 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE221 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE222 (BATTLEMAGE)
[01:56:58] [PASSED] 0xE223 (BATTLEMAGE)
[01:56:58] [PASSED] 0xB080 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB081 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB082 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB083 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB084 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB085 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB086 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB087 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB08F (PANTHERLAKE)
[01:56:58] [PASSED] 0xB090 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:56:58] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:56:58] [PASSED] 0xFD80 (PANTHERLAKE)
[01:56:58] [PASSED] 0xFD81 (PANTHERLAKE)
[01:56:58] ============= [PASSED] check_platform_gt_count =============
[01:56:58] ===================== [PASSED] xe_pci ======================
[01:56:58] =================== xe_rtp (2 subtests) ====================
[01:56:58] =============== xe_rtp_process_to_sr_tests ================
[01:56:58] [PASSED] coalesce-same-reg
[01:56:58] [PASSED] no-match-no-add
[01:56:58] [PASSED] match-or
[01:56:58] [PASSED] match-or-xfail
[01:56:58] [PASSED] no-match-no-add-multiple-rules
[01:56:58] [PASSED] two-regs-two-entries
[01:56:58] [PASSED] clr-one-set-other
[01:56:58] [PASSED] set-field
[01:56:58] [PASSED] conflict-duplicate
[01:56:58] [PASSED] conflict-not-disjoint
[01:56:58] [PASSED] conflict-reg-type
[01:56:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:56:58] ================== xe_rtp_process_tests ===================
[01:56:58] [PASSED] active1
[01:56:58] [PASSED] active2
[01:56:58] [PASSED] active-inactive
[01:56:58] [PASSED] inactive-active
[01:56:58] [PASSED] inactive-1st_or_active-inactive
[01:56:58] [PASSED] inactive-2nd_or_active-inactive
[01:56:58] [PASSED] inactive-last_or_active-inactive
[01:56:58] [PASSED] inactive-no_or_active-inactive
[01:56:58] ============== [PASSED] xe_rtp_process_tests ===============
[01:56:58] ===================== [PASSED] xe_rtp ======================
[01:56:58] ==================== xe_wa (1 subtest) =====================
[01:56:58] ======================== xe_wa_gt =========================
[01:56:58] [PASSED] TIGERLAKE B0
[01:56:58] [PASSED] DG1 A0
[01:56:58] [PASSED] DG1 B0
[01:56:58] [PASSED] ALDERLAKE_S A0
[01:56:58] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[01:56:58] [PASSED] ALDERLAKE_S C0
[01:56:58] [PASSED] ALDERLAKE_S D0
[01:56:58] [PASSED] ALDERLAKE_P A0
[01:56:58] [PASSED] ALDERLAKE_P B0
[01:56:58] [PASSED] ALDERLAKE_P C0
[01:56:58] [PASSED] ALDERLAKE_S RPLS D0
[01:56:58] [PASSED] ALDERLAKE_P RPLU E0
[01:56:58] [PASSED] DG2 G10 C0
[01:56:58] [PASSED] DG2 G11 B1
[01:56:58] [PASSED] DG2 G12 A1
[01:56:58] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:56:58] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:56:58] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:56:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:56:58] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:56:58] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:56:58] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:56:58] ==================== [PASSED] xe_wa_gt =====================
[01:56:58] ====================== [PASSED] xe_wa ======================
[01:56:58] ============================================================
[01:56:58] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[01:56:58] Elapsed time: 35.049s total, 4.248s configuring, 30.435s building, 0.329s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:56:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:57:00] 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
[01:57:25] Starting KUnit Kernel (1/1)...
[01:57:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:57:25] ============ drm_test_pick_cmdline (2 subtests) ============
[01:57:25] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:57:25] =============== drm_test_pick_cmdline_named ===============
[01:57:25] [PASSED] NTSC
[01:57:25] [PASSED] NTSC-J
[01:57:25] [PASSED] PAL
[01:57:25] [PASSED] PAL-M
[01:57:25] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:57:25] ============== [PASSED] drm_test_pick_cmdline ==============
[01:57:25] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:57:25] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:57:25] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:57:25] =========== drm_validate_clone_mode (2 subtests) ===========
[01:57:25] ============== drm_test_check_in_clone_mode ===============
[01:57:25] [PASSED] in_clone_mode
[01:57:25] [PASSED] not_in_clone_mode
[01:57:25] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:57:25] =============== drm_test_check_valid_clones ===============
[01:57:25] [PASSED] not_in_clone_mode
[01:57:25] [PASSED] valid_clone
[01:57:25] [PASSED] invalid_clone
[01:57:25] =========== [PASSED] drm_test_check_valid_clones ===========
[01:57:25] ============= [PASSED] drm_validate_clone_mode =============
[01:57:25] ============= drm_validate_modeset (1 subtest) =============
[01:57:25] [PASSED] drm_test_check_connector_changed_modeset
[01:57:25] ============== [PASSED] drm_validate_modeset ===============
[01:57:25] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:57:25] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:57:25] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:57:25] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:57:25] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:57:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:57:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:57:25] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:57:25] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:57:25] ============== drm_bridge_alloc (2 subtests) ===============
[01:57:25] [PASSED] drm_test_drm_bridge_alloc_basic
[01:57:25] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:57:25] ================ [PASSED] drm_bridge_alloc =================
[01:57:25] ================== drm_buddy (8 subtests) ==================
[01:57:25] [PASSED] drm_test_buddy_alloc_limit
[01:57:25] [PASSED] drm_test_buddy_alloc_optimistic
[01:57:25] [PASSED] drm_test_buddy_alloc_pessimistic
[01:57:25] [PASSED] drm_test_buddy_alloc_pathological
[01:57:25] [PASSED] drm_test_buddy_alloc_contiguous
[01:57:25] [PASSED] drm_test_buddy_alloc_clear
[01:57:25] [PASSED] drm_test_buddy_alloc_range_bias
[01:57:25] [PASSED] drm_test_buddy_fragmentation_performance
[01:57:25] ==================== [PASSED] drm_buddy ====================
[01:57:25] ============= drm_cmdline_parser (40 subtests) =============
[01:57:25] [PASSED] drm_test_cmdline_force_d_only
[01:57:25] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:57:25] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:57:25] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:57:25] [PASSED] drm_test_cmdline_force_e_only
[01:57:26] [PASSED] drm_test_cmdline_res
[01:57:26] [PASSED] drm_test_cmdline_res_vesa
[01:57:26] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:57:26] [PASSED] drm_test_cmdline_res_rblank
[01:57:26] [PASSED] drm_test_cmdline_res_bpp
[01:57:26] [PASSED] drm_test_cmdline_res_refresh
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:57:26] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:57:26] [PASSED] drm_test_cmdline_res_margins_force_on
[01:57:26] [PASSED] drm_test_cmdline_res_vesa_margins
[01:57:26] [PASSED] drm_test_cmdline_name
[01:57:26] [PASSED] drm_test_cmdline_name_bpp
[01:57:26] [PASSED] drm_test_cmdline_name_option
[01:57:26] [PASSED] drm_test_cmdline_name_bpp_option
[01:57:26] [PASSED] drm_test_cmdline_rotate_0
[01:57:26] [PASSED] drm_test_cmdline_rotate_90
[01:57:26] [PASSED] drm_test_cmdline_rotate_180
[01:57:26] [PASSED] drm_test_cmdline_rotate_270
[01:57:26] [PASSED] drm_test_cmdline_hmirror
[01:57:26] [PASSED] drm_test_cmdline_vmirror
[01:57:26] [PASSED] drm_test_cmdline_margin_options
[01:57:26] [PASSED] drm_test_cmdline_multiple_options
[01:57:26] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:57:26] [PASSED] drm_test_cmdline_extra_and_option
[01:57:26] [PASSED] drm_test_cmdline_freestanding_options
[01:57:26] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:57:26] [PASSED] drm_test_cmdline_panel_orientation
[01:57:26] ================ drm_test_cmdline_invalid =================
[01:57:26] [PASSED] margin_only
[01:57:26] [PASSED] interlace_only
[01:57:26] [PASSED] res_missing_x
[01:57:26] [PASSED] res_missing_y
[01:57:26] [PASSED] res_bad_y
[01:57:26] [PASSED] res_missing_y_bpp
[01:57:26] [PASSED] res_bad_bpp
[01:57:26] [PASSED] res_bad_refresh
[01:57:26] [PASSED] res_bpp_refresh_force_on_off
[01:57:26] [PASSED] res_invalid_mode
[01:57:26] [PASSED] res_bpp_wrong_place_mode
[01:57:26] [PASSED] name_bpp_refresh
[01:57:26] [PASSED] name_refresh
[01:57:26] [PASSED] name_refresh_wrong_mode
[01:57:26] [PASSED] name_refresh_invalid_mode
[01:57:26] [PASSED] rotate_multiple
[01:57:26] [PASSED] rotate_invalid_val
[01:57:26] [PASSED] rotate_truncated
[01:57:26] [PASSED] invalid_option
[01:57:26] [PASSED] invalid_tv_option
[01:57:26] [PASSED] truncated_tv_option
[01:57:26] ============ [PASSED] drm_test_cmdline_invalid =============
[01:57:26] =============== drm_test_cmdline_tv_options ===============
[01:57:26] [PASSED] NTSC
[01:57:26] [PASSED] NTSC_443
[01:57:26] [PASSED] NTSC_J
[01:57:26] [PASSED] PAL
[01:57:26] [PASSED] PAL_M
[01:57:26] [PASSED] PAL_N
[01:57:26] [PASSED] SECAM
[01:57:26] [PASSED] MONO_525
[01:57:26] [PASSED] MONO_625
[01:57:26] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:57:26] =============== [PASSED] drm_cmdline_parser ================
[01:57:26] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:57:26] [PASSED] drm_test_connector_hdmi_init_valid
[01:57:26] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:57:26] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:57:26] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:57:26] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:57:26] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:57:26] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:57:26] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:57:26] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:57:26] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:57:26] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:57:26] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:57:26] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:57:26] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:57:26] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:57:26] [PASSED] drm_test_connector_hdmi_init_null_product
[01:57:26] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:57:26] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:57:26] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:57:26] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:57:26] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:57:26] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:57:26] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:57:26] ========= drm_test_connector_hdmi_init_type_valid =========
[01:57:26] [PASSED] HDMI-A
[01:57:26] [PASSED] HDMI-B
[01:57:26] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:57:26] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:57:26] [PASSED] Unknown
[01:57:26] [PASSED] VGA
[01:57:26] [PASSED] DVI-I
[01:57:26] [PASSED] DVI-D
[01:57:26] [PASSED] DVI-A
[01:57:26] [PASSED] Composite
[01:57:26] [PASSED] SVIDEO
[01:57:26] [PASSED] LVDS
[01:57:26] [PASSED] Component
[01:57:26] [PASSED] DIN
[01:57:26] [PASSED] DP
[01:57:26] [PASSED] TV
[01:57:26] [PASSED] eDP
[01:57:26] [PASSED] Virtual
[01:57:26] [PASSED] DSI
[01:57:26] [PASSED] DPI
[01:57:26] [PASSED] Writeback
[01:57:26] [PASSED] SPI
[01:57:26] [PASSED] USB
[01:57:26] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:57:26] ============ [PASSED] drmm_connector_hdmi_init =============
[01:57:26] ============= drmm_connector_init (3 subtests) =============
[01:57:26] [PASSED] drm_test_drmm_connector_init
[01:57:26] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:57:26] ========= drm_test_drmm_connector_init_type_valid =========
[01:57:26] [PASSED] Unknown
[01:57:26] [PASSED] VGA
[01:57:26] [PASSED] DVI-I
[01:57:26] [PASSED] DVI-D
[01:57:26] [PASSED] DVI-A
[01:57:26] [PASSED] Composite
[01:57:26] [PASSED] SVIDEO
[01:57:26] [PASSED] LVDS
[01:57:26] [PASSED] Component
[01:57:26] [PASSED] DIN
[01:57:26] [PASSED] DP
[01:57:26] [PASSED] HDMI-A
[01:57:26] [PASSED] HDMI-B
[01:57:26] [PASSED] TV
[01:57:26] [PASSED] eDP
[01:57:26] [PASSED] Virtual
[01:57:26] [PASSED] DSI
[01:57:26] [PASSED] DPI
[01:57:26] [PASSED] Writeback
[01:57:26] [PASSED] SPI
[01:57:26] [PASSED] USB
[01:57:26] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:57:26] =============== [PASSED] drmm_connector_init ===============
[01:57:26] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_init
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:57:26] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:57:26] [PASSED] Unknown
[01:57:26] [PASSED] VGA
[01:57:26] [PASSED] DVI-I
[01:57:26] [PASSED] DVI-D
[01:57:26] [PASSED] DVI-A
[01:57:26] [PASSED] Composite
[01:57:26] [PASSED] SVIDEO
[01:57:26] [PASSED] LVDS
[01:57:26] [PASSED] Component
[01:57:26] [PASSED] DIN
[01:57:26] [PASSED] DP
[01:57:26] [PASSED] HDMI-A
[01:57:26] [PASSED] HDMI-B
[01:57:26] [PASSED] TV
[01:57:26] [PASSED] eDP
[01:57:26] [PASSED] Virtual
[01:57:26] [PASSED] DSI
[01:57:26] [PASSED] DPI
[01:57:26] [PASSED] Writeback
[01:57:26] [PASSED] SPI
[01:57:26] [PASSED] USB
[01:57:26] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:57:26] ======== drm_test_drm_connector_dynamic_init_name =========
[01:57:26] [PASSED] Unknown
[01:57:26] [PASSED] VGA
[01:57:26] [PASSED] DVI-I
[01:57:26] [PASSED] DVI-D
[01:57:26] [PASSED] DVI-A
[01:57:26] [PASSED] Composite
[01:57:26] [PASSED] SVIDEO
[01:57:26] [PASSED] LVDS
[01:57:26] [PASSED] Component
[01:57:26] [PASSED] DIN
[01:57:26] [PASSED] DP
[01:57:26] [PASSED] HDMI-A
[01:57:26] [PASSED] HDMI-B
[01:57:26] [PASSED] TV
[01:57:26] [PASSED] eDP
[01:57:26] [PASSED] Virtual
[01:57:26] [PASSED] DSI
[01:57:26] [PASSED] DPI
[01:57:26] [PASSED] Writeback
[01:57:26] [PASSED] SPI
[01:57:26] [PASSED] USB
[01:57:26] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:57:26] =========== [PASSED] drm_connector_dynamic_init ============
[01:57:26] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:57:26] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:57:26] ======= drm_connector_dynamic_register (7 subtests) ========
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:57:26] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:57:26] ========= [PASSED] drm_connector_dynamic_register ==========
[01:57:26] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:57:26] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:57:26] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:57:26] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:57:26] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:57:26] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:57:26] [PASSED] NTSC
[01:57:26] [PASSED] NTSC-443
[01:57:26] [PASSED] NTSC-J
[01:57:26] [PASSED] PAL
[01:57:26] [PASSED] PAL-M
[01:57:26] [PASSED] PAL-N
[01:57:26] [PASSED] SECAM
[01:57:26] [PASSED] Mono
[01:57:26] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:57:26] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:57:26] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:57:26] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:57:26] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:57:26] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:57:26] [PASSED] VIC 96
[01:57:26] [PASSED] VIC 97
[01:57:26] [PASSED] VIC 101
[01:57:26] [PASSED] VIC 102
[01:57:26] [PASSED] VIC 106
[01:57:26] [PASSED] VIC 107
[01:57:26] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:57:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:57:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:57:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:57:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:57:26] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:57:26] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:57:26] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:57:26] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:57:26] [PASSED] Automatic
[01:57:26] [PASSED] Full
[01:57:26] [PASSED] Limited 16:235
[01:57:26] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:57:26] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:57:26] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:57:26] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:57:26] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:57:26] [PASSED] RGB
[01:57:26] [PASSED] YUV 4:2:0
[01:57:26] [PASSED] YUV 4:2:2
[01:57:26] [PASSED] YUV 4:4:4
[01:57:26] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:57:26] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:57:26] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:57:26] ============= drm_damage_helper (21 subtests) ==============
[01:57:26] [PASSED] drm_test_damage_iter_no_damage
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:57:26] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:57:26] [PASSED] drm_test_damage_iter_simple_damage
[01:57:26] [PASSED] drm_test_damage_iter_single_damage
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:57:26] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:57:26] [PASSED] drm_test_damage_iter_damage
[01:57:26] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:57:26] [PASSED] drm_test_damage_iter_damage_one_outside
[01:57:26] [PASSED] drm_test_damage_iter_damage_src_moved
[01:57:26] [PASSED] drm_test_damage_iter_damage_not_visible
[01:57:26] ================ [PASSED] drm_damage_helper ================
[01:57:26] ============== drm_dp_mst_helper (3 subtests) ==============
[01:57:26] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:57:26] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:57:26] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:57:26] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:57:26] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:57:26] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:57:26] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:57:26] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:57:26] [PASSED] Link rate 2000000 lane count 4
[01:57:26] [PASSED] Link rate 2000000 lane count 2
[01:57:26] [PASSED] Link rate 2000000 lane count 1
[01:57:26] [PASSED] Link rate 1350000 lane count 4
[01:57:26] [PASSED] Link rate 1350000 lane count 2
[01:57:26] [PASSED] Link rate 1350000 lane count 1
[01:57:26] [PASSED] Link rate 1000000 lane count 4
[01:57:26] [PASSED] Link rate 1000000 lane count 2
[01:57:26] [PASSED] Link rate 1000000 lane count 1
[01:57:26] [PASSED] Link rate 810000 lane count 4
[01:57:26] [PASSED] Link rate 810000 lane count 2
[01:57:26] [PASSED] Link rate 810000 lane count 1
[01:57:26] [PASSED] Link rate 540000 lane count 4
[01:57:26] [PASSED] Link rate 540000 lane count 2
[01:57:26] [PASSED] Link rate 540000 lane count 1
[01:57:26] [PASSED] Link rate 270000 lane count 4
[01:57:26] [PASSED] Link rate 270000 lane count 2
[01:57:26] [PASSED] Link rate 270000 lane count 1
[01:57:26] [PASSED] Link rate 162000 lane count 4
[01:57:26] [PASSED] Link rate 162000 lane count 2
[01:57:26] [PASSED] Link rate 162000 lane count 1
[01:57:26] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:57:26] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:57:26] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:57:26] [PASSED] DP_POWER_UP_PHY with port number
[01:57:26] [PASSED] DP_POWER_DOWN_PHY with port number
[01:57:26] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:57:26] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:57:26] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:57:26] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:57:26] [PASSED] DP_QUERY_PAYLOAD with port number
[01:57:26] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:57:26] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:57:26] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:57:26] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:57:26] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:57:26] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:57:26] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:57:26] [PASSED] DP_REMOTE_I2C_READ with port number
[01:57:26] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:57:26] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:57:26] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:57:26] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:57:26] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:57:26] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:57:26] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:57:26] ================ [PASSED] drm_dp_mst_helper ================
[01:57:26] ================== drm_exec (7 subtests) ===================
[01:57:26] [PASSED] sanitycheck
[01:57:26] [PASSED] test_lock
[01:57:26] [PASSED] test_lock_unlock
[01:57:26] [PASSED] test_duplicates
[01:57:26] [PASSED] test_prepare
[01:57:26] [PASSED] test_prepare_array
[01:57:26] [PASSED] test_multiple_loops
[01:57:26] ==================== [PASSED] drm_exec =====================
[01:57:26] =========== drm_format_helper_test (17 subtests) ===========
[01:57:26] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:57:26] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:57:26] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:57:26] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:57:26] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:57:26] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:57:26] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:57:26] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:57:26] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:57:26] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:57:26] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:57:26] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:57:26] ==================== drm_test_fb_swab =====================
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ================ [PASSED] drm_test_fb_swab =================
[01:57:26] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:57:26] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:57:26] [PASSED] single_pixel_source_buffer
[01:57:26] [PASSED] single_pixel_clip_rectangle
[01:57:26] [PASSED] well_known_colors
[01:57:26] [PASSED] destination_pitch
[01:57:26] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:57:26] ================= drm_test_fb_clip_offset =================
[01:57:26] [PASSED] pass through
[01:57:26] [PASSED] horizontal offset
[01:57:26] [PASSED] vertical offset
[01:57:26] [PASSED] horizontal and vertical offset
[01:57:26] [PASSED] horizontal offset (custom pitch)
[01:57:26] [PASSED] vertical offset (custom pitch)
[01:57:26] [PASSED] horizontal and vertical offset (custom pitch)
[01:57:26] ============= [PASSED] drm_test_fb_clip_offset =============
[01:57:26] =================== drm_test_fb_memcpy ====================
[01:57:26] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:57:26] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:57:26] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:57:26] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:57:26] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:57:26] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:57:26] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:57:26] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:57:26] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:57:26] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:57:26] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:57:26] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:57:26] =============== [PASSED] drm_test_fb_memcpy ================
[01:57:26] ============= [PASSED] drm_format_helper_test ==============
[01:57:26] ================= drm_format (18 subtests) =================
[01:57:26] [PASSED] drm_test_format_block_width_invalid
[01:57:26] [PASSED] drm_test_format_block_width_one_plane
[01:57:26] [PASSED] drm_test_format_block_width_two_plane
[01:57:26] [PASSED] drm_test_format_block_width_three_plane
[01:57:26] [PASSED] drm_test_format_block_width_tiled
[01:57:26] [PASSED] drm_test_format_block_height_invalid
[01:57:26] [PASSED] drm_test_format_block_height_one_plane
[01:57:26] [PASSED] drm_test_format_block_height_two_plane
[01:57:26] [PASSED] drm_test_format_block_height_three_plane
[01:57:26] [PASSED] drm_test_format_block_height_tiled
[01:57:26] [PASSED] drm_test_format_min_pitch_invalid
[01:57:26] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:57:26] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:57:26] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:57:26] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:57:26] [PASSED] drm_test_format_min_pitch_two_plane
[01:57:26] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:57:26] [PASSED] drm_test_format_min_pitch_tiled
[01:57:26] =================== [PASSED] drm_format ====================
[01:57:26] ============== drm_framebuffer (10 subtests) ===============
[01:57:26] ========== drm_test_framebuffer_check_src_coords ==========
[01:57:26] [PASSED] Success: source fits into fb
[01:57:26] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:57:26] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:57:26] [PASSED] Fail: overflowing fb with source width
[01:57:26] [PASSED] Fail: overflowing fb with source height
[01:57:26] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:57:26] [PASSED] drm_test_framebuffer_cleanup
[01:57:26] =============== drm_test_framebuffer_create ===============
[01:57:26] [PASSED] ABGR8888 normal sizes
[01:57:26] [PASSED] ABGR8888 max sizes
[01:57:26] [PASSED] ABGR8888 pitch greater than min required
[01:57:26] [PASSED] ABGR8888 pitch less than min required
[01:57:26] [PASSED] ABGR8888 Invalid width
[01:57:26] [PASSED] ABGR8888 Invalid buffer handle
[01:57:26] [PASSED] No pixel format
[01:57:26] [PASSED] ABGR8888 Width 0
[01:57:26] [PASSED] ABGR8888 Height 0
[01:57:26] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:57:26] [PASSED] ABGR8888 Large buffer offset
[01:57:26] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:57:26] [PASSED] ABGR8888 Invalid flag
[01:57:26] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:57:26] [PASSED] ABGR8888 Valid buffer modifier
[01:57:26] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:57:26] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] NV12 Normal sizes
[01:57:26] [PASSED] NV12 Max sizes
[01:57:26] [PASSED] NV12 Invalid pitch
[01:57:26] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:57:26] [PASSED] NV12 different modifier per-plane
[01:57:26] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:57:26] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] NV12 Modifier for inexistent plane
[01:57:26] [PASSED] NV12 Handle for inexistent plane
[01:57:26] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:57:26] [PASSED] YVU420 Normal sizes
[01:57:26] [PASSED] YVU420 Max sizes
[01:57:26] [PASSED] YVU420 Invalid pitch
[01:57:26] [PASSED] YVU420 Different pitches
[01:57:26] [PASSED] YVU420 Different buffer offsets/pitches
[01:57:26] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:57:26] [PASSED] YVU420 Valid modifier
[01:57:26] [PASSED] YVU420 Different modifiers per plane
[01:57:26] [PASSED] YVU420 Modifier for inexistent plane
[01:57:26] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:57:26] [PASSED] X0L2 Normal sizes
[01:57:26] [PASSED] X0L2 Max sizes
[01:57:26] [PASSED] X0L2 Invalid pitch
[01:57:26] [PASSED] X0L2 Pitch greater than minimum required
[01:57:26] [PASSED] X0L2 Handle for inexistent plane
[01:57:26] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:57:26] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:57:26] [PASSED] X0L2 Valid modifier
[01:57:26] [PASSED] X0L2 Modifier for inexistent plane
[01:57:26] =========== [PASSED] drm_test_framebuffer_create ===========
[01:57:26] [PASSED] drm_test_framebuffer_free
[01:57:26] [PASSED] drm_test_framebuffer_init
[01:57:26] [PASSED] drm_test_framebuffer_init_bad_format
[01:57:26] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:57:26] [PASSED] drm_test_framebuffer_lookup
[01:57:26] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:57:26] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:57:26] ================= [PASSED] drm_framebuffer =================
[01:57:26] ================ drm_gem_shmem (8 subtests) ================
[01:57:26] [PASSED] drm_gem_shmem_test_obj_create
[01:57:26] [PASSED] drm_gem_shmem_test_obj_create_private
[01:57:26] [PASSED] drm_gem_shmem_test_pin_pages
[01:57:26] [PASSED] drm_gem_shmem_test_vmap
[01:57:26] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:57:26] [PASSED] drm_gem_shmem_test_get_sg_table
[01:57:26] [PASSED] drm_gem_shmem_test_madvise
[01:57:26] [PASSED] drm_gem_shmem_test_purge
[01:57:26] ================== [PASSED] drm_gem_shmem ==================
[01:57:26] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:57:26] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:57:26] [PASSED] Automatic
[01:57:26] [PASSED] Full
[01:57:26] [PASSED] Limited 16:235
[01:57:26] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:57:26] [PASSED] drm_test_check_disable_connector
[01:57:26] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:57:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:57:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:57:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:57:26] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:57:26] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:57:26] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:57:26] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:57:26] [PASSED] drm_test_check_output_bpc_dvi
[01:57:26] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:57:26] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:57:26] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:57:26] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:57:26] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:57:26] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:57:26] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:57:26] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:57:26] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:57:26] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:57:26] [PASSED] drm_test_check_broadcast_rgb_value
[01:57:26] [PASSED] drm_test_check_bpc_8_value
[01:57:26] [PASSED] drm_test_check_bpc_10_value
[01:57:26] [PASSED] drm_test_check_bpc_12_value
[01:57:26] [PASSED] drm_test_check_format_value
[01:57:26] [PASSED] drm_test_check_tmds_char_value
[01:57:26] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:57:26] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:57:26] [PASSED] drm_test_check_mode_valid
[01:57:26] [PASSED] drm_test_check_mode_valid_reject
[01:57:26] [PASSED] drm_test_check_mode_valid_reject_rate
[01:57:26] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:57:26] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:57:26] ================= drm_managed (2 subtests) =================
[01:57:26] [PASSED] drm_test_managed_release_action
[01:57:26] [PASSED] drm_test_managed_run_action
[01:57:26] =================== [PASSED] drm_managed ===================
[01:57:26] =================== drm_mm (6 subtests) ====================
[01:57:26] [PASSED] drm_test_mm_init
[01:57:26] [PASSED] drm_test_mm_debug
[01:57:26] [PASSED] drm_test_mm_align32
[01:57:26] [PASSED] drm_test_mm_align64
[01:57:26] [PASSED] drm_test_mm_lowest
[01:57:26] [PASSED] drm_test_mm_highest
[01:57:26] ===================== [PASSED] drm_mm ======================
[01:57:26] ============= drm_modes_analog_tv (5 subtests) =============
[01:57:26] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:57:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:57:26] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:57:26] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:57:26] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:57:26] =============== [PASSED] drm_modes_analog_tv ===============
[01:57:26] ============== drm_plane_helper (2 subtests) ===============
[01:57:26] =============== drm_test_check_plane_state ================
[01:57:26] [PASSED] clipping_simple
[01:57:26] [PASSED] clipping_rotate_reflect
[01:57:26] [PASSED] positioning_simple
[01:57:26] [PASSED] upscaling
[01:57:26] [PASSED] downscaling
[01:57:26] [PASSED] rounding1
[01:57:26] [PASSED] rounding2
[01:57:26] [PASSED] rounding3
[01:57:26] [PASSED] rounding4
[01:57:26] =========== [PASSED] drm_test_check_plane_state ============
[01:57:26] =========== drm_test_check_invalid_plane_state ============
[01:57:26] [PASSED] positioning_invalid
[01:57:26] [PASSED] upscaling_invalid
[01:57:26] [PASSED] downscaling_invalid
[01:57:26] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:57:26] ================ [PASSED] drm_plane_helper =================
[01:57:26] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:57:26] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:57:26] [PASSED] None
[01:57:26] [PASSED] PAL
[01:57:26] [PASSED] NTSC
[01:57:26] [PASSED] Both, NTSC Default
[01:57:26] [PASSED] Both, PAL Default
[01:57:26] [PASSED] Both, NTSC Default, with PAL on command-line
[01:57:26] [PASSED] Both, PAL Default, with NTSC on command-line
[01:57:26] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:57:26] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:57:26] ================== drm_rect (9 subtests) ===================
[01:57:26] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:57:26] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:57:26] [PASSED] drm_test_rect_clip_scaled_clipped
[01:57:26] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:57:26] ================= drm_test_rect_intersect =================
[01:57:26] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:57:26] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:57:26] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:57:26] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:57:26] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:57:26] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:57:26] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:57:26] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:57:26] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:57:26] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:57:26] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:57:26] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:57:26] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:57:26] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:57:26] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:57:26] ============= [PASSED] drm_test_rect_intersect =============
[01:57:26] ================ drm_test_rect_calc_hscale ================
[01:57:26] [PASSED] normal use
[01:57:26] [PASSED] out of max range
[01:57:26] [PASSED] out of min range
[01:57:26] [PASSED] zero dst
[01:57:26] [PASSED] negative src
[01:57:26] [PASSED] negative dst
[01:57:26] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:57:26] ================ drm_test_rect_calc_vscale ================
[01:57:26] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:57:26] [PASSED] out of max range
[01:57:26] [PASSED] out of min range
[01:57:26] [PASSED] zero dst
[01:57:26] [PASSED] negative src
[01:57:26] [PASSED] negative dst
[01:57:26] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:57:26] ================== drm_test_rect_rotate ===================
[01:57:26] [PASSED] reflect-x
[01:57:26] [PASSED] reflect-y
[01:57:26] [PASSED] rotate-0
[01:57:26] [PASSED] rotate-90
[01:57:26] [PASSED] rotate-180
[01:57:26] [PASSED] rotate-270
[01:57:26] ============== [PASSED] drm_test_rect_rotate ===============
[01:57:26] ================ drm_test_rect_rotate_inv =================
[01:57:26] [PASSED] reflect-x
[01:57:26] [PASSED] reflect-y
[01:57:26] [PASSED] rotate-0
[01:57:26] [PASSED] rotate-90
[01:57:26] [PASSED] rotate-180
[01:57:26] [PASSED] rotate-270
[01:57:26] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:57:26] ==================== [PASSED] drm_rect =====================
[01:57:26] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:57:26] ============ drm_test_sysfb_build_fourcc_list =============
[01:57:26] [PASSED] no native formats
[01:57:26] [PASSED] XRGB8888 as native format
[01:57:26] [PASSED] remove duplicates
[01:57:26] [PASSED] convert alpha formats
[01:57:26] [PASSED] random formats
[01:57:26] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:57:26] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:57:26] ============================================================
[01:57:26] Testing complete. Ran 622 tests: passed: 622
[01:57:26] Elapsed time: 27.012s total, 1.654s configuring, 24.934s building, 0.393s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:57:26] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:57:27] 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
[01:57:37] Starting KUnit Kernel (1/1)...
[01:57:37] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:57:37] ================= ttm_device (5 subtests) ==================
[01:57:37] [PASSED] ttm_device_init_basic
[01:57:37] [PASSED] ttm_device_init_multiple
[01:57:37] [PASSED] ttm_device_fini_basic
[01:57:37] [PASSED] ttm_device_init_no_vma_man
[01:57:37] ================== ttm_device_init_pools ==================
[01:57:37] [PASSED] No DMA allocations, no DMA32 required
[01:57:37] [PASSED] DMA allocations, DMA32 required
[01:57:37] [PASSED] No DMA allocations, DMA32 required
[01:57:37] [PASSED] DMA allocations, no DMA32 required
[01:57:37] ============== [PASSED] ttm_device_init_pools ==============
[01:57:37] =================== [PASSED] ttm_device ====================
[01:57:37] ================== ttm_pool (8 subtests) ===================
[01:57:37] ================== ttm_pool_alloc_basic ===================
[01:57:37] [PASSED] One page
[01:57:37] [PASSED] More than one page
[01:57:37] [PASSED] Above the allocation limit
[01:57:37] [PASSED] One page, with coherent DMA mappings enabled
[01:57:37] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:57:37] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:57:37] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:57:37] [PASSED] One page
[01:57:37] [PASSED] More than one page
[01:57:37] [PASSED] Above the allocation limit
[01:57:37] [PASSED] One page, with coherent DMA mappings enabled
[01:57:37] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:57:37] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:57:37] [PASSED] ttm_pool_alloc_order_caching_match
[01:57:37] [PASSED] ttm_pool_alloc_caching_mismatch
[01:57:37] [PASSED] ttm_pool_alloc_order_mismatch
[01:57:37] [PASSED] ttm_pool_free_dma_alloc
[01:57:37] [PASSED] ttm_pool_free_no_dma_alloc
[01:57:37] [PASSED] ttm_pool_fini_basic
[01:57:37] ==================== [PASSED] ttm_pool =====================
[01:57:37] ================ ttm_resource (8 subtests) =================
[01:57:37] ================= ttm_resource_init_basic =================
[01:57:37] [PASSED] Init resource in TTM_PL_SYSTEM
[01:57:37] [PASSED] Init resource in TTM_PL_VRAM
[01:57:37] [PASSED] Init resource in a private placement
[01:57:37] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:57:37] ============= [PASSED] ttm_resource_init_basic =============
[01:57:37] [PASSED] ttm_resource_init_pinned
[01:57:37] [PASSED] ttm_resource_fini_basic
[01:57:37] [PASSED] ttm_resource_manager_init_basic
[01:57:37] [PASSED] ttm_resource_manager_usage_basic
[01:57:37] [PASSED] ttm_resource_manager_set_used_basic
[01:57:37] [PASSED] ttm_sys_man_alloc_basic
[01:57:37] [PASSED] ttm_sys_man_free_basic
[01:57:37] ================== [PASSED] ttm_resource ===================
[01:57:37] =================== ttm_tt (15 subtests) ===================
[01:57:37] ==================== ttm_tt_init_basic ====================
[01:57:37] [PASSED] Page-aligned size
[01:57:37] [PASSED] Extra pages requested
[01:57:37] ================ [PASSED] ttm_tt_init_basic ================
[01:57:37] [PASSED] ttm_tt_init_misaligned
[01:57:37] [PASSED] ttm_tt_fini_basic
[01:57:37] [PASSED] ttm_tt_fini_sg
[01:57:37] [PASSED] ttm_tt_fini_shmem
[01:57:37] [PASSED] ttm_tt_create_basic
[01:57:37] [PASSED] ttm_tt_create_invalid_bo_type
[01:57:37] [PASSED] ttm_tt_create_ttm_exists
[01:57:37] [PASSED] ttm_tt_create_failed
[01:57:37] [PASSED] ttm_tt_destroy_basic
[01:57:37] [PASSED] ttm_tt_populate_null_ttm
[01:57:37] [PASSED] ttm_tt_populate_populated_ttm
[01:57:37] [PASSED] ttm_tt_unpopulate_basic
[01:57:37] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:57:37] [PASSED] ttm_tt_swapin_basic
[01:57:37] ===================== [PASSED] ttm_tt ======================
[01:57:37] =================== ttm_bo (14 subtests) ===================
[01:57:37] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:57:37] [PASSED] Cannot be interrupted and sleeps
[01:57:37] [PASSED] Cannot be interrupted, locks straight away
[01:57:37] [PASSED] Can be interrupted, sleeps
[01:57:37] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:57:37] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:57:37] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:57:37] [PASSED] ttm_bo_reserve_double_resv
[01:57:37] [PASSED] ttm_bo_reserve_interrupted
[01:57:37] [PASSED] ttm_bo_reserve_deadlock
[01:57:37] [PASSED] ttm_bo_unreserve_basic
[01:57:37] [PASSED] ttm_bo_unreserve_pinned
[01:57:37] [PASSED] ttm_bo_unreserve_bulk
[01:57:37] [PASSED] ttm_bo_fini_basic
[01:57:37] [PASSED] ttm_bo_fini_shared_resv
[01:57:37] [PASSED] ttm_bo_pin_basic
[01:57:37] [PASSED] ttm_bo_pin_unpin_resource
[01:57:37] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:57:37] ===================== [PASSED] ttm_bo ======================
[01:57:37] ============== ttm_bo_validate (21 subtests) ===============
[01:57:37] ============== ttm_bo_init_reserved_sys_man ===============
[01:57:37] [PASSED] Buffer object for userspace
[01:57:37] [PASSED] Kernel buffer object
[01:57:37] [PASSED] Shared buffer object
[01:57:37] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:57:37] ============== ttm_bo_init_reserved_mock_man ==============
[01:57:37] [PASSED] Buffer object for userspace
[01:57:37] [PASSED] Kernel buffer object
[01:57:37] [PASSED] Shared buffer object
[01:57:37] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:57:37] [PASSED] ttm_bo_init_reserved_resv
[01:57:37] ================== ttm_bo_validate_basic ==================
[01:57:37] [PASSED] Buffer object for userspace
[01:57:37] [PASSED] Kernel buffer object
[01:57:37] [PASSED] Shared buffer object
[01:57:37] ============== [PASSED] ttm_bo_validate_basic ==============
[01:57:37] [PASSED] ttm_bo_validate_invalid_placement
[01:57:37] ============= ttm_bo_validate_same_placement ==============
[01:57:37] [PASSED] System manager
[01:57:37] [PASSED] VRAM manager
[01:57:37] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:57:37] [PASSED] ttm_bo_validate_failed_alloc
[01:57:37] [PASSED] ttm_bo_validate_pinned
[01:57:37] [PASSED] ttm_bo_validate_busy_placement
[01:57:37] ================ ttm_bo_validate_multihop =================
[01:57:37] [PASSED] Buffer object for userspace
[01:57:37] [PASSED] Kernel buffer object
[01:57:37] [PASSED] Shared buffer object
[01:57:37] ============ [PASSED] ttm_bo_validate_multihop =============
[01:57:37] ========== ttm_bo_validate_no_placement_signaled ==========
[01:57:37] [PASSED] Buffer object in system domain, no page vector
[01:57:37] [PASSED] Buffer object in system domain with an existing page vector
[01:57:37] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:57:37] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:57:37] [PASSED] Buffer object for userspace
[01:57:37] [PASSED] Kernel buffer object
[01:57:37] [PASSED] Shared buffer object
[01:57:37] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:57:37] [PASSED] ttm_bo_validate_move_fence_signaled
[01:57:37] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:57:37] [PASSED] Waits for GPU
[01:57:37] [PASSED] Tries to lock straight away
[01:57:37] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:57:37] [PASSED] ttm_bo_validate_happy_evict
[01:57:37] [PASSED] ttm_bo_validate_all_pinned_evict
[01:57:37] [PASSED] ttm_bo_validate_allowed_only_evict
[01:57:37] [PASSED] ttm_bo_validate_deleted_evict
[01:57:37] [PASSED] ttm_bo_validate_busy_domain_evict
[01:57:37] [PASSED] ttm_bo_validate_evict_gutting
[01:57:37] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:57:37] ================= [PASSED] ttm_bo_validate =================
[01:57:37] ============================================================
[01:57:37] Testing complete. Ran 101 tests: passed: 101
[01:57:37] Elapsed time: 11.317s total, 1.650s configuring, 9.450s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Xe.CI.BAT: failure for drm/xe/vf: Minor fixes to post-migration recovery
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (3 preceding siblings ...)
2025-10-14 1:57 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery Patchwork
@ 2025-10-14 2:40 ` Patchwork
2025-10-14 10:44 ` ✗ Xe.CI.Full: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-10-14 2:40 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2721 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery
URL : https://patchwork.freedesktop.org/series/155865/
State : failure
== Summary ==
CI Bug Log - changes from xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada_BAT -> xe-pw-155865v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155865v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155865v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-155865v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-adlp-7: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_module_load@load:
- bat-adlp-vm: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-adlp-vm/igt@xe_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/bat-adlp-vm/igt@xe_module_load@load.html
Known issues
------------
Here are the changes found in xe-pw-155865v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#4543]) +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada -> xe-pw-155865v1
IGT_8582: 8582
xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada: c917f7d11493984be9f381ca0a7667bd3e587ada
xe-pw-155865v1: 155865v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/index.html
[-- Attachment #2: Type: text/html, Size: 3368 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/vf: Minor fixes to post-migration recovery
2025-10-14 0:44 [PATCH v1 0/3] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (4 preceding siblings ...)
2025-10-14 2:40 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-10-14 10:44 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2025-10-14 10:44 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 47722 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery
URL : https://patchwork.freedesktop.org/series/155865/
State : failure
== Summary ==
CI Bug Log - changes from xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada_FULL -> xe-pw-155865v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155865v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155865v1_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-155865v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@engine-activity-load:
- shard-adlp: NOTRUN -> [ABORT][1] +3 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_pmu@engine-activity-load.html
* igt@xe_pmu@engine-activity-most-load-idle:
- shard-adlp: [PASS][2] -> [ABORT][3] +10 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-1/igt@xe_pmu@engine-activity-most-load-idle.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-1/igt@xe_pmu@engine-activity-most-load-idle.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0}:
- shard-adlp: NOTRUN -> [ABORT][4] +3 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html
* {igt@xe_pmu@engine-activity-render-node-load-idle}:
- shard-adlp: [PASS][5] -> [ABORT][6] +4 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-9/igt@xe_pmu@engine-activity-render-node-load-idle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_pmu@engine-activity-render-node-load-idle.html
Known issues
------------
Here are the changes found in xe-pw-155865v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [DMESG-FAIL][7] ([Intel XE#4543]) +3 other tests dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [FAIL][8] ([Intel XE#3884]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#316]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1477])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#787]) +32 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2669]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#2907]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168] / [i915#14968])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/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-hdmi-a-6:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_chamelium_color@ctm-negative.html
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#373]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#307])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1468])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2291]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#309]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#1340])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#3009])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-5/igt@kms_dp_aux_dev.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4354])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#310]) +5 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2316]) +11 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#4543]) +2 other tests dmesg-warn
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-1/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#301]) +1 other test fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: NOTRUN -> [DMESG-WARN][56] ([Intel XE#4543]) +3 other tests dmesg-warn
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#455]) +10 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [DMESG-FAIL][60] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#651]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#656]) +25 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#651]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#653]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#656]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#3374] / [Intel XE#3544])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#1503]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#346])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@kms_joiner@basic-big-joiner.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-155865v1/shard-lnl-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2571])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#870]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2893])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#3414]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#1435])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#330])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@kms_tv_load_detect@load-detect.html
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#330])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#1499])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-8/igt@kms_vrr@negative-basic.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-4/igt@kms_vrr@negative-basic.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_ccs@suspend-resume.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#1123])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_create@create-big-vram:
- shard-adlp: NOTRUN -> [SKIP][90] ([Intel XE#1062])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#4837] / [Intel XE#5565]) +10 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#261]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_evict@evict-mixed-many-threads-small.html
- shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#6321])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#688]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#261] / [Intel XE#688])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@xe_evict@evict-small-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1392]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#1392] / [Intel XE#5575]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@invalid-va:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#288] / [Intel XE#5561]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@xe_exec_fault_mode@invalid-va.html
* igt@xe_exec_system_allocator@process-many-large-mmap-file-mlock:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#4915]) +173 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_exec_system_allocator@process-many-large-mmap-file-mlock.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4943]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-large-mmap-huge.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#5100])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-adlp: NOTRUN -> [SKIP][105] ([Intel XE#5100]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_oa@blocking:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#3573]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@xe_oa@blocking.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#6032])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#977])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-2/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-config:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#944])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#944]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#4814] / [Intel XE#5614])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-8/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: NOTRUN -> [ABORT][115] ([Intel XE#5545]) +1 other test abort
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#4351])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-1/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][117] ([Intel XE#2291]) -> [PASS][118] +9 other tests pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][119] ([Intel XE#4354]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][121] ([Intel XE#2316]) -> [PASS][122] +13 other tests pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@basic-plain-flip@c-hdmi-a1:
- shard-adlp: [DMESG-WARN][123] ([Intel XE#4543]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-1/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-adlp-9/igt@kms_flip@basic-plain-flip@c-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][125] ([Intel XE#301]) -> [PASS][126] +1 other test pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [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-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [SKIP][129] ([Intel XE#1503]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][131] ([Intel XE#3012]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][133] ([Intel XE#4596]) -> [PASS][134] +1 other test pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.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-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][137] ([Intel XE#2341]) -> [FAIL][138] ([Intel XE#1178])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][139] ([Intel XE#1178]) -> [SKIP][140] ([Intel XE#2341]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@kms_content_protection@legacy.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][141] ([Intel XE#1188]) -> [SKIP][142] ([Intel XE#2341])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-8/igt@kms_content_protection@uevent.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +25 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][145] ([Intel XE#2312]) -> [SKIP][146] ([Intel XE#5390]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][147] ([Intel XE#5390]) -> [SKIP][148] ([Intel XE#2312]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][149] ([Intel XE#2312]) -> [SKIP][150] ([Intel XE#2311]) +25 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][151] ([Intel XE#2312]) -> [SKIP][152] ([Intel XE#2313]) +23 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][153] ([Intel XE#2313]) -> [SKIP][154] ([Intel XE#2312]) +29 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1500]) -> [SKIP][156] ([Intel XE#362])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6320
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6326
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada -> xe-pw-155865v1
IGT_8582: 8582
xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada: c917f7d11493984be9f381ca0a7667bd3e587ada
xe-pw-155865v1: 155865v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v1/index.html
[-- Attachment #2: Type: text/html, Size: 54189 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread