Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Avoid crash during dump when finding an evicted BO
@ 2025-10-12 12:45 Simon Richter
  2025-10-12 12:45 ` [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs Simon Richter
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Simon Richter @ 2025-10-12 12:45 UTC (permalink / raw)
  To: intel-xe; +Cc: Simon Richter

Hi,

this is the horrible, but short implementation to avoid dereferencing
bo->resource when it is NULL. As far as I can see, that can happen if a BO
is evicted, and maybe for other reasons as well, and most other places
looking at bo->resource will also do a NULL pointer check.

Is the "if (!ptr) ... else switch(ptr->member) { ... }" pattern acceptable,
should I do a "goto out;" instead, or should I duplicate the unlocking
path?

   Simon

Simon Richter (1):
  drm/ttm: Avoid NULL pointer deref for evicted BOs

 drivers/gpu/drm/ttm/ttm_bo_vm.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

-- 
2.47.3


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
@ 2025-10-12 12:45 ` Simon Richter
  2025-10-12 23:09   ` Matthew Brost
  2025-10-12 12:52 ` ✗ CI.checkpatch: warning for Avoid crash during dump when finding an evicted BO Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Simon Richter @ 2025-10-12 12:45 UTC (permalink / raw)
  To: intel-xe; +Cc: Simon Richter

It is possible for a BO to exist that is not currently associated with a
resource, e.g. because it has been evicted.

When devcoredump tries to read the contents of all BOs for dumping, we need
to expect this as well -- in this case, ENODATA is recorded instead of the
buffer contents.

Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
---
 drivers/gpu/drm/ttm/ttm_bo_vm.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
index b47020fca199..99bd75be8b1a 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
@@ -434,7 +434,9 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
 	if (ret)
 		return ret;
 
-	switch (bo->resource->mem_type) {
+	if (!bo->resource)
+		ret = -ENODATA;
+	else switch (bo->resource->mem_type) {
 	case TTM_PL_SYSTEM:
 		fallthrough;
 	case TTM_PL_TT:
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* ✗ CI.checkpatch: warning for Avoid crash during dump when finding an evicted BO
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
  2025-10-12 12:45 ` [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs Simon Richter
@ 2025-10-12 12:52 ` Patchwork
  2025-10-12 12:53 ` ✓ CI.KUnit: success " Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-12 12:52 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO
URL   : https://patchwork.freedesktop.org/series/155787/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit fa4310f9b9f030f08136b1270a2428f6d661d164
Author: Simon Richter <Simon.Richter@hogyros.de>
Date:   Sun Oct 12 21:45:32 2025 +0900

    drm/ttm: Avoid NULL pointer deref for evicted BOs
    
    It is possible for a BO to exist that is not currently associated with a
    resource, e.g. because it has been evicted.
    
    When devcoredump tries to read the contents of all BOs for dumping, we need
    to expect this as well -- in this case, ENODATA is recorded instead of the
    buffer contents.
    
    Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
+ /mt/dim checkpatch 8fcdbd2480bd7d0f6ce819561685462e94c4ed48 drm-intel
fa4310f9b9f0 drm/ttm: Avoid NULL pointer deref for evicted BOs
-:13: WARNING:COMMIT_LOG_USE_LINK: Unknown link reference 'Fixes:', use 'Link:' or 'Closes:' instead
#13: 
Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271

-:26: ERROR:TRAILING_STATEMENTS: trailing statements should be on next line
#26: FILE: drivers/gpu/drm/ttm/ttm_bo_vm.c:439:
+	else switch (bo->resource->mem_type) {

-:29: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)

total: 2 errors, 1 warnings, 0 checks, 10 lines checked



^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✓ CI.KUnit: success for Avoid crash during dump when finding an evicted BO
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
  2025-10-12 12:45 ` [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs Simon Richter
  2025-10-12 12:52 ` ✗ CI.checkpatch: warning for Avoid crash during dump when finding an evicted BO Patchwork
@ 2025-10-12 12:53 ` Patchwork
  2025-10-12 13:35 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-12 12:53 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO
URL   : https://patchwork.freedesktop.org/series/155787/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:52:02] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:52:07] 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
[12:52:36] Starting KUnit Kernel (1/1)...
[12:52:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:52:36] ================== guc_buf (11 subtests) ===================
[12:52:36] [PASSED] test_smallest
[12:52:36] [PASSED] test_largest
[12:52:36] [PASSED] test_granular
[12:52:36] [PASSED] test_unique
[12:52:36] [PASSED] test_overlap
[12:52:36] [PASSED] test_reusable
[12:52:36] [PASSED] test_too_big
[12:52:36] [PASSED] test_flush
[12:52:36] [PASSED] test_lookup
[12:52:36] [PASSED] test_data
[12:52:36] [PASSED] test_class
[12:52:36] ===================== [PASSED] guc_buf =====================
[12:52:36] =================== guc_dbm (7 subtests) ===================
[12:52:36] [PASSED] test_empty
[12:52:36] [PASSED] test_default
[12:52:36] ======================== test_size  ========================
[12:52:36] [PASSED] 4
[12:52:36] [PASSED] 8
[12:52:36] [PASSED] 32
[12:52:36] [PASSED] 256
[12:52:36] ==================== [PASSED] test_size ====================
[12:52:36] ======================= test_reuse  ========================
[12:52:36] [PASSED] 4
[12:52:36] [PASSED] 8
[12:52:36] [PASSED] 32
[12:52:36] [PASSED] 256
[12:52:36] =================== [PASSED] test_reuse ====================
[12:52:36] =================== test_range_overlap  ====================
[12:52:36] [PASSED] 4
[12:52:36] [PASSED] 8
[12:52:36] [PASSED] 32
[12:52:36] [PASSED] 256
[12:52:36] =============== [PASSED] test_range_overlap ================
[12:52:36] =================== test_range_compact  ====================
[12:52:36] [PASSED] 4
[12:52:36] [PASSED] 8
[12:52:36] [PASSED] 32
[12:52:36] [PASSED] 256
[12:52:36] =============== [PASSED] test_range_compact ================
[12:52:36] ==================== test_range_spare  =====================
[12:52:36] [PASSED] 4
[12:52:36] [PASSED] 8
[12:52:36] [PASSED] 32
[12:52:36] [PASSED] 256
[12:52:36] ================ [PASSED] test_range_spare =================
[12:52:36] ===================== [PASSED] guc_dbm =====================
[12:52:36] =================== guc_idm (6 subtests) ===================
[12:52:36] [PASSED] bad_init
[12:52:36] [PASSED] no_init
[12:52:36] [PASSED] init_fini
[12:52:36] [PASSED] check_used
[12:52:36] [PASSED] check_quota
[12:52:36] [PASSED] check_all
[12:52:36] ===================== [PASSED] guc_idm =====================
[12:52:36] ================== no_relay (3 subtests) ===================
[12:52:36] [PASSED] xe_drops_guc2pf_if_not_ready
[12:52:36] [PASSED] xe_drops_guc2vf_if_not_ready
[12:52:36] [PASSED] xe_rejects_send_if_not_ready
[12:52:36] ==================== [PASSED] no_relay =====================
[12:52:36] ================== pf_relay (14 subtests) ==================
[12:52:36] [PASSED] pf_rejects_guc2pf_too_short
[12:52:36] [PASSED] pf_rejects_guc2pf_too_long
[12:52:36] [PASSED] pf_rejects_guc2pf_no_payload
[12:52:36] [PASSED] pf_fails_no_payload
[12:52:36] [PASSED] pf_fails_bad_origin
[12:52:36] [PASSED] pf_fails_bad_type
[12:52:36] [PASSED] pf_txn_reports_error
[12:52:36] [PASSED] pf_txn_sends_pf2guc
[12:52:36] [PASSED] pf_sends_pf2guc
[12:52:36] [SKIPPED] pf_loopback_nop
[12:52:36] [SKIPPED] pf_loopback_echo
[12:52:36] [SKIPPED] pf_loopback_fail
[12:52:36] [SKIPPED] pf_loopback_busy
[12:52:36] [SKIPPED] pf_loopback_retry
[12:52:36] ==================== [PASSED] pf_relay =====================
[12:52:36] ================== vf_relay (3 subtests) ===================
[12:52:36] [PASSED] vf_rejects_guc2vf_too_short
[12:52:36] [PASSED] vf_rejects_guc2vf_too_long
[12:52:36] [PASSED] vf_rejects_guc2vf_no_payload
[12:52:36] ==================== [PASSED] vf_relay =====================
[12:52:36] ===================== lmtt (1 subtest) =====================
[12:52:36] ======================== test_ops  =========================
[12:52:36] [PASSED] 2-level
[12:52:36] [PASSED] multi-level
[12:52:36] ==================== [PASSED] test_ops =====================
[12:52:36] ====================== [PASSED] lmtt =======================
[12:52:36] ================= pf_service (11 subtests) =================
[12:52:36] [PASSED] pf_negotiate_any
[12:52:36] [PASSED] pf_negotiate_base_match
[12:52:36] [PASSED] pf_negotiate_base_newer
[12:52:36] [PASSED] pf_negotiate_base_next
[12:52:36] [SKIPPED] pf_negotiate_base_older
[12:52:36] [PASSED] pf_negotiate_base_prev
[12:52:36] [PASSED] pf_negotiate_latest_match
[12:52:36] [PASSED] pf_negotiate_latest_newer
[12:52:36] [PASSED] pf_negotiate_latest_next
[12:52:36] [SKIPPED] pf_negotiate_latest_older
[12:52:36] [SKIPPED] pf_negotiate_latest_prev
[12:52:36] =================== [PASSED] pf_service ====================
[12:52:36] ================= xe_guc_g2g (2 subtests) ==================
[12:52:36] ============== xe_live_guc_g2g_kunit_default  ==============
[12:52:36] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:52:36] ============== xe_live_guc_g2g_kunit_allmem  ===============
[12:52:36] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:52:36] =================== [SKIPPED] xe_guc_g2g ===================
[12:52:36] =================== xe_mocs (2 subtests) ===================
[12:52:36] ================ xe_live_mocs_kernel_kunit  ================
[12:52:36] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:52:36] ================ xe_live_mocs_reset_kunit  =================
[12:52:36] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:52:36] ==================== [SKIPPED] xe_mocs =====================
[12:52:36] ================= xe_migrate (2 subtests) ==================
[12:52:36] ================= xe_migrate_sanity_kunit  =================
[12:52:36] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:52:36] ================== xe_validate_ccs_kunit  ==================
[12:52:36] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:52:36] =================== [SKIPPED] xe_migrate ===================
[12:52:36] ================== xe_dma_buf (1 subtest) ==================
[12:52:36] ==================== xe_dma_buf_kunit  =====================
[12:52:36] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:52:36] =================== [SKIPPED] xe_dma_buf ===================
[12:52:36] ================= xe_bo_shrink (1 subtest) =================
[12:52:36] =================== xe_bo_shrink_kunit  ====================
[12:52:36] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:52:36] ================== [SKIPPED] xe_bo_shrink ==================
[12:52:36] ==================== xe_bo (2 subtests) ====================
[12:52:36] ================== xe_ccs_migrate_kunit  ===================
[12:52:36] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:52:36] ==================== xe_bo_evict_kunit  ====================
[12:52:36] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:52:36] ===================== [SKIPPED] xe_bo ======================
[12:52:36] ==================== args (11 subtests) ====================
[12:52:36] [PASSED] count_args_test
[12:52:36] [PASSED] call_args_example
[12:52:36] [PASSED] call_args_test
[12:52:36] [PASSED] drop_first_arg_example
[12:52:36] [PASSED] drop_first_arg_test
[12:52:36] [PASSED] first_arg_example
[12:52:36] [PASSED] first_arg_test
[12:52:36] [PASSED] last_arg_example
[12:52:36] [PASSED] last_arg_test
[12:52:36] [PASSED] pick_arg_example
[12:52:36] [PASSED] sep_comma_example
[12:52:36] ====================== [PASSED] args =======================
[12:52:36] =================== xe_pci (3 subtests) ====================
[12:52:36] ==================== check_graphics_ip  ====================
[12:52:36] [PASSED] 12.00 Xe_LP
[12:52:36] [PASSED] 12.10 Xe_LP+
[12:52:36] [PASSED] 12.55 Xe_HPG
[12:52:36] [PASSED] 12.60 Xe_HPC
[12:52:36] [PASSED] 12.70 Xe_LPG
[12:52:36] [PASSED] 12.71 Xe_LPG
[12:52:36] [PASSED] 12.74 Xe_LPG+
[12:52:36] [PASSED] 20.01 Xe2_HPG
[12:52:36] [PASSED] 20.02 Xe2_HPG
[12:52:36] [PASSED] 20.04 Xe2_LPG
[12:52:36] [PASSED] 30.00 Xe3_LPG
[12:52:36] [PASSED] 30.01 Xe3_LPG
[12:52:36] [PASSED] 30.03 Xe3_LPG
[12:52:36] ================ [PASSED] check_graphics_ip ================
[12:52:36] ===================== check_media_ip  ======================
[12:52:36] [PASSED] 12.00 Xe_M
[12:52:36] [PASSED] 12.55 Xe_HPM
[12:52:36] [PASSED] 13.00 Xe_LPM+
[12:52:36] [PASSED] 13.01 Xe2_HPM
[12:52:36] [PASSED] 20.00 Xe2_LPM
[12:52:36] [PASSED] 30.00 Xe3_LPM
[12:52:36] [PASSED] 30.02 Xe3_LPM
[12:52:36] ================= [PASSED] check_media_ip ==================
[12:52:36] ================= check_platform_gt_count  =================
[12:52:36] [PASSED] 0x9A60 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A68 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A70 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A40 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A49 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A59 (TIGERLAKE)
[12:52:36] [PASSED] 0x9A78 (TIGERLAKE)
[12:52:36] [PASSED] 0x9AC0 (TIGERLAKE)
[12:52:36] [PASSED] 0x9AC9 (TIGERLAKE)
[12:52:36] [PASSED] 0x9AD9 (TIGERLAKE)
[12:52:36] [PASSED] 0x9AF8 (TIGERLAKE)
[12:52:36] [PASSED] 0x4C80 (ROCKETLAKE)
[12:52:36] [PASSED] 0x4C8A (ROCKETLAKE)
[12:52:36] [PASSED] 0x4C8B (ROCKETLAKE)
[12:52:36] [PASSED] 0x4C8C (ROCKETLAKE)
[12:52:36] [PASSED] 0x4C90 (ROCKETLAKE)
[12:52:36] [PASSED] 0x4C9A (ROCKETLAKE)
[12:52:36] [PASSED] 0x4680 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4682 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4688 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x468A (ALDERLAKE_S)
[12:52:36] [PASSED] 0x468B (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4690 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4692 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4693 (ALDERLAKE_S)
[12:52:36] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46AA (ALDERLAKE_P)
[12:52:36] [PASSED] 0x462A (ALDERLAKE_P)
[12:52:36] [PASSED] 0x4626 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x4628 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:52:36] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:52:36] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:52:36] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:52:36] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:52:36] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:52:36] [PASSED] 0xA721 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA720 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:52:36] [PASSED] 0xA780 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA781 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA782 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA783 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA788 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA789 (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA78A (ALDERLAKE_S)
[12:52:36] [PASSED] 0xA78B (ALDERLAKE_S)
[12:52:36] [PASSED] 0x4905 (DG1)
[12:52:36] [PASSED] 0x4906 (DG1)
[12:52:36] [PASSED] 0x4907 (DG1)
[12:52:36] [PASSED] 0x4908 (DG1)
[12:52:36] [PASSED] 0x4909 (DG1)
[12:52:36] [PASSED] 0x56C0 (DG2)
[12:52:36] [PASSED] 0x56C2 (DG2)
[12:52:36] [PASSED] 0x56C1 (DG2)
[12:52:36] [PASSED] 0x7D51 (METEORLAKE)
[12:52:36] [PASSED] 0x7DD1 (METEORLAKE)
[12:52:36] [PASSED] 0x7D41 (METEORLAKE)
[12:52:36] [PASSED] 0x7D67 (METEORLAKE)
[12:52:36] [PASSED] 0xB640 (METEORLAKE)
[12:52:36] [PASSED] 0x56A0 (DG2)
[12:52:36] [PASSED] 0x56A1 (DG2)
[12:52:36] [PASSED] 0x56A2 (DG2)
[12:52:36] [PASSED] 0x56BE (DG2)
[12:52:36] [PASSED] 0x56BF (DG2)
[12:52:36] [PASSED] 0x5690 (DG2)
[12:52:36] [PASSED] 0x5691 (DG2)
[12:52:36] [PASSED] 0x5692 (DG2)
[12:52:36] [PASSED] 0x56A5 (DG2)
[12:52:36] [PASSED] 0x56A6 (DG2)
[12:52:36] [PASSED] 0x56B0 (DG2)
[12:52:36] [PASSED] 0x56B1 (DG2)
[12:52:36] [PASSED] 0x56BA (DG2)
[12:52:36] [PASSED] 0x56BB (DG2)
[12:52:36] [PASSED] 0x56BC (DG2)
[12:52:36] [PASSED] 0x56BD (DG2)
[12:52:36] [PASSED] 0x5693 (DG2)
[12:52:36] [PASSED] 0x5694 (DG2)
[12:52:36] [PASSED] 0x5695 (DG2)
[12:52:36] [PASSED] 0x56A3 (DG2)
[12:52:36] [PASSED] 0x56A4 (DG2)
[12:52:36] [PASSED] 0x56B2 (DG2)
[12:52:36] [PASSED] 0x56B3 (DG2)
[12:52:36] [PASSED] 0x5696 (DG2)
[12:52:36] [PASSED] 0x5697 (DG2)
[12:52:36] [PASSED] 0xB69 (PVC)
[12:52:36] [PASSED] 0xB6E (PVC)
[12:52:36] [PASSED] 0xBD4 (PVC)
[12:52:36] [PASSED] 0xBD5 (PVC)
[12:52:36] [PASSED] 0xBD6 (PVC)
[12:52:36] [PASSED] 0xBD7 (PVC)
[12:52:36] [PASSED] 0xBD8 (PVC)
[12:52:36] [PASSED] 0xBD9 (PVC)
[12:52:36] [PASSED] 0xBDA (PVC)
[12:52:36] [PASSED] 0xBDB (PVC)
[12:52:36] [PASSED] 0xBE0 (PVC)
[12:52:36] [PASSED] 0xBE1 (PVC)
[12:52:36] [PASSED] 0xBE5 (PVC)
[12:52:36] [PASSED] 0x7D40 (METEORLAKE)
[12:52:36] [PASSED] 0x7D45 (METEORLAKE)
[12:52:36] [PASSED] 0x7D55 (METEORLAKE)
[12:52:36] [PASSED] 0x7D60 (METEORLAKE)
[12:52:36] [PASSED] 0x7DD5 (METEORLAKE)
[12:52:36] [PASSED] 0x6420 (LUNARLAKE)
[12:52:36] [PASSED] 0x64A0 (LUNARLAKE)
[12:52:36] [PASSED] 0x64B0 (LUNARLAKE)
[12:52:36] [PASSED] 0xE202 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE209 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE20B (BATTLEMAGE)
[12:52:36] [PASSED] 0xE20C (BATTLEMAGE)
[12:52:36] [PASSED] 0xE20D (BATTLEMAGE)
[12:52:36] [PASSED] 0xE210 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE211 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE212 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE216 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE220 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE221 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE222 (BATTLEMAGE)
[12:52:36] [PASSED] 0xE223 (BATTLEMAGE)
[12:52:36] [PASSED] 0xB080 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB081 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB082 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB083 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB084 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB085 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB086 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB087 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB08F (PANTHERLAKE)
[12:52:36] [PASSED] 0xB090 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:52:36] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:52:36] [PASSED] 0xFD80 (PANTHERLAKE)
[12:52:36] [PASSED] 0xFD81 (PANTHERLAKE)
[12:52:36] ============= [PASSED] check_platform_gt_count =============
[12:52:36] ===================== [PASSED] xe_pci ======================
[12:52:36] =================== xe_rtp (2 subtests) ====================
[12:52:36] =============== xe_rtp_process_to_sr_tests  ================
[12:52:36] [PASSED] coalesce-same-reg
[12:52:36] [PASSED] no-match-no-add
[12:52:36] [PASSED] match-or
[12:52:36] [PASSED] match-or-xfail
[12:52:36] [PASSED] no-match-no-add-multiple-rules
[12:52:36] [PASSED] two-regs-two-entries
[12:52:36] [PASSED] clr-one-set-other
[12:52:36] [PASSED] set-field
[12:52:36] [PASSED] conflict-duplicate
[12:52:36] [PASSED] conflict-not-disjoint
[12:52:36] [PASSED] conflict-reg-type
[12:52:36] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:52:36] ================== xe_rtp_process_tests  ===================
[12:52:36] [PASSED] active1
[12:52:36] [PASSED] active2
[12:52:36] [PASSED] active-inactive
[12:52:36] [PASSED] inactive-active
[12:52:36] [PASSED] inactive-1st_or_active-inactive
[12:52:36] [PASSED] inactive-2nd_or_active-inactive
[12:52:36] [PASSED] inactive-last_or_active-inactive
[12:52:36] [PASSED] inactive-no_or_active-inactive
[12:52:36] ============== [PASSED] xe_rtp_process_tests ===============
[12:52:36] ===================== [PASSED] xe_rtp ======================
[12:52:36] ==================== xe_wa (1 subtest) =====================
[12:52:36] ======================== xe_wa_gt  =========================
[12:52:36] [PASSED] TIGERLAKE B0
[12:52:36] [PASSED] DG1 A0
[12:52:36] [PASSED] DG1 B0
[12:52:36] [PASSED] ALDERLAKE_S A0
[12:52:36] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[12:52:36] [PASSED] ALDERLAKE_S C0
[12:52:36] [PASSED] ALDERLAKE_S D0
[12:52:36] [PASSED] ALDERLAKE_P A0
[12:52:36] [PASSED] ALDERLAKE_P B0
[12:52:36] [PASSED] ALDERLAKE_P C0
[12:52:36] [PASSED] ALDERLAKE_S RPLS D0
[12:52:36] [PASSED] ALDERLAKE_P RPLU E0
[12:52:36] [PASSED] DG2 G10 C0
[12:52:36] [PASSED] DG2 G11 B1
[12:52:36] [PASSED] DG2 G12 A1
[12:52:36] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:52:36] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:52:36] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:52:36] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:52:36] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:52:36] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:52:36] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:52:36] ==================== [PASSED] xe_wa_gt =====================
[12:52:36] ====================== [PASSED] xe_wa ======================
[12:52:36] ============================================================
[12:52:36] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[12:52:36] Elapsed time: 33.821s total, 4.331s configuring, 29.123s building, 0.333s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:52:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:52:38] 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
[12:53:02] Starting KUnit Kernel (1/1)...
[12:53:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:53:02] ============ drm_test_pick_cmdline (2 subtests) ============
[12:53:02] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:53:02] =============== drm_test_pick_cmdline_named  ===============
[12:53:02] [PASSED] NTSC
[12:53:02] [PASSED] NTSC-J
[12:53:02] [PASSED] PAL
[12:53:02] [PASSED] PAL-M
[12:53:02] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:53:02] ============== [PASSED] drm_test_pick_cmdline ==============
[12:53:02] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:53:02] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:53:02] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:53:02] =========== drm_validate_clone_mode (2 subtests) ===========
[12:53:02] ============== drm_test_check_in_clone_mode  ===============
[12:53:02] [PASSED] in_clone_mode
[12:53:02] [PASSED] not_in_clone_mode
[12:53:02] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:53:02] =============== drm_test_check_valid_clones  ===============
[12:53:02] [PASSED] not_in_clone_mode
[12:53:02] [PASSED] valid_clone
[12:53:02] [PASSED] invalid_clone
[12:53:02] =========== [PASSED] drm_test_check_valid_clones ===========
[12:53:02] ============= [PASSED] drm_validate_clone_mode =============
[12:53:02] ============= drm_validate_modeset (1 subtest) =============
[12:53:02] [PASSED] drm_test_check_connector_changed_modeset
[12:53:02] ============== [PASSED] drm_validate_modeset ===============
[12:53:02] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:53:02] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:53:02] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:53:02] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:53:02] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:53:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:53:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:53:02] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:53:02] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:53:02] ============== drm_bridge_alloc (2 subtests) ===============
[12:53:02] [PASSED] drm_test_drm_bridge_alloc_basic
[12:53:02] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:53:02] ================ [PASSED] drm_bridge_alloc =================
[12:53:02] ================== drm_buddy (8 subtests) ==================
[12:53:02] [PASSED] drm_test_buddy_alloc_limit
[12:53:02] [PASSED] drm_test_buddy_alloc_optimistic
[12:53:02] [PASSED] drm_test_buddy_alloc_pessimistic
[12:53:02] [PASSED] drm_test_buddy_alloc_pathological
[12:53:02] [PASSED] drm_test_buddy_alloc_contiguous
[12:53:02] [PASSED] drm_test_buddy_alloc_clear
[12:53:02] [PASSED] drm_test_buddy_alloc_range_bias
[12:53:03] [PASSED] drm_test_buddy_fragmentation_performance
[12:53:03] ==================== [PASSED] drm_buddy ====================
[12:53:03] ============= drm_cmdline_parser (40 subtests) =============
[12:53:03] [PASSED] drm_test_cmdline_force_d_only
[12:53:03] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:53:03] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:53:03] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:53:03] [PASSED] drm_test_cmdline_force_e_only
[12:53:03] [PASSED] drm_test_cmdline_res
[12:53:03] [PASSED] drm_test_cmdline_res_vesa
[12:53:03] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:53:03] [PASSED] drm_test_cmdline_res_rblank
[12:53:03] [PASSED] drm_test_cmdline_res_bpp
[12:53:03] [PASSED] drm_test_cmdline_res_refresh
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:53:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:53:03] [PASSED] drm_test_cmdline_res_margins_force_on
[12:53:03] [PASSED] drm_test_cmdline_res_vesa_margins
[12:53:03] [PASSED] drm_test_cmdline_name
[12:53:03] [PASSED] drm_test_cmdline_name_bpp
[12:53:03] [PASSED] drm_test_cmdline_name_option
[12:53:03] [PASSED] drm_test_cmdline_name_bpp_option
[12:53:03] [PASSED] drm_test_cmdline_rotate_0
[12:53:03] [PASSED] drm_test_cmdline_rotate_90
[12:53:03] [PASSED] drm_test_cmdline_rotate_180
[12:53:03] [PASSED] drm_test_cmdline_rotate_270
[12:53:03] [PASSED] drm_test_cmdline_hmirror
[12:53:03] [PASSED] drm_test_cmdline_vmirror
[12:53:03] [PASSED] drm_test_cmdline_margin_options
[12:53:03] [PASSED] drm_test_cmdline_multiple_options
[12:53:03] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:53:03] [PASSED] drm_test_cmdline_extra_and_option
[12:53:03] [PASSED] drm_test_cmdline_freestanding_options
[12:53:03] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:53:03] [PASSED] drm_test_cmdline_panel_orientation
[12:53:03] ================ drm_test_cmdline_invalid  =================
[12:53:03] [PASSED] margin_only
[12:53:03] [PASSED] interlace_only
[12:53:03] [PASSED] res_missing_x
[12:53:03] [PASSED] res_missing_y
[12:53:03] [PASSED] res_bad_y
[12:53:03] [PASSED] res_missing_y_bpp
[12:53:03] [PASSED] res_bad_bpp
[12:53:03] [PASSED] res_bad_refresh
[12:53:03] [PASSED] res_bpp_refresh_force_on_off
[12:53:03] [PASSED] res_invalid_mode
[12:53:03] [PASSED] res_bpp_wrong_place_mode
[12:53:03] [PASSED] name_bpp_refresh
[12:53:03] [PASSED] name_refresh
[12:53:03] [PASSED] name_refresh_wrong_mode
[12:53:03] [PASSED] name_refresh_invalid_mode
[12:53:03] [PASSED] rotate_multiple
[12:53:03] [PASSED] rotate_invalid_val
[12:53:03] [PASSED] rotate_truncated
[12:53:03] [PASSED] invalid_option
[12:53:03] [PASSED] invalid_tv_option
[12:53:03] [PASSED] truncated_tv_option
[12:53:03] ============ [PASSED] drm_test_cmdline_invalid =============
[12:53:03] =============== drm_test_cmdline_tv_options  ===============
[12:53:03] [PASSED] NTSC
[12:53:03] [PASSED] NTSC_443
[12:53:03] [PASSED] NTSC_J
[12:53:03] [PASSED] PAL
[12:53:03] [PASSED] PAL_M
[12:53:03] [PASSED] PAL_N
[12:53:03] [PASSED] SECAM
[12:53:03] [PASSED] MONO_525
[12:53:03] [PASSED] MONO_625
[12:53:03] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:53:03] =============== [PASSED] drm_cmdline_parser ================
[12:53:03] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:53:03] [PASSED] drm_test_connector_hdmi_init_valid
[12:53:03] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:53:03] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:53:03] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:53:03] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:53:03] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:53:03] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:53:03] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:53:03] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[12:53:03] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:53:03] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:53:03] [PASSED] supported_formats=0x3 yuv420_allowed=1
[12:53:03] [PASSED] supported_formats=0x3 yuv420_allowed=0
[12:53:03] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:53:03] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:53:03] [PASSED] drm_test_connector_hdmi_init_null_product
[12:53:03] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:53:03] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:53:03] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:53:03] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:53:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:53:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:53:03] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:53:03] ========= drm_test_connector_hdmi_init_type_valid  =========
[12:53:03] [PASSED] HDMI-A
[12:53:03] [PASSED] HDMI-B
[12:53:03] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:53:03] ======== drm_test_connector_hdmi_init_type_invalid  ========
[12:53:03] [PASSED] Unknown
[12:53:03] [PASSED] VGA
[12:53:03] [PASSED] DVI-I
[12:53:03] [PASSED] DVI-D
[12:53:03] [PASSED] DVI-A
[12:53:03] [PASSED] Composite
[12:53:03] [PASSED] SVIDEO
[12:53:03] [PASSED] LVDS
[12:53:03] [PASSED] Component
[12:53:03] [PASSED] DIN
[12:53:03] [PASSED] DP
[12:53:03] [PASSED] TV
[12:53:03] [PASSED] eDP
[12:53:03] [PASSED] Virtual
[12:53:03] [PASSED] DSI
[12:53:03] [PASSED] DPI
[12:53:03] [PASSED] Writeback
[12:53:03] [PASSED] SPI
[12:53:03] [PASSED] USB
[12:53:03] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:53:03] ============ [PASSED] drmm_connector_hdmi_init =============
[12:53:03] ============= drmm_connector_init (3 subtests) =============
[12:53:03] [PASSED] drm_test_drmm_connector_init
[12:53:03] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:53:03] ========= drm_test_drmm_connector_init_type_valid  =========
[12:53:03] [PASSED] Unknown
[12:53:03] [PASSED] VGA
[12:53:03] [PASSED] DVI-I
[12:53:03] [PASSED] DVI-D
[12:53:03] [PASSED] DVI-A
[12:53:03] [PASSED] Composite
[12:53:03] [PASSED] SVIDEO
[12:53:03] [PASSED] LVDS
[12:53:03] [PASSED] Component
[12:53:03] [PASSED] DIN
[12:53:03] [PASSED] DP
[12:53:03] [PASSED] HDMI-A
[12:53:03] [PASSED] HDMI-B
[12:53:03] [PASSED] TV
[12:53:03] [PASSED] eDP
[12:53:03] [PASSED] Virtual
[12:53:03] [PASSED] DSI
[12:53:03] [PASSED] DPI
[12:53:03] [PASSED] Writeback
[12:53:03] [PASSED] SPI
[12:53:03] [PASSED] USB
[12:53:03] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:53:03] =============== [PASSED] drmm_connector_init ===============
[12:53:03] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_init
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:53:03] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[12:53:03] [PASSED] Unknown
[12:53:03] [PASSED] VGA
[12:53:03] [PASSED] DVI-I
[12:53:03] [PASSED] DVI-D
[12:53:03] [PASSED] DVI-A
[12:53:03] [PASSED] Composite
[12:53:03] [PASSED] SVIDEO
[12:53:03] [PASSED] LVDS
[12:53:03] [PASSED] Component
[12:53:03] [PASSED] DIN
[12:53:03] [PASSED] DP
[12:53:03] [PASSED] HDMI-A
[12:53:03] [PASSED] HDMI-B
[12:53:03] [PASSED] TV
[12:53:03] [PASSED] eDP
[12:53:03] [PASSED] Virtual
[12:53:03] [PASSED] DSI
[12:53:03] [PASSED] DPI
[12:53:03] [PASSED] Writeback
[12:53:03] [PASSED] SPI
[12:53:03] [PASSED] USB
[12:53:03] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:53:03] ======== drm_test_drm_connector_dynamic_init_name  =========
[12:53:03] [PASSED] Unknown
[12:53:03] [PASSED] VGA
[12:53:03] [PASSED] DVI-I
[12:53:03] [PASSED] DVI-D
[12:53:03] [PASSED] DVI-A
[12:53:03] [PASSED] Composite
[12:53:03] [PASSED] SVIDEO
[12:53:03] [PASSED] LVDS
[12:53:03] [PASSED] Component
[12:53:03] [PASSED] DIN
[12:53:03] [PASSED] DP
[12:53:03] [PASSED] HDMI-A
[12:53:03] [PASSED] HDMI-B
[12:53:03] [PASSED] TV
[12:53:03] [PASSED] eDP
[12:53:03] [PASSED] Virtual
[12:53:03] [PASSED] DSI
[12:53:03] [PASSED] DPI
[12:53:03] [PASSED] Writeback
[12:53:03] [PASSED] SPI
[12:53:03] [PASSED] USB
[12:53:03] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:53:03] =========== [PASSED] drm_connector_dynamic_init ============
[12:53:03] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:53:03] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:53:03] ======= drm_connector_dynamic_register (7 subtests) ========
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:53:03] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:53:03] ========= [PASSED] drm_connector_dynamic_register ==========
[12:53:03] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:53:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:53:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:53:03] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:53:03] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:53:03] ========== drm_test_get_tv_mode_from_name_valid  ===========
[12:53:03] [PASSED] NTSC
[12:53:03] [PASSED] NTSC-443
[12:53:03] [PASSED] NTSC-J
[12:53:03] [PASSED] PAL
[12:53:03] [PASSED] PAL-M
[12:53:03] [PASSED] PAL-N
[12:53:03] [PASSED] SECAM
[12:53:03] [PASSED] Mono
[12:53:03] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:53:03] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:53:03] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:53:03] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:53:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:53:03] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[12:53:03] [PASSED] VIC 96
[12:53:03] [PASSED] VIC 97
[12:53:03] [PASSED] VIC 101
[12:53:03] [PASSED] VIC 102
[12:53:03] [PASSED] VIC 106
[12:53:03] [PASSED] VIC 107
[12:53:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:53:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:53:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:53:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:53:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:53:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:53:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:53:03] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:53:03] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[12:53:03] [PASSED] Automatic
[12:53:03] [PASSED] Full
[12:53:03] [PASSED] Limited 16:235
[12:53:03] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:53:03] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:53:03] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:53:03] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:53:03] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[12:53:03] [PASSED] RGB
[12:53:03] [PASSED] YUV 4:2:0
[12:53:03] [PASSED] YUV 4:2:2
[12:53:03] [PASSED] YUV 4:4:4
[12:53:03] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:53:03] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:53:03] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:53:03] ============= drm_damage_helper (21 subtests) ==============
[12:53:03] [PASSED] drm_test_damage_iter_no_damage
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:53:03] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:53:03] [PASSED] drm_test_damage_iter_simple_damage
[12:53:03] [PASSED] drm_test_damage_iter_single_damage
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:53:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:53:03] [PASSED] drm_test_damage_iter_damage
[12:53:03] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:53:03] [PASSED] drm_test_damage_iter_damage_one_outside
[12:53:03] [PASSED] drm_test_damage_iter_damage_src_moved
[12:53:03] [PASSED] drm_test_damage_iter_damage_not_visible
[12:53:03] ================ [PASSED] drm_damage_helper ================
[12:53:03] ============== drm_dp_mst_helper (3 subtests) ==============
[12:53:03] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[12:53:03] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:53:03] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:53:03] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:53:03] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:53:03] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:53:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:53:03] ============== drm_test_dp_mst_calc_pbn_div  ===============
[12:53:03] [PASSED] Link rate 2000000 lane count 4
[12:53:03] [PASSED] Link rate 2000000 lane count 2
[12:53:03] [PASSED] Link rate 2000000 lane count 1
[12:53:03] [PASSED] Link rate 1350000 lane count 4
[12:53:03] [PASSED] Link rate 1350000 lane count 2
[12:53:03] [PASSED] Link rate 1350000 lane count 1
[12:53:03] [PASSED] Link rate 1000000 lane count 4
[12:53:03] [PASSED] Link rate 1000000 lane count 2
[12:53:03] [PASSED] Link rate 1000000 lane count 1
[12:53:03] [PASSED] Link rate 810000 lane count 4
[12:53:03] [PASSED] Link rate 810000 lane count 2
[12:53:03] [PASSED] Link rate 810000 lane count 1
[12:53:03] [PASSED] Link rate 540000 lane count 4
[12:53:03] [PASSED] Link rate 540000 lane count 2
[12:53:03] [PASSED] Link rate 540000 lane count 1
[12:53:03] [PASSED] Link rate 270000 lane count 4
[12:53:03] [PASSED] Link rate 270000 lane count 2
[12:53:03] [PASSED] Link rate 270000 lane count 1
[12:53:03] [PASSED] Link rate 162000 lane count 4
[12:53:03] [PASSED] Link rate 162000 lane count 2
[12:53:03] [PASSED] Link rate 162000 lane count 1
[12:53:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:53:03] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[12:53:03] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:53:03] [PASSED] DP_POWER_UP_PHY with port number
[12:53:03] [PASSED] DP_POWER_DOWN_PHY with port number
[12:53:03] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:53:03] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:53:03] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:53:03] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:53:03] [PASSED] DP_QUERY_PAYLOAD with port number
[12:53:03] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:53:03] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:53:03] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:53:03] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:53:03] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:53:03] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:53:03] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:53:03] [PASSED] DP_REMOTE_I2C_READ with port number
[12:53:03] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:53:03] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:53:03] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:53:03] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:53:03] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:53:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:53:03] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:53:03] ================ [PASSED] drm_dp_mst_helper ================
[12:53:03] ================== drm_exec (7 subtests) ===================
[12:53:03] [PASSED] sanitycheck
[12:53:03] [PASSED] test_lock
[12:53:03] [PASSED] test_lock_unlock
[12:53:03] [PASSED] test_duplicates
[12:53:03] [PASSED] test_prepare
[12:53:03] [PASSED] test_prepare_array
[12:53:03] [PASSED] test_multiple_loops
[12:53:03] ==================== [PASSED] drm_exec =====================
[12:53:03] =========== drm_format_helper_test (17 subtests) ===========
[12:53:03] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:53:03] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:53:03] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:53:03] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:53:03] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:53:03] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:53:03] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:53:03] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:53:03] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:53:03] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:53:03] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:53:03] ============== drm_test_fb_xrgb8888_to_mono  ===============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:53:03] ==================== drm_test_fb_swab  =====================
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ================ [PASSED] drm_test_fb_swab =================
[12:53:03] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:53:03] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[12:53:03] [PASSED] single_pixel_source_buffer
[12:53:03] [PASSED] single_pixel_clip_rectangle
[12:53:03] [PASSED] well_known_colors
[12:53:03] [PASSED] destination_pitch
[12:53:03] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:53:03] ================= drm_test_fb_clip_offset  =================
[12:53:03] [PASSED] pass through
[12:53:03] [PASSED] horizontal offset
[12:53:03] [PASSED] vertical offset
[12:53:03] [PASSED] horizontal and vertical offset
[12:53:03] [PASSED] horizontal offset (custom pitch)
[12:53:03] [PASSED] vertical offset (custom pitch)
[12:53:03] [PASSED] horizontal and vertical offset (custom pitch)
[12:53:03] ============= [PASSED] drm_test_fb_clip_offset =============
[12:53:03] =================== drm_test_fb_memcpy  ====================
[12:53:03] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:53:03] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:53:03] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:53:03] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:53:03] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:53:03] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:53:03] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:53:03] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:53:03] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:53:03] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:53:03] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:53:03] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:53:03] =============== [PASSED] drm_test_fb_memcpy ================
[12:53:03] ============= [PASSED] drm_format_helper_test ==============
[12:53:03] ================= drm_format (18 subtests) =================
[12:53:03] [PASSED] drm_test_format_block_width_invalid
[12:53:03] [PASSED] drm_test_format_block_width_one_plane
[12:53:03] [PASSED] drm_test_format_block_width_two_plane
[12:53:03] [PASSED] drm_test_format_block_width_three_plane
[12:53:03] [PASSED] drm_test_format_block_width_tiled
[12:53:03] [PASSED] drm_test_format_block_height_invalid
[12:53:03] [PASSED] drm_test_format_block_height_one_plane
[12:53:03] [PASSED] drm_test_format_block_height_two_plane
[12:53:03] [PASSED] drm_test_format_block_height_three_plane
[12:53:03] [PASSED] drm_test_format_block_height_tiled
[12:53:03] [PASSED] drm_test_format_min_pitch_invalid
[12:53:03] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:53:03] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:53:03] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:53:03] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:53:03] [PASSED] drm_test_format_min_pitch_two_plane
[12:53:03] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:53:03] [PASSED] drm_test_format_min_pitch_tiled
[12:53:03] =================== [PASSED] drm_format ====================
[12:53:03] ============== drm_framebuffer (10 subtests) ===============
[12:53:03] ========== drm_test_framebuffer_check_src_coords  ==========
[12:53:03] [PASSED] Success: source fits into fb
[12:53:03] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:53:03] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:53:03] [PASSED] Fail: overflowing fb with source width
[12:53:03] [PASSED] Fail: overflowing fb with source height
[12:53:03] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:53:03] [PASSED] drm_test_framebuffer_cleanup
[12:53:03] =============== drm_test_framebuffer_create  ===============
[12:53:03] [PASSED] ABGR8888 normal sizes
[12:53:03] [PASSED] ABGR8888 max sizes
[12:53:03] [PASSED] ABGR8888 pitch greater than min required
[12:53:03] [PASSED] ABGR8888 pitch less than min required
[12:53:03] [PASSED] ABGR8888 Invalid width
[12:53:03] [PASSED] ABGR8888 Invalid buffer handle
[12:53:03] [PASSED] No pixel format
[12:53:03] [PASSED] ABGR8888 Width 0
[12:53:03] [PASSED] ABGR8888 Height 0
[12:53:03] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:53:03] [PASSED] ABGR8888 Large buffer offset
[12:53:03] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:53:03] [PASSED] ABGR8888 Invalid flag
[12:53:03] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:53:03] [PASSED] ABGR8888 Valid buffer modifier
[12:53:03] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:53:03] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] NV12 Normal sizes
[12:53:03] [PASSED] NV12 Max sizes
[12:53:03] [PASSED] NV12 Invalid pitch
[12:53:03] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:53:03] [PASSED] NV12 different  modifier per-plane
[12:53:03] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:53:03] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] NV12 Modifier for inexistent plane
[12:53:03] [PASSED] NV12 Handle for inexistent plane
[12:53:03] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:53:03] [PASSED] YVU420 Normal sizes
[12:53:03] [PASSED] YVU420 Max sizes
[12:53:03] [PASSED] YVU420 Invalid pitch
[12:53:03] [PASSED] YVU420 Different pitches
[12:53:03] [PASSED] YVU420 Different buffer offsets/pitches
[12:53:03] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:53:03] [PASSED] YVU420 Valid modifier
[12:53:03] [PASSED] YVU420 Different modifiers per plane
[12:53:03] [PASSED] YVU420 Modifier for inexistent plane
[12:53:03] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:53:03] [PASSED] X0L2 Normal sizes
[12:53:03] [PASSED] X0L2 Max sizes
[12:53:03] [PASSED] X0L2 Invalid pitch
[12:53:03] [PASSED] X0L2 Pitch greater than minimum required
[12:53:03] [PASSED] X0L2 Handle for inexistent plane
[12:53:03] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:53:03] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:53:03] [PASSED] X0L2 Valid modifier
[12:53:03] [PASSED] X0L2 Modifier for inexistent plane
[12:53:03] =========== [PASSED] drm_test_framebuffer_create ===========
[12:53:03] [PASSED] drm_test_framebuffer_free
[12:53:03] [PASSED] drm_test_framebuffer_init
[12:53:03] [PASSED] drm_test_framebuffer_init_bad_format
[12:53:03] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:53:03] [PASSED] drm_test_framebuffer_lookup
[12:53:03] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:53:03] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:53:03] ================= [PASSED] drm_framebuffer =================
[12:53:03] ================ drm_gem_shmem (8 subtests) ================
[12:53:03] [PASSED] drm_gem_shmem_test_obj_create
[12:53:03] [PASSED] drm_gem_shmem_test_obj_create_private
[12:53:03] [PASSED] drm_gem_shmem_test_pin_pages
[12:53:03] [PASSED] drm_gem_shmem_test_vmap
[12:53:03] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:53:03] [PASSED] drm_gem_shmem_test_get_sg_table
[12:53:03] [PASSED] drm_gem_shmem_test_madvise
[12:53:03] [PASSED] drm_gem_shmem_test_purge
[12:53:03] ================== [PASSED] drm_gem_shmem ==================
[12:53:03] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:53:03] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[12:53:03] [PASSED] Automatic
[12:53:03] [PASSED] Full
[12:53:03] [PASSED] Limited 16:235
[12:53:03] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:53:03] [PASSED] drm_test_check_disable_connector
[12:53:03] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:53:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:53:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:53:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:53:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:53:03] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:53:03] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:53:03] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:53:03] [PASSED] drm_test_check_output_bpc_dvi
[12:53:03] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:53:03] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:53:03] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:53:03] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:53:03] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:53:03] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:53:03] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:53:03] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:53:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:53:03] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:53:03] [PASSED] drm_test_check_broadcast_rgb_value
[12:53:03] [PASSED] drm_test_check_bpc_8_value
[12:53:03] [PASSED] drm_test_check_bpc_10_value
[12:53:03] [PASSED] drm_test_check_bpc_12_value
[12:53:03] [PASSED] drm_test_check_format_value
[12:53:03] [PASSED] drm_test_check_tmds_char_value
[12:53:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:53:03] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:53:03] [PASSED] drm_test_check_mode_valid
[12:53:03] [PASSED] drm_test_check_mode_valid_reject
[12:53:03] [PASSED] drm_test_check_mode_valid_reject_rate
[12:53:03] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:53:03] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:53:03] ================= drm_managed (2 subtests) =================
[12:53:03] [PASSED] drm_test_managed_release_action
[12:53:03] [PASSED] drm_test_managed_run_action
[12:53:03] =================== [PASSED] drm_managed ===================
[12:53:03] =================== drm_mm (6 subtests) ====================
[12:53:03] [PASSED] drm_test_mm_init
[12:53:03] [PASSED] drm_test_mm_debug
[12:53:03] [PASSED] drm_test_mm_align32
[12:53:03] [PASSED] drm_test_mm_align64
[12:53:03] [PASSED] drm_test_mm_lowest
[12:53:03] [PASSED] drm_test_mm_highest
[12:53:03] ===================== [PASSED] drm_mm ======================
[12:53:03] ============= drm_modes_analog_tv (5 subtests) =============
[12:53:03] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:53:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:53:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:53:03] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:53:03] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:53:03] =============== [PASSED] drm_modes_analog_tv ===============
[12:53:03] ============== drm_plane_helper (2 subtests) ===============
[12:53:03] =============== drm_test_check_plane_state  ================
[12:53:03] [PASSED] clipping_simple
[12:53:03] [PASSED] clipping_rotate_reflect
[12:53:03] [PASSED] positioning_simple
[12:53:03] [PASSED] upscaling
[12:53:03] [PASSED] downscaling
[12:53:03] [PASSED] rounding1
[12:53:03] [PASSED] rounding2
[12:53:03] [PASSED] rounding3
[12:53:03] [PASSED] rounding4
[12:53:03] =========== [PASSED] drm_test_check_plane_state ============
[12:53:03] =========== drm_test_check_invalid_plane_state  ============
[12:53:03] [PASSED] positioning_invalid
[12:53:03] [PASSED] upscaling_invalid
[12:53:03] [PASSED] downscaling_invalid
[12:53:03] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:53:03] ================ [PASSED] drm_plane_helper =================
[12:53:03] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:53:03] ====== drm_test_connector_helper_tv_get_modes_check  =======
[12:53:03] [PASSED] None
[12:53:03] [PASSED] PAL
[12:53:03] [PASSED] NTSC
[12:53:03] [PASSED] Both, NTSC Default
[12:53:03] [PASSED] Both, PAL Default
[12:53:03] [PASSED] Both, NTSC Default, with PAL on command-line
[12:53:03] [PASSED] Both, PAL Default, with NTSC on command-line
[12:53:03] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:53:03] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:53:03] ================== drm_rect (9 subtests) ===================
[12:53:03] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:53:03] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:53:03] [PASSED] drm_test_rect_clip_scaled_clipped
[12:53:03] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:53:03] ================= drm_test_rect_intersect  =================
[12:53:03] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:53:03] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:53:03] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:53:03] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:53:03] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:53:03] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:53:03] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:53:03] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:53:03] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:53:03] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:53:03] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:53:03] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:53:03] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:53:03] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:53:03] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:53:03] ============= [PASSED] drm_test_rect_intersect =============
[12:53:03] ================ drm_test_rect_calc_hscale  ================
[12:53:03] [PASSED] normal use
[12:53:03] [PASSED] out of max range
[12:53:03] [PASSED] out of min range
[12:53:03] [PASSED] zero dst
[12:53:03] [PASSED] negative src
[12:53:03] [PASSED] negative dst
[12:53:03] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:53:03] ================ drm_test_rect_calc_vscale  ================
[12:53:03] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[12:53:03] [PASSED] out of max range
[12:53:03] [PASSED] out of min range
[12:53:03] [PASSED] zero dst
[12:53:03] [PASSED] negative src
[12:53:03] [PASSED] negative dst
[12:53:03] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:53:03] ================== drm_test_rect_rotate  ===================
[12:53:03] [PASSED] reflect-x
[12:53:03] [PASSED] reflect-y
[12:53:03] [PASSED] rotate-0
[12:53:03] [PASSED] rotate-90
[12:53:03] [PASSED] rotate-180
[12:53:03] [PASSED] rotate-270
[12:53:03] ============== [PASSED] drm_test_rect_rotate ===============
[12:53:03] ================ drm_test_rect_rotate_inv  =================
[12:53:03] [PASSED] reflect-x
[12:53:03] [PASSED] reflect-y
[12:53:03] [PASSED] rotate-0
[12:53:03] [PASSED] rotate-90
[12:53:03] [PASSED] rotate-180
[12:53:03] [PASSED] rotate-270
[12:53:03] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:53:03] ==================== [PASSED] drm_rect =====================
[12:53:03] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:53:03] ============ drm_test_sysfb_build_fourcc_list  =============
[12:53:03] [PASSED] no native formats
[12:53:03] [PASSED] XRGB8888 as native format
[12:53:03] [PASSED] remove duplicates
[12:53:03] [PASSED] convert alpha formats
[12:53:03] [PASSED] random formats
[12:53:03] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:53:03] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:53:03] ============================================================
[12:53:03] Testing complete. Ran 622 tests: passed: 622
[12:53:03] Elapsed time: 26.177s total, 1.799s configuring, 23.961s building, 0.386s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:53:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:53:04] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[12:53:14] Starting KUnit Kernel (1/1)...
[12:53:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:53:14] ================= ttm_device (5 subtests) ==================
[12:53:14] [PASSED] ttm_device_init_basic
[12:53:14] [PASSED] ttm_device_init_multiple
[12:53:14] [PASSED] ttm_device_fini_basic
[12:53:14] [PASSED] ttm_device_init_no_vma_man
[12:53:14] ================== ttm_device_init_pools  ==================
[12:53:14] [PASSED] No DMA allocations, no DMA32 required
[12:53:14] [PASSED] DMA allocations, DMA32 required
[12:53:14] [PASSED] No DMA allocations, DMA32 required
[12:53:14] [PASSED] DMA allocations, no DMA32 required
[12:53:14] ============== [PASSED] ttm_device_init_pools ==============
[12:53:14] =================== [PASSED] ttm_device ====================
[12:53:14] ================== ttm_pool (8 subtests) ===================
[12:53:14] ================== ttm_pool_alloc_basic  ===================
[12:53:14] [PASSED] One page
[12:53:14] [PASSED] More than one page
[12:53:14] [PASSED] Above the allocation limit
[12:53:14] [PASSED] One page, with coherent DMA mappings enabled
[12:53:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:53:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:53:14] ============== ttm_pool_alloc_basic_dma_addr  ==============
[12:53:14] [PASSED] One page
[12:53:14] [PASSED] More than one page
[12:53:14] [PASSED] Above the allocation limit
[12:53:14] [PASSED] One page, with coherent DMA mappings enabled
[12:53:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:53:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:53:14] [PASSED] ttm_pool_alloc_order_caching_match
[12:53:14] [PASSED] ttm_pool_alloc_caching_mismatch
[12:53:14] [PASSED] ttm_pool_alloc_order_mismatch
[12:53:14] [PASSED] ttm_pool_free_dma_alloc
[12:53:14] [PASSED] ttm_pool_free_no_dma_alloc
[12:53:14] [PASSED] ttm_pool_fini_basic
[12:53:14] ==================== [PASSED] ttm_pool =====================
[12:53:14] ================ ttm_resource (8 subtests) =================
[12:53:14] ================= ttm_resource_init_basic  =================
[12:53:14] [PASSED] Init resource in TTM_PL_SYSTEM
[12:53:14] [PASSED] Init resource in TTM_PL_VRAM
[12:53:14] [PASSED] Init resource in a private placement
[12:53:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:53:14] ============= [PASSED] ttm_resource_init_basic =============
[12:53:14] [PASSED] ttm_resource_init_pinned
[12:53:14] [PASSED] ttm_resource_fini_basic
[12:53:14] [PASSED] ttm_resource_manager_init_basic
[12:53:14] [PASSED] ttm_resource_manager_usage_basic
[12:53:14] [PASSED] ttm_resource_manager_set_used_basic
[12:53:14] [PASSED] ttm_sys_man_alloc_basic
[12:53:14] [PASSED] ttm_sys_man_free_basic
[12:53:14] ================== [PASSED] ttm_resource ===================
[12:53:14] =================== ttm_tt (15 subtests) ===================
[12:53:14] ==================== ttm_tt_init_basic  ====================
[12:53:14] [PASSED] Page-aligned size
[12:53:14] [PASSED] Extra pages requested
[12:53:14] ================ [PASSED] ttm_tt_init_basic ================
[12:53:14] [PASSED] ttm_tt_init_misaligned
[12:53:14] [PASSED] ttm_tt_fini_basic
[12:53:14] [PASSED] ttm_tt_fini_sg
[12:53:14] [PASSED] ttm_tt_fini_shmem
[12:53:14] [PASSED] ttm_tt_create_basic
[12:53:14] [PASSED] ttm_tt_create_invalid_bo_type
[12:53:14] [PASSED] ttm_tt_create_ttm_exists
[12:53:14] [PASSED] ttm_tt_create_failed
[12:53:14] [PASSED] ttm_tt_destroy_basic
[12:53:14] [PASSED] ttm_tt_populate_null_ttm
[12:53:14] [PASSED] ttm_tt_populate_populated_ttm
[12:53:14] [PASSED] ttm_tt_unpopulate_basic
[12:53:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:53:14] [PASSED] ttm_tt_swapin_basic
[12:53:14] ===================== [PASSED] ttm_tt ======================
[12:53:14] =================== ttm_bo (14 subtests) ===================
[12:53:14] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[12:53:14] [PASSED] Cannot be interrupted and sleeps
[12:53:14] [PASSED] Cannot be interrupted, locks straight away
[12:53:14] [PASSED] Can be interrupted, sleeps
[12:53:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:53:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:53:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:53:14] [PASSED] ttm_bo_reserve_double_resv
[12:53:14] [PASSED] ttm_bo_reserve_interrupted
[12:53:14] [PASSED] ttm_bo_reserve_deadlock
[12:53:14] [PASSED] ttm_bo_unreserve_basic
[12:53:14] [PASSED] ttm_bo_unreserve_pinned
[12:53:14] [PASSED] ttm_bo_unreserve_bulk
[12:53:14] [PASSED] ttm_bo_fini_basic
[12:53:14] [PASSED] ttm_bo_fini_shared_resv
[12:53:14] [PASSED] ttm_bo_pin_basic
[12:53:14] [PASSED] ttm_bo_pin_unpin_resource
[12:53:14] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:53:14] ===================== [PASSED] ttm_bo ======================
[12:53:14] ============== ttm_bo_validate (21 subtests) ===============
[12:53:14] ============== ttm_bo_init_reserved_sys_man  ===============
[12:53:14] [PASSED] Buffer object for userspace
[12:53:14] [PASSED] Kernel buffer object
[12:53:14] [PASSED] Shared buffer object
[12:53:14] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:53:14] ============== ttm_bo_init_reserved_mock_man  ==============
[12:53:14] [PASSED] Buffer object for userspace
[12:53:14] [PASSED] Kernel buffer object
[12:53:14] [PASSED] Shared buffer object
[12:53:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:53:14] [PASSED] ttm_bo_init_reserved_resv
[12:53:14] ================== ttm_bo_validate_basic  ==================
[12:53:14] [PASSED] Buffer object for userspace
[12:53:14] [PASSED] Kernel buffer object
[12:53:14] [PASSED] Shared buffer object
[12:53:14] ============== [PASSED] ttm_bo_validate_basic ==============
[12:53:14] [PASSED] ttm_bo_validate_invalid_placement
[12:53:14] ============= ttm_bo_validate_same_placement  ==============
[12:53:14] [PASSED] System manager
[12:53:14] [PASSED] VRAM manager
[12:53:14] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:53:14] [PASSED] ttm_bo_validate_failed_alloc
[12:53:14] [PASSED] ttm_bo_validate_pinned
[12:53:14] [PASSED] ttm_bo_validate_busy_placement
[12:53:14] ================ ttm_bo_validate_multihop  =================
[12:53:14] [PASSED] Buffer object for userspace
[12:53:14] [PASSED] Kernel buffer object
[12:53:14] [PASSED] Shared buffer object
[12:53:14] ============ [PASSED] ttm_bo_validate_multihop =============
[12:53:14] ========== ttm_bo_validate_no_placement_signaled  ==========
[12:53:14] [PASSED] Buffer object in system domain, no page vector
[12:53:14] [PASSED] Buffer object in system domain with an existing page vector
[12:53:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:53:14] ======== ttm_bo_validate_no_placement_not_signaled  ========
[12:53:14] [PASSED] Buffer object for userspace
[12:53:14] [PASSED] Kernel buffer object
[12:53:14] [PASSED] Shared buffer object
[12:53:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:53:14] [PASSED] ttm_bo_validate_move_fence_signaled
[12:53:14] ========= ttm_bo_validate_move_fence_not_signaled  =========
[12:53:14] [PASSED] Waits for GPU
[12:53:14] [PASSED] Tries to lock straight away
[12:53:14] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:53:14] [PASSED] ttm_bo_validate_happy_evict
[12:53:14] [PASSED] ttm_bo_validate_all_pinned_evict
[12:53:14] [PASSED] ttm_bo_validate_allowed_only_evict
[12:53:14] [PASSED] ttm_bo_validate_deleted_evict
[12:53:14] [PASSED] ttm_bo_validate_busy_domain_evict
[12:53:14] [PASSED] ttm_bo_validate_evict_gutting
[12:53:14] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[12:53:14] ================= [PASSED] ttm_bo_validate =================
[12:53:14] ============================================================
[12:53:14] Testing complete. Ran 101 tests: passed: 101
[12:53:14] Elapsed time: 11.235s total, 1.780s configuring, 9.188s building, 0.227s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✓ Xe.CI.BAT: success for Avoid crash during dump when finding an evicted BO
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
                   ` (2 preceding siblings ...)
  2025-10-12 12:53 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-12 13:35 ` Patchwork
  2025-10-12 14:47 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-12 13:35 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 873 bytes --]

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO
URL   : https://patchwork.freedesktop.org/series/155787/
State : success

== Summary ==

CI Bug Log - changes from xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48_BAT -> xe-pw-155787v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * Linux: xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48 -> xe-pw-155787v1

  IGT_8582: 8582
  xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48: 8fcdbd2480bd7d0f6ce819561685462e94c4ed48
  xe-pw-155787v1: 155787v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/index.html

[-- Attachment #2: Type: text/html, Size: 1421 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✗ Xe.CI.Full: failure for Avoid crash during dump when finding an evicted BO
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
                   ` (3 preceding siblings ...)
  2025-10-12 13:35 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-12 14:47 ` Patchwork
  2025-10-13 18:03 ` ✓ CI.KUnit: success for Avoid crash during dump when finding an evicted BO (rev3) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-12 14:47 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 43618 bytes --]

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO
URL   : https://patchwork.freedesktop.org/series/155787/
State : failure

== Summary ==

CI Bug Log - changes from xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48_FULL -> xe-pw-155787v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-155787v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-155787v1_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-155787v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@evict-malloc:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@xe_exec_system_allocator@evict-malloc.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@xe_exec_system_allocator@evict-malloc.html

  
New tests
---------

  New tests have been introduced between xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48_FULL and xe-pw-155787v1_FULL:

### New IGT tests (1) ###

  * igt@kms_concurrent@multi-plane-atomic-lowres@pipe-a-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.26] s

  

Known issues
------------

  Here are the changes found in xe-pw-155787v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] ([Intel XE#316])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][4] ([Intel XE#619])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][5] ([Intel XE#1124]) +4 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][9] ([Intel XE#2191])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#367])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#787]) +55 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2887]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#3432])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][16] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522] / [Intel XE#4842])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][17] ([Intel XE#1727] / [Intel XE#3113])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#373]) +4 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2252]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#308])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2321])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2320]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][23] -> [SKIP][24] ([Intel XE#2291]) +6 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][25] -> [FAIL][26] ([Intel XE#4633])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#323])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2316]) +5 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-7/igt@kms_flip@2x-plain-flip.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][30] -> [FAIL][31] ([Intel XE#301]) +3 other tests fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
    - shard-adlp:         [PASS][32] -> [DMESG-WARN][33] ([Intel XE#4543]) +8 other tests dmesg-warn
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-1/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-2/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x:
    - shard-adlp:         [PASS][34] -> [DMESG-FAIL][35] ([Intel XE#4543])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-x.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][36] -> [FAIL][37] ([Intel XE#1874]) +1 other test fail
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_frontbuffer_tracking@basic:
    - shard-adlp:         [PASS][38] -> [DMESG-WARN][39] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-2/igt@kms_frontbuffer_tracking@basic.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#651]) +15 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2311]) +5 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#5390]) +3 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][43] ([Intel XE#658])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2313]) +7 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#653]) +15 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_plane_cursor@viewport:
    - shard-dg2-set2:     NOTRUN -> [FAIL][46] ([Intel XE#616]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_plane_cursor@viewport.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2763]) +4 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#870])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#1129])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#1406] / [Intel XE#1489])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html

  * igt@kms_psr@psr-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@kms_psr@psr-dpms.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2414])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2939])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][56] -> [SKIP][57] ([Intel XE#1499])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-7/igt@kms_vrr@negative-basic.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_vrr@negative-basic.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#1091] / [Intel XE#2849])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#1123])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_eu_stall@invalid-sampling-rate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#5626])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@xe_eu_stall@invalid-sampling-rate.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#4837]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#4518])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_exec_basic@multigpu-no-exec-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2322]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#288]) +12 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html

  * igt@xe_exec_sip_eudebug@breakpoint-waitsip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#4837]) +4 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#4943]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge.html

  * igt@xe_exec_system_allocator@twice-malloc-fork-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#4915]) +121 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@xe_exec_system_allocator@twice-malloc-fork-read.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][68] ([Intel XE#4917] / [Intel XE#5466])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2833])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#455]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#586])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_mmap@small-bar.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#512])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@xe_mmap@small-bar.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#3573]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1337])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#4650])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#4733])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#944])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#944])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@xe_query@multigpu-query-engines.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#4130]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-433/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  
#### Possible fixes ####

  * {igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1}:
    - shard-adlp:         [DMESG-WARN][80] ([Intel XE#4543]) -> [PASS][81] +4 other tests pass
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-2/igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@kms_async_flips@async-flip-dpms@pipe-c-hdmi-a-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][82] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][83] +1 other test pass
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][84] ([Intel XE#3862]) -> [PASS][85] +1 other test pass
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][86] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][88] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][90] ([Intel XE#6168]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][92] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][94] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [SKIP][96] ([Intel XE#2291]) -> [PASS][97] +5 other tests pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_flip@2x-flip-vs-panning-interruptible:
    - shard-bmg:          [SKIP][98] ([Intel XE#2316]) -> [PASS][99] +2 other tests pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     [INCOMPLETE][100] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][101] +3 other tests pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
    - shard-adlp:         [DMESG-FAIL][102] ([Intel XE#4543]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][104] ([Intel XE#1503]) -> [PASS][105] +1 other test pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_hdr@static-swap.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][106] ([Intel XE#3012]) -> [PASS][107] +1 other test pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][108] ([Intel XE#4596]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_pm_rpm@legacy-planes@plane-43:
    - shard-adlp:         [DMESG-WARN][110] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][111] +6 other tests pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-3/igt@kms_pm_rpm@legacy-planes@plane-43.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-8/igt@kms_pm_rpm@legacy-planes@plane-43.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][112] ([Intel XE#1435]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@xe_exec_system_allocator@many-large-free-race-nomemset:
    - shard-bmg:          [INCOMPLETE][114] -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-5/igt@xe_exec_system_allocator@many-large-free-race-nomemset.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-1/igt@xe_exec_system_allocator@many-large-free-race-nomemset.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-adlp:         [DMESG-WARN][116] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [DMESG-FAIL][118] ([Intel XE#3868] / [Intel XE#5213]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][120] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][121] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522] / [Intel XE#4842])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][122] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][123] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-adlp:         [DMESG-FAIL][124] ([Intel XE#4543]) -> [DMESG-WARN][125] ([Intel XE#4543]) +1 other test dmesg-warn
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][126] ([Intel XE#2312]) -> [SKIP][127] ([Intel XE#2311]) +10 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][128] ([Intel XE#2311]) -> [SKIP][129] ([Intel XE#2312]) +15 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#5390]) +5 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][132] ([Intel XE#5390]) -> [SKIP][133] ([Intel XE#2312]) +5 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][134] ([Intel XE#2313]) -> [SKIP][135] ([Intel XE#2312]) +15 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][136] ([Intel XE#2312]) -> [SKIP][137] ([Intel XE#2313]) +10 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][138] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][139] ([Intel XE#3544])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][140] ([Intel XE#2509]) -> [SKIP][141] ([Intel XE#2426])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][142] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][143] ([Intel XE#5466] / [Intel XE#5530])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [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#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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [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


Build changes
-------------

  * Linux: xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48 -> xe-pw-155787v1

  IGT_8582: 8582
  xe-3902-8fcdbd2480bd7d0f6ce819561685462e94c4ed48: 8fcdbd2480bd7d0f6ce819561685462e94c4ed48
  xe-pw-155787v1: 155787v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v1/index.html

[-- Attachment #2: Type: text/html, Size: 52019 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-12 12:45 ` [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs Simon Richter
@ 2025-10-12 23:09   ` Matthew Brost
  2025-10-13 16:02     ` [PATCH v2] " Simon Richter
  0 siblings, 1 reply; 16+ messages in thread
From: Matthew Brost @ 2025-10-12 23:09 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe, dri-devel

On Sun, Oct 12, 2025 at 09:45:32PM +0900, Simon Richter wrote:
> It is possible for a BO to exist that is not currently associated with a
> resource, e.g. because it has been evicted.
> 
> When devcoredump tries to read the contents of all BOs for dumping, we need
> to expect this as well -- in this case, ENODATA is recorded instead of the
> buffer contents.
> 

Please include dri-devel on TTM patches.

> Fixes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271

s/Fixes/Closes

"Closes" is used for linking to issues, while "Fixes" refers to the
original offending patch that we need to backport to stable. So, you'll
need to include a "Fixes" tag here, along with CC stable.

Let me review this GitLab entry, but it does seem odd that bo->resource
is NULL. What kind of WL is this? I think this might be possible for
a faulting VM that defers validating the BO and performs the bind in the
page fault handler. But for all other WL, I really don’t think this
should be possible—unless I’m missing something.

> ---
>  drivers/gpu/drm/ttm/ttm_bo_vm.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> index b47020fca199..99bd75be8b1a 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> @@ -434,7 +434,9 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
>  	if (ret)
>  		return ret;
>  
> -	switch (bo->resource->mem_type) {
> +	if (!bo->resource)
> +		ret = -ENODATA;
> +	else switch (bo->resource->mem_type) {

This is really odd style. I'd prefer:

if (!bo->resource) {
	ret = -ENODATA;
	goto unlock;
}

Matt

>  	case TTM_PL_SYSTEM:
>  		fallthrough;
>  	case TTM_PL_TT:
> -- 
> 2.47.3
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH v2] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-12 23:09   ` Matthew Brost
@ 2025-10-13 16:02     ` Simon Richter
  2025-10-13 16:11       ` [PATCH v3] " Simon Richter
  0 siblings, 1 reply; 16+ messages in thread
From: Simon Richter @ 2025-10-13 16:02 UTC (permalink / raw)
  To: intel-xe, dri-devel; +Cc: Simon Richter

It is possible for a BO to exist that is not currently associated with a
resource, e.g. because it has been evicted.

When devcoredump tries to read the contents of all BOs for dumping, we need
to expect this as well -- in this case, ENODATA is recorded instead of the
buffer contents.

Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
---
 drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
index b47020fca199..a101ff95b234 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
@@ -434,6 +434,12 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
 	if (ret)
 		return ret;
 
+	if (!bo->resource) {
+		ret = -ENODATA;
+		goto unlock;
+	}
+
 	switch (bo->resource->mem_type) {
 	case TTM_PL_SYSTEM:
 		fallthrough;
@@ -448,6 +454,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
 			ret = -EIO;
 	}
 
+unlock:
 	ttm_bo_unreserve(bo);
 
 	return ret;
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [PATCH v3] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-13 16:02     ` [PATCH v2] " Simon Richter
@ 2025-10-13 16:11       ` Simon Richter
  2025-10-13 16:27         ` Matthew Brost
  0 siblings, 1 reply; 16+ messages in thread
From: Simon Richter @ 2025-10-13 16:11 UTC (permalink / raw)
  To: intel-xe, dri-devel; +Cc: Simon Richter

It is possible for a BO to exist that is not currently associated with a
resource, e.g. because it has been evicted.

When devcoredump tries to read the contents of all BOs for dumping, we need
to expect this as well -- in this case, ENODATA is recorded instead of the
buffer contents.

Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
---
 drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
index b47020fca199..a101ff95b234 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
@@ -434,6 +434,11 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
 	if (ret)
 		return ret;
 
+	if (!bo->resource) {
+		ret = -ENODATA;
+		goto unlock;
+	}
+
 	switch (bo->resource->mem_type) {
 	case TTM_PL_SYSTEM:
 		fallthrough;
@@ -448,6 +453,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
 			ret = -EIO;
 	}
 
+unlock:
 	ttm_bo_unreserve(bo);
 
 	return ret;
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH v3] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-13 16:11       ` [PATCH v3] " Simon Richter
@ 2025-10-13 16:27         ` Matthew Brost
  2025-12-05 17:46           ` Lin, Shuicheng
  0 siblings, 1 reply; 16+ messages in thread
From: Matthew Brost @ 2025-10-13 16:27 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe, dri-devel

On Tue, Oct 14, 2025 at 01:11:33AM +0900, Simon Richter wrote:
> It is possible for a BO to exist that is not currently associated with a
> resource, e.g. because it has been evicted.
> 
> When devcoredump tries to read the contents of all BOs for dumping, we need
> to expect this as well -- in this case, ENODATA is recorded instead of the
> buffer contents.
> 
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271

I think we need a fixes / cc stable but I can add that for you when merging.

Anyways patch LGTM:
Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> ---
>  drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> index b47020fca199..a101ff95b234 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> @@ -434,6 +434,11 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
>  	if (ret)
>  		return ret;
>  
> +	if (!bo->resource) {
> +		ret = -ENODATA;
> +		goto unlock;
> +	}
> +
>  	switch (bo->resource->mem_type) {
>  	case TTM_PL_SYSTEM:
>  		fallthrough;
> @@ -448,6 +453,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
>  			ret = -EIO;
>  	}
>  
> +unlock:
>  	ttm_bo_unreserve(bo);
>  
>  	return ret;
> -- 
> 2.47.3
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✓ CI.KUnit: success for Avoid crash during dump when finding an evicted BO (rev3)
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
                   ` (4 preceding siblings ...)
  2025-10-12 14:47 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-13 18:03 ` Patchwork
  2025-10-13 18:39 ` ✓ Xe.CI.BAT: " Patchwork
  2025-10-13 22:03 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-13 18:03 UTC (permalink / raw)
  To: simon.richter; +Cc: intel-xe

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO (rev3)
URL   : https://patchwork.freedesktop.org/series/155787/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:02:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:02:14] 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
[18:02:44] Starting KUnit Kernel (1/1)...
[18:02:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:02:45] ================== guc_buf (11 subtests) ===================
[18:02:45] [PASSED] test_smallest
[18:02:45] [PASSED] test_largest
[18:02:45] [PASSED] test_granular
[18:02:45] [PASSED] test_unique
[18:02:45] [PASSED] test_overlap
[18:02:45] [PASSED] test_reusable
[18:02:45] [PASSED] test_too_big
[18:02:45] [PASSED] test_flush
[18:02:45] [PASSED] test_lookup
[18:02:45] [PASSED] test_data
[18:02:45] [PASSED] test_class
[18:02:45] ===================== [PASSED] guc_buf =====================
[18:02:45] =================== guc_dbm (7 subtests) ===================
[18:02:45] [PASSED] test_empty
[18:02:45] [PASSED] test_default
[18:02:45] ======================== test_size  ========================
[18:02:45] [PASSED] 4
[18:02:45] [PASSED] 8
[18:02:45] [PASSED] 32
[18:02:45] [PASSED] 256
[18:02:45] ==================== [PASSED] test_size ====================
[18:02:45] ======================= test_reuse  ========================
[18:02:45] [PASSED] 4
[18:02:45] [PASSED] 8
[18:02:45] [PASSED] 32
[18:02:45] [PASSED] 256
[18:02:45] =================== [PASSED] test_reuse ====================
[18:02:45] =================== test_range_overlap  ====================
[18:02:45] [PASSED] 4
[18:02:45] [PASSED] 8
[18:02:45] [PASSED] 32
[18:02:45] [PASSED] 256
[18:02:45] =============== [PASSED] test_range_overlap ================
[18:02:45] =================== test_range_compact  ====================
[18:02:45] [PASSED] 4
[18:02:45] [PASSED] 8
[18:02:45] [PASSED] 32
[18:02:45] [PASSED] 256
[18:02:45] =============== [PASSED] test_range_compact ================
[18:02:45] ==================== test_range_spare  =====================
[18:02:45] [PASSED] 4
[18:02:45] [PASSED] 8
[18:02:45] [PASSED] 32
[18:02:45] [PASSED] 256
[18:02:45] ================ [PASSED] test_range_spare =================
[18:02:45] ===================== [PASSED] guc_dbm =====================
[18:02:45] =================== guc_idm (6 subtests) ===================
[18:02:45] [PASSED] bad_init
[18:02:45] [PASSED] no_init
[18:02:45] [PASSED] init_fini
[18:02:45] [PASSED] check_used
[18:02:45] [PASSED] check_quota
[18:02:45] [PASSED] check_all
[18:02:45] ===================== [PASSED] guc_idm =====================
[18:02:45] ================== no_relay (3 subtests) ===================
[18:02:45] [PASSED] xe_drops_guc2pf_if_not_ready
[18:02:45] [PASSED] xe_drops_guc2vf_if_not_ready
[18:02:45] [PASSED] xe_rejects_send_if_not_ready
[18:02:45] ==================== [PASSED] no_relay =====================
[18:02:45] ================== pf_relay (14 subtests) ==================
[18:02:45] [PASSED] pf_rejects_guc2pf_too_short
[18:02:45] [PASSED] pf_rejects_guc2pf_too_long
[18:02:45] [PASSED] pf_rejects_guc2pf_no_payload
[18:02:45] [PASSED] pf_fails_no_payload
[18:02:45] [PASSED] pf_fails_bad_origin
[18:02:45] [PASSED] pf_fails_bad_type
[18:02:45] [PASSED] pf_txn_reports_error
[18:02:45] [PASSED] pf_txn_sends_pf2guc
[18:02:45] [PASSED] pf_sends_pf2guc
[18:02:45] [SKIPPED] pf_loopback_nop
[18:02:45] [SKIPPED] pf_loopback_echo
[18:02:45] [SKIPPED] pf_loopback_fail
[18:02:45] [SKIPPED] pf_loopback_busy
[18:02:45] [SKIPPED] pf_loopback_retry
[18:02:45] ==================== [PASSED] pf_relay =====================
[18:02:45] ================== vf_relay (3 subtests) ===================
[18:02:45] [PASSED] vf_rejects_guc2vf_too_short
[18:02:45] [PASSED] vf_rejects_guc2vf_too_long
[18:02:45] [PASSED] vf_rejects_guc2vf_no_payload
[18:02:45] ==================== [PASSED] vf_relay =====================
[18:02:45] ===================== lmtt (1 subtest) =====================
[18:02:45] ======================== test_ops  =========================
[18:02:45] [PASSED] 2-level
[18:02:45] [PASSED] multi-level
[18:02:45] ==================== [PASSED] test_ops =====================
[18:02:45] ====================== [PASSED] lmtt =======================
[18:02:45] ================= pf_service (11 subtests) =================
[18:02:45] [PASSED] pf_negotiate_any
[18:02:45] [PASSED] pf_negotiate_base_match
[18:02:45] [PASSED] pf_negotiate_base_newer
[18:02:45] [PASSED] pf_negotiate_base_next
[18:02:45] [SKIPPED] pf_negotiate_base_older
[18:02:45] [PASSED] pf_negotiate_base_prev
[18:02:45] [PASSED] pf_negotiate_latest_match
[18:02:45] [PASSED] pf_negotiate_latest_newer
[18:02:45] [PASSED] pf_negotiate_latest_next
[18:02:45] [SKIPPED] pf_negotiate_latest_older
[18:02:45] [SKIPPED] pf_negotiate_latest_prev
[18:02:45] =================== [PASSED] pf_service ====================
[18:02:45] ================= xe_guc_g2g (2 subtests) ==================
[18:02:45] ============== xe_live_guc_g2g_kunit_default  ==============
[18:02:45] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:02:45] ============== xe_live_guc_g2g_kunit_allmem  ===============
[18:02:45] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:02:45] =================== [SKIPPED] xe_guc_g2g ===================
[18:02:45] =================== xe_mocs (2 subtests) ===================
[18:02:45] ================ xe_live_mocs_kernel_kunit  ================
[18:02:45] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:02:45] ================ xe_live_mocs_reset_kunit  =================
[18:02:45] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:02:45] ==================== [SKIPPED] xe_mocs =====================
[18:02:45] ================= xe_migrate (2 subtests) ==================
[18:02:45] ================= xe_migrate_sanity_kunit  =================
[18:02:45] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:02:45] ================== xe_validate_ccs_kunit  ==================
[18:02:45] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:02:45] =================== [SKIPPED] xe_migrate ===================
[18:02:45] ================== xe_dma_buf (1 subtest) ==================
[18:02:45] ==================== xe_dma_buf_kunit  =====================
[18:02:45] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:02:45] =================== [SKIPPED] xe_dma_buf ===================
[18:02:45] ================= xe_bo_shrink (1 subtest) =================
[18:02:45] =================== xe_bo_shrink_kunit  ====================
[18:02:45] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:02:45] ================== [SKIPPED] xe_bo_shrink ==================
[18:02:45] ==================== xe_bo (2 subtests) ====================
[18:02:45] ================== xe_ccs_migrate_kunit  ===================
[18:02:45] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:02:45] ==================== xe_bo_evict_kunit  ====================
[18:02:45] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:02:45] ===================== [SKIPPED] xe_bo ======================
[18:02:45] ==================== args (11 subtests) ====================
[18:02:45] [PASSED] count_args_test
[18:02:45] [PASSED] call_args_example
[18:02:45] [PASSED] call_args_test
[18:02:45] [PASSED] drop_first_arg_example
[18:02:45] [PASSED] drop_first_arg_test
[18:02:45] [PASSED] first_arg_example
[18:02:45] [PASSED] first_arg_test
[18:02:45] [PASSED] last_arg_example
[18:02:45] [PASSED] last_arg_test
[18:02:45] [PASSED] pick_arg_example
[18:02:45] [PASSED] sep_comma_example
[18:02:45] ====================== [PASSED] args =======================
[18:02:45] =================== xe_pci (3 subtests) ====================
[18:02:45] ==================== check_graphics_ip  ====================
[18:02:45] [PASSED] 12.00 Xe_LP
[18:02:45] [PASSED] 12.10 Xe_LP+
[18:02:45] [PASSED] 12.55 Xe_HPG
[18:02:45] [PASSED] 12.60 Xe_HPC
[18:02:45] [PASSED] 12.70 Xe_LPG
[18:02:45] [PASSED] 12.71 Xe_LPG
[18:02:45] [PASSED] 12.74 Xe_LPG+
[18:02:45] [PASSED] 20.01 Xe2_HPG
[18:02:45] [PASSED] 20.02 Xe2_HPG
[18:02:45] [PASSED] 20.04 Xe2_LPG
[18:02:45] [PASSED] 30.00 Xe3_LPG
[18:02:45] [PASSED] 30.01 Xe3_LPG
[18:02:45] [PASSED] 30.03 Xe3_LPG
[18:02:45] ================ [PASSED] check_graphics_ip ================
[18:02:45] ===================== check_media_ip  ======================
[18:02:45] [PASSED] 12.00 Xe_M
[18:02:45] [PASSED] 12.55 Xe_HPM
[18:02:45] [PASSED] 13.00 Xe_LPM+
[18:02:45] [PASSED] 13.01 Xe2_HPM
[18:02:45] [PASSED] 20.00 Xe2_LPM
[18:02:45] [PASSED] 30.00 Xe3_LPM
[18:02:45] [PASSED] 30.02 Xe3_LPM
[18:02:45] ================= [PASSED] check_media_ip ==================
[18:02:45] ================= check_platform_gt_count  =================
[18:02:45] [PASSED] 0x9A60 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A68 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A70 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A40 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A49 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A59 (TIGERLAKE)
[18:02:45] [PASSED] 0x9A78 (TIGERLAKE)
[18:02:45] [PASSED] 0x9AC0 (TIGERLAKE)
[18:02:45] [PASSED] 0x9AC9 (TIGERLAKE)
[18:02:45] [PASSED] 0x9AD9 (TIGERLAKE)
[18:02:45] [PASSED] 0x9AF8 (TIGERLAKE)
[18:02:45] [PASSED] 0x4C80 (ROCKETLAKE)
[18:02:45] [PASSED] 0x4C8A (ROCKETLAKE)
[18:02:45] [PASSED] 0x4C8B (ROCKETLAKE)
[18:02:45] [PASSED] 0x4C8C (ROCKETLAKE)
[18:02:45] [PASSED] 0x4C90 (ROCKETLAKE)
[18:02:45] [PASSED] 0x4C9A (ROCKETLAKE)
[18:02:45] [PASSED] 0x4680 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4682 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4688 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x468A (ALDERLAKE_S)
[18:02:45] [PASSED] 0x468B (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4690 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4692 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4693 (ALDERLAKE_S)
[18:02:45] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46AA (ALDERLAKE_P)
[18:02:45] [PASSED] 0x462A (ALDERLAKE_P)
[18:02:45] [PASSED] 0x4626 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x4628 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:02:45] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:02:45] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:02:45] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:02:45] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:02:45] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:02:45] [PASSED] 0xA721 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA720 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:02:45] [PASSED] 0xA780 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA781 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA782 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA783 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA788 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA789 (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA78A (ALDERLAKE_S)
[18:02:45] [PASSED] 0xA78B (ALDERLAKE_S)
[18:02:45] [PASSED] 0x4905 (DG1)
[18:02:45] [PASSED] 0x4906 (DG1)
[18:02:45] [PASSED] 0x4907 (DG1)
[18:02:45] [PASSED] 0x4908 (DG1)
[18:02:45] [PASSED] 0x4909 (DG1)
[18:02:45] [PASSED] 0x56C0 (DG2)
[18:02:45] [PASSED] 0x56C2 (DG2)
[18:02:45] [PASSED] 0x56C1 (DG2)
[18:02:45] [PASSED] 0x7D51 (METEORLAKE)
[18:02:45] [PASSED] 0x7DD1 (METEORLAKE)
[18:02:45] [PASSED] 0x7D41 (METEORLAKE)
[18:02:45] [PASSED] 0x7D67 (METEORLAKE)
[18:02:45] [PASSED] 0xB640 (METEORLAKE)
[18:02:45] [PASSED] 0x56A0 (DG2)
[18:02:45] [PASSED] 0x56A1 (DG2)
[18:02:45] [PASSED] 0x56A2 (DG2)
[18:02:45] [PASSED] 0x56BE (DG2)
[18:02:45] [PASSED] 0x56BF (DG2)
[18:02:45] [PASSED] 0x5690 (DG2)
[18:02:45] [PASSED] 0x5691 (DG2)
[18:02:45] [PASSED] 0x5692 (DG2)
[18:02:45] [PASSED] 0x56A5 (DG2)
[18:02:45] [PASSED] 0x56A6 (DG2)
[18:02:45] [PASSED] 0x56B0 (DG2)
[18:02:45] [PASSED] 0x56B1 (DG2)
[18:02:45] [PASSED] 0x56BA (DG2)
[18:02:45] [PASSED] 0x56BB (DG2)
[18:02:45] [PASSED] 0x56BC (DG2)
[18:02:45] [PASSED] 0x56BD (DG2)
[18:02:45] [PASSED] 0x5693 (DG2)
[18:02:45] [PASSED] 0x5694 (DG2)
[18:02:45] [PASSED] 0x5695 (DG2)
[18:02:45] [PASSED] 0x56A3 (DG2)
[18:02:45] [PASSED] 0x56A4 (DG2)
[18:02:45] [PASSED] 0x56B2 (DG2)
[18:02:45] [PASSED] 0x56B3 (DG2)
[18:02:45] [PASSED] 0x5696 (DG2)
[18:02:45] [PASSED] 0x5697 (DG2)
[18:02:45] [PASSED] 0xB69 (PVC)
[18:02:45] [PASSED] 0xB6E (PVC)
[18:02:45] [PASSED] 0xBD4 (PVC)
[18:02:45] [PASSED] 0xBD5 (PVC)
[18:02:45] [PASSED] 0xBD6 (PVC)
[18:02:45] [PASSED] 0xBD7 (PVC)
[18:02:45] [PASSED] 0xBD8 (PVC)
[18:02:45] [PASSED] 0xBD9 (PVC)
[18:02:45] [PASSED] 0xBDA (PVC)
[18:02:45] [PASSED] 0xBDB (PVC)
[18:02:45] [PASSED] 0xBE0 (PVC)
[18:02:45] [PASSED] 0xBE1 (PVC)
[18:02:45] [PASSED] 0xBE5 (PVC)
[18:02:45] [PASSED] 0x7D40 (METEORLAKE)
[18:02:45] [PASSED] 0x7D45 (METEORLAKE)
[18:02:45] [PASSED] 0x7D55 (METEORLAKE)
[18:02:45] [PASSED] 0x7D60 (METEORLAKE)
[18:02:45] [PASSED] 0x7DD5 (METEORLAKE)
[18:02:45] [PASSED] 0x6420 (LUNARLAKE)
[18:02:45] [PASSED] 0x64A0 (LUNARLAKE)
[18:02:45] [PASSED] 0x64B0 (LUNARLAKE)
[18:02:45] [PASSED] 0xE202 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE209 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE20B (BATTLEMAGE)
[18:02:45] [PASSED] 0xE20C (BATTLEMAGE)
[18:02:45] [PASSED] 0xE20D (BATTLEMAGE)
[18:02:45] [PASSED] 0xE210 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE211 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE212 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE216 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE220 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE221 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE222 (BATTLEMAGE)
[18:02:45] [PASSED] 0xE223 (BATTLEMAGE)
[18:02:45] [PASSED] 0xB080 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB081 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB082 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB083 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB084 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB085 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB086 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB087 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB08F (PANTHERLAKE)
[18:02:45] [PASSED] 0xB090 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:02:45] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:02:45] [PASSED] 0xFD80 (PANTHERLAKE)
[18:02:45] [PASSED] 0xFD81 (PANTHERLAKE)
[18:02:45] ============= [PASSED] check_platform_gt_count =============
[18:02:45] ===================== [PASSED] xe_pci ======================
[18:02:45] =================== xe_rtp (2 subtests) ====================
[18:02:45] =============== xe_rtp_process_to_sr_tests  ================
[18:02:45] [PASSED] coalesce-same-reg
[18:02:45] [PASSED] no-match-no-add
[18:02:45] [PASSED] match-or
[18:02:45] [PASSED] match-or-xfail
[18:02:45] [PASSED] no-match-no-add-multiple-rules
[18:02:45] [PASSED] two-regs-two-entries
[18:02:45] [PASSED] clr-one-set-other
[18:02:45] [PASSED] set-field
[18:02:45] [PASSED] conflict-duplicate
[18:02:45] [PASSED] conflict-not-disjoint
[18:02:45] [PASSED] conflict-reg-type
[18:02:45] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:02:45] ================== xe_rtp_process_tests  ===================
[18:02:45] [PASSED] active1
[18:02:45] [PASSED] active2
[18:02:45] [PASSED] active-inactive
[18:02:45] [PASSED] inactive-active
[18:02:45] [PASSED] inactive-1st_or_active-inactive
[18:02:45] [PASSED] inactive-2nd_or_active-inactive
[18:02:45] [PASSED] inactive-last_or_active-inactive
[18:02:45] [PASSED] inactive-no_or_active-inactive
[18:02:45] ============== [PASSED] xe_rtp_process_tests ===============
[18:02:45] ===================== [PASSED] xe_rtp ======================
[18:02:45] ==================== xe_wa (1 subtest) =====================
[18:02:45] ======================== xe_wa_gt  =========================
[18:02:45] [PASSED] TIGERLAKE B0
[18:02:45] [PASSED] DG1 A0
[18:02:45] [PASSED] DG1 B0
[18:02:45] [PASSED] ALDERLAKE_S A0
[18:02:45] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[18:02:45] [PASSED] ALDERLAKE_S C0
[18:02:45] [PASSED] ALDERLAKE_S D0
[18:02:45] [PASSED] ALDERLAKE_P A0
[18:02:45] [PASSED] ALDERLAKE_P B0
[18:02:45] [PASSED] ALDERLAKE_P C0
[18:02:45] [PASSED] ALDERLAKE_S RPLS D0
[18:02:45] [PASSED] ALDERLAKE_P RPLU E0
[18:02:45] [PASSED] DG2 G10 C0
[18:02:45] [PASSED] DG2 G11 B1
[18:02:45] [PASSED] DG2 G12 A1
[18:02:45] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:02:45] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:02:45] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:02:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:02:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:02:45] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:02:45] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:02:45] ==================== [PASSED] xe_wa_gt =====================
[18:02:45] ====================== [PASSED] xe_wa ======================
[18:02:45] ============================================================
[18:02:45] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[18:02:45] Elapsed time: 34.938s total, 4.273s configuring, 30.298s building, 0.330s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:02:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:02:47] 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
[18:03:11] Starting KUnit Kernel (1/1)...
[18:03:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:03:11] ============ drm_test_pick_cmdline (2 subtests) ============
[18:03:11] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:03:11] =============== drm_test_pick_cmdline_named  ===============
[18:03:11] [PASSED] NTSC
[18:03:11] [PASSED] NTSC-J
[18:03:11] [PASSED] PAL
[18:03:11] [PASSED] PAL-M
[18:03:11] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:03:11] ============== [PASSED] drm_test_pick_cmdline ==============
[18:03:11] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:03:11] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:03:11] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:03:11] =========== drm_validate_clone_mode (2 subtests) ===========
[18:03:11] ============== drm_test_check_in_clone_mode  ===============
[18:03:11] [PASSED] in_clone_mode
[18:03:11] [PASSED] not_in_clone_mode
[18:03:11] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:03:11] =============== drm_test_check_valid_clones  ===============
[18:03:11] [PASSED] not_in_clone_mode
[18:03:11] [PASSED] valid_clone
[18:03:11] [PASSED] invalid_clone
[18:03:11] =========== [PASSED] drm_test_check_valid_clones ===========
[18:03:11] ============= [PASSED] drm_validate_clone_mode =============
[18:03:11] ============= drm_validate_modeset (1 subtest) =============
[18:03:11] [PASSED] drm_test_check_connector_changed_modeset
[18:03:11] ============== [PASSED] drm_validate_modeset ===============
[18:03:11] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:03:11] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:03:11] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:03:11] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:03:11] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:03:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:03:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:03:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:03:11] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:03:11] ============== drm_bridge_alloc (2 subtests) ===============
[18:03:11] [PASSED] drm_test_drm_bridge_alloc_basic
[18:03:11] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:03:11] ================ [PASSED] drm_bridge_alloc =================
[18:03:11] ================== drm_buddy (8 subtests) ==================
[18:03:11] [PASSED] drm_test_buddy_alloc_limit
[18:03:11] [PASSED] drm_test_buddy_alloc_optimistic
[18:03:11] [PASSED] drm_test_buddy_alloc_pessimistic
[18:03:11] [PASSED] drm_test_buddy_alloc_pathological
[18:03:11] [PASSED] drm_test_buddy_alloc_contiguous
[18:03:11] [PASSED] drm_test_buddy_alloc_clear
[18:03:11] [PASSED] drm_test_buddy_alloc_range_bias
[18:03:12] [PASSED] drm_test_buddy_fragmentation_performance
[18:03:12] ==================== [PASSED] drm_buddy ====================
[18:03:12] ============= drm_cmdline_parser (40 subtests) =============
[18:03:12] [PASSED] drm_test_cmdline_force_d_only
[18:03:12] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:03:12] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:03:12] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:03:12] [PASSED] drm_test_cmdline_force_e_only
[18:03:12] [PASSED] drm_test_cmdline_res
[18:03:12] [PASSED] drm_test_cmdline_res_vesa
[18:03:12] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:03:12] [PASSED] drm_test_cmdline_res_rblank
[18:03:12] [PASSED] drm_test_cmdline_res_bpp
[18:03:12] [PASSED] drm_test_cmdline_res_refresh
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:03:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:03:12] [PASSED] drm_test_cmdline_res_margins_force_on
[18:03:12] [PASSED] drm_test_cmdline_res_vesa_margins
[18:03:12] [PASSED] drm_test_cmdline_name
[18:03:12] [PASSED] drm_test_cmdline_name_bpp
[18:03:12] [PASSED] drm_test_cmdline_name_option
[18:03:12] [PASSED] drm_test_cmdline_name_bpp_option
[18:03:12] [PASSED] drm_test_cmdline_rotate_0
[18:03:12] [PASSED] drm_test_cmdline_rotate_90
[18:03:12] [PASSED] drm_test_cmdline_rotate_180
[18:03:12] [PASSED] drm_test_cmdline_rotate_270
[18:03:12] [PASSED] drm_test_cmdline_hmirror
[18:03:12] [PASSED] drm_test_cmdline_vmirror
[18:03:12] [PASSED] drm_test_cmdline_margin_options
[18:03:12] [PASSED] drm_test_cmdline_multiple_options
[18:03:12] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:03:12] [PASSED] drm_test_cmdline_extra_and_option
[18:03:12] [PASSED] drm_test_cmdline_freestanding_options
[18:03:12] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:03:12] [PASSED] drm_test_cmdline_panel_orientation
[18:03:12] ================ drm_test_cmdline_invalid  =================
[18:03:12] [PASSED] margin_only
[18:03:12] [PASSED] interlace_only
[18:03:12] [PASSED] res_missing_x
[18:03:12] [PASSED] res_missing_y
[18:03:12] [PASSED] res_bad_y
[18:03:12] [PASSED] res_missing_y_bpp
[18:03:12] [PASSED] res_bad_bpp
[18:03:12] [PASSED] res_bad_refresh
[18:03:12] [PASSED] res_bpp_refresh_force_on_off
[18:03:12] [PASSED] res_invalid_mode
[18:03:12] [PASSED] res_bpp_wrong_place_mode
[18:03:12] [PASSED] name_bpp_refresh
[18:03:12] [PASSED] name_refresh
[18:03:12] [PASSED] name_refresh_wrong_mode
[18:03:12] [PASSED] name_refresh_invalid_mode
[18:03:12] [PASSED] rotate_multiple
[18:03:12] [PASSED] rotate_invalid_val
[18:03:12] [PASSED] rotate_truncated
[18:03:12] [PASSED] invalid_option
[18:03:12] [PASSED] invalid_tv_option
[18:03:12] [PASSED] truncated_tv_option
[18:03:12] ============ [PASSED] drm_test_cmdline_invalid =============
[18:03:12] =============== drm_test_cmdline_tv_options  ===============
[18:03:12] [PASSED] NTSC
[18:03:12] [PASSED] NTSC_443
[18:03:12] [PASSED] NTSC_J
[18:03:12] [PASSED] PAL
[18:03:12] [PASSED] PAL_M
[18:03:12] [PASSED] PAL_N
[18:03:12] [PASSED] SECAM
[18:03:12] [PASSED] MONO_525
[18:03:12] [PASSED] MONO_625
[18:03:12] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:03:12] =============== [PASSED] drm_cmdline_parser ================
[18:03:12] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:03:12] [PASSED] drm_test_connector_hdmi_init_valid
[18:03:12] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:03:12] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:03:12] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:03:12] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:03:12] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:03:12] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:03:12] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:03:12] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[18:03:12] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:03:12] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:03:12] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:03:12] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:03:12] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:03:12] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:03:12] [PASSED] drm_test_connector_hdmi_init_null_product
[18:03:12] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:03:12] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:03:12] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:03:12] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:03:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:03:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:03:12] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:03:12] ========= drm_test_connector_hdmi_init_type_valid  =========
[18:03:12] [PASSED] HDMI-A
[18:03:12] [PASSED] HDMI-B
[18:03:12] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:03:12] ======== drm_test_connector_hdmi_init_type_invalid  ========
[18:03:12] [PASSED] Unknown
[18:03:12] [PASSED] VGA
[18:03:12] [PASSED] DVI-I
[18:03:12] [PASSED] DVI-D
[18:03:12] [PASSED] DVI-A
[18:03:12] [PASSED] Composite
[18:03:12] [PASSED] SVIDEO
[18:03:12] [PASSED] LVDS
[18:03:12] [PASSED] Component
[18:03:12] [PASSED] DIN
[18:03:12] [PASSED] DP
[18:03:12] [PASSED] TV
[18:03:12] [PASSED] eDP
[18:03:12] [PASSED] Virtual
[18:03:12] [PASSED] DSI
[18:03:12] [PASSED] DPI
[18:03:12] [PASSED] Writeback
[18:03:12] [PASSED] SPI
[18:03:12] [PASSED] USB
[18:03:12] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:03:12] ============ [PASSED] drmm_connector_hdmi_init =============
[18:03:12] ============= drmm_connector_init (3 subtests) =============
[18:03:12] [PASSED] drm_test_drmm_connector_init
[18:03:12] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:03:12] ========= drm_test_drmm_connector_init_type_valid  =========
[18:03:12] [PASSED] Unknown
[18:03:12] [PASSED] VGA
[18:03:12] [PASSED] DVI-I
[18:03:12] [PASSED] DVI-D
[18:03:12] [PASSED] DVI-A
[18:03:12] [PASSED] Composite
[18:03:12] [PASSED] SVIDEO
[18:03:12] [PASSED] LVDS
[18:03:12] [PASSED] Component
[18:03:12] [PASSED] DIN
[18:03:12] [PASSED] DP
[18:03:12] [PASSED] HDMI-A
[18:03:12] [PASSED] HDMI-B
[18:03:12] [PASSED] TV
[18:03:12] [PASSED] eDP
[18:03:12] [PASSED] Virtual
[18:03:12] [PASSED] DSI
[18:03:12] [PASSED] DPI
[18:03:12] [PASSED] Writeback
[18:03:12] [PASSED] SPI
[18:03:12] [PASSED] USB
[18:03:12] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:03:12] =============== [PASSED] drmm_connector_init ===============
[18:03:12] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_init
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:03:12] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[18:03:12] [PASSED] Unknown
[18:03:12] [PASSED] VGA
[18:03:12] [PASSED] DVI-I
[18:03:12] [PASSED] DVI-D
[18:03:12] [PASSED] DVI-A
[18:03:12] [PASSED] Composite
[18:03:12] [PASSED] SVIDEO
[18:03:12] [PASSED] LVDS
[18:03:12] [PASSED] Component
[18:03:12] [PASSED] DIN
[18:03:12] [PASSED] DP
[18:03:12] [PASSED] HDMI-A
[18:03:12] [PASSED] HDMI-B
[18:03:12] [PASSED] TV
[18:03:12] [PASSED] eDP
[18:03:12] [PASSED] Virtual
[18:03:12] [PASSED] DSI
[18:03:12] [PASSED] DPI
[18:03:12] [PASSED] Writeback
[18:03:12] [PASSED] SPI
[18:03:12] [PASSED] USB
[18:03:12] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:03:12] ======== drm_test_drm_connector_dynamic_init_name  =========
[18:03:12] [PASSED] Unknown
[18:03:12] [PASSED] VGA
[18:03:12] [PASSED] DVI-I
[18:03:12] [PASSED] DVI-D
[18:03:12] [PASSED] DVI-A
[18:03:12] [PASSED] Composite
[18:03:12] [PASSED] SVIDEO
[18:03:12] [PASSED] LVDS
[18:03:12] [PASSED] Component
[18:03:12] [PASSED] DIN
[18:03:12] [PASSED] DP
[18:03:12] [PASSED] HDMI-A
[18:03:12] [PASSED] HDMI-B
[18:03:12] [PASSED] TV
[18:03:12] [PASSED] eDP
[18:03:12] [PASSED] Virtual
[18:03:12] [PASSED] DSI
[18:03:12] [PASSED] DPI
[18:03:12] [PASSED] Writeback
[18:03:12] [PASSED] SPI
[18:03:12] [PASSED] USB
[18:03:12] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:03:12] =========== [PASSED] drm_connector_dynamic_init ============
[18:03:12] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:03:12] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:03:12] ======= drm_connector_dynamic_register (7 subtests) ========
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:03:12] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:03:12] ========= [PASSED] drm_connector_dynamic_register ==========
[18:03:12] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:03:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:03:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:03:12] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:03:12] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:03:12] ========== drm_test_get_tv_mode_from_name_valid  ===========
[18:03:12] [PASSED] NTSC
[18:03:12] [PASSED] NTSC-443
[18:03:12] [PASSED] NTSC-J
[18:03:12] [PASSED] PAL
[18:03:12] [PASSED] PAL-M
[18:03:12] [PASSED] PAL-N
[18:03:12] [PASSED] SECAM
[18:03:12] [PASSED] Mono
[18:03:12] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:03:12] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:03:12] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:03:12] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:03:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:03:12] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[18:03:12] [PASSED] VIC 96
[18:03:12] [PASSED] VIC 97
[18:03:12] [PASSED] VIC 101
[18:03:12] [PASSED] VIC 102
[18:03:12] [PASSED] VIC 106
[18:03:12] [PASSED] VIC 107
[18:03:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:03:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:03:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:03:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:03:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:03:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:03:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:03:12] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:03:12] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[18:03:12] [PASSED] Automatic
[18:03:12] [PASSED] Full
[18:03:12] [PASSED] Limited 16:235
[18:03:12] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:03:12] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:03:12] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:03:12] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:03:12] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[18:03:12] [PASSED] RGB
[18:03:12] [PASSED] YUV 4:2:0
[18:03:12] [PASSED] YUV 4:2:2
[18:03:12] [PASSED] YUV 4:4:4
[18:03:12] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:03:12] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:03:12] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:03:12] ============= drm_damage_helper (21 subtests) ==============
[18:03:12] [PASSED] drm_test_damage_iter_no_damage
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:03:12] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:03:12] [PASSED] drm_test_damage_iter_simple_damage
[18:03:12] [PASSED] drm_test_damage_iter_single_damage
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:03:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:03:12] [PASSED] drm_test_damage_iter_damage
[18:03:12] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:03:12] [PASSED] drm_test_damage_iter_damage_one_outside
[18:03:12] [PASSED] drm_test_damage_iter_damage_src_moved
[18:03:12] [PASSED] drm_test_damage_iter_damage_not_visible
[18:03:12] ================ [PASSED] drm_damage_helper ================
[18:03:12] ============== drm_dp_mst_helper (3 subtests) ==============
[18:03:12] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[18:03:12] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:03:12] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:03:12] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:03:12] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:03:12] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:03:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:03:12] ============== drm_test_dp_mst_calc_pbn_div  ===============
[18:03:12] [PASSED] Link rate 2000000 lane count 4
[18:03:12] [PASSED] Link rate 2000000 lane count 2
[18:03:12] [PASSED] Link rate 2000000 lane count 1
[18:03:12] [PASSED] Link rate 1350000 lane count 4
[18:03:12] [PASSED] Link rate 1350000 lane count 2
[18:03:12] [PASSED] Link rate 1350000 lane count 1
[18:03:12] [PASSED] Link rate 1000000 lane count 4
[18:03:12] [PASSED] Link rate 1000000 lane count 2
[18:03:12] [PASSED] Link rate 1000000 lane count 1
[18:03:12] [PASSED] Link rate 810000 lane count 4
[18:03:12] [PASSED] Link rate 810000 lane count 2
[18:03:12] [PASSED] Link rate 810000 lane count 1
[18:03:12] [PASSED] Link rate 540000 lane count 4
[18:03:12] [PASSED] Link rate 540000 lane count 2
[18:03:12] [PASSED] Link rate 540000 lane count 1
[18:03:12] [PASSED] Link rate 270000 lane count 4
[18:03:12] [PASSED] Link rate 270000 lane count 2
[18:03:12] [PASSED] Link rate 270000 lane count 1
[18:03:12] [PASSED] Link rate 162000 lane count 4
[18:03:12] [PASSED] Link rate 162000 lane count 2
[18:03:12] [PASSED] Link rate 162000 lane count 1
[18:03:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:03:12] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[18:03:12] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:03:12] [PASSED] DP_POWER_UP_PHY with port number
[18:03:12] [PASSED] DP_POWER_DOWN_PHY with port number
[18:03:12] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:03:12] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:03:12] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:03:12] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:03:12] [PASSED] DP_QUERY_PAYLOAD with port number
[18:03:12] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:03:12] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:03:12] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:03:12] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:03:12] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:03:12] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:03:12] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:03:12] [PASSED] DP_REMOTE_I2C_READ with port number
[18:03:12] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:03:12] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:03:12] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:03:12] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:03:12] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:03:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:03:12] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:03:12] ================ [PASSED] drm_dp_mst_helper ================
[18:03:12] ================== drm_exec (7 subtests) ===================
[18:03:12] [PASSED] sanitycheck
[18:03:12] [PASSED] test_lock
[18:03:12] [PASSED] test_lock_unlock
[18:03:12] [PASSED] test_duplicates
[18:03:12] [PASSED] test_prepare
[18:03:12] [PASSED] test_prepare_array
[18:03:12] [PASSED] test_multiple_loops
[18:03:12] ==================== [PASSED] drm_exec =====================
[18:03:12] =========== drm_format_helper_test (17 subtests) ===========
[18:03:12] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:03:12] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:03:12] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:03:12] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:03:12] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:03:12] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:03:12] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:03:12] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:03:12] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:03:12] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:03:12] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:03:12] ============== drm_test_fb_xrgb8888_to_mono  ===============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:03:12] ==================== drm_test_fb_swab  =====================
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ================ [PASSED] drm_test_fb_swab =================
[18:03:12] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:03:12] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[18:03:12] [PASSED] single_pixel_source_buffer
[18:03:12] [PASSED] single_pixel_clip_rectangle
[18:03:12] [PASSED] well_known_colors
[18:03:12] [PASSED] destination_pitch
[18:03:12] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:03:12] ================= drm_test_fb_clip_offset  =================
[18:03:12] [PASSED] pass through
[18:03:12] [PASSED] horizontal offset
[18:03:12] [PASSED] vertical offset
[18:03:12] [PASSED] horizontal and vertical offset
[18:03:12] [PASSED] horizontal offset (custom pitch)
[18:03:12] [PASSED] vertical offset (custom pitch)
[18:03:12] [PASSED] horizontal and vertical offset (custom pitch)
[18:03:12] ============= [PASSED] drm_test_fb_clip_offset =============
[18:03:12] =================== drm_test_fb_memcpy  ====================
[18:03:12] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:03:12] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:03:12] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:03:12] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:03:12] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:03:12] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:03:12] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:03:12] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:03:12] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:03:12] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:03:12] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:03:12] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:03:12] =============== [PASSED] drm_test_fb_memcpy ================
[18:03:12] ============= [PASSED] drm_format_helper_test ==============
[18:03:12] ================= drm_format (18 subtests) =================
[18:03:12] [PASSED] drm_test_format_block_width_invalid
[18:03:12] [PASSED] drm_test_format_block_width_one_plane
[18:03:12] [PASSED] drm_test_format_block_width_two_plane
[18:03:12] [PASSED] drm_test_format_block_width_three_plane
[18:03:12] [PASSED] drm_test_format_block_width_tiled
[18:03:12] [PASSED] drm_test_format_block_height_invalid
[18:03:12] [PASSED] drm_test_format_block_height_one_plane
[18:03:12] [PASSED] drm_test_format_block_height_two_plane
[18:03:12] [PASSED] drm_test_format_block_height_three_plane
[18:03:12] [PASSED] drm_test_format_block_height_tiled
[18:03:12] [PASSED] drm_test_format_min_pitch_invalid
[18:03:12] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:03:12] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:03:12] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:03:12] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:03:12] [PASSED] drm_test_format_min_pitch_two_plane
[18:03:12] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:03:12] [PASSED] drm_test_format_min_pitch_tiled
[18:03:12] =================== [PASSED] drm_format ====================
[18:03:12] ============== drm_framebuffer (10 subtests) ===============
[18:03:12] ========== drm_test_framebuffer_check_src_coords  ==========
[18:03:12] [PASSED] Success: source fits into fb
[18:03:12] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:03:12] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:03:12] [PASSED] Fail: overflowing fb with source width
[18:03:12] [PASSED] Fail: overflowing fb with source height
[18:03:12] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:03:12] [PASSED] drm_test_framebuffer_cleanup
[18:03:12] =============== drm_test_framebuffer_create  ===============
[18:03:12] [PASSED] ABGR8888 normal sizes
[18:03:12] [PASSED] ABGR8888 max sizes
[18:03:12] [PASSED] ABGR8888 pitch greater than min required
[18:03:12] [PASSED] ABGR8888 pitch less than min required
[18:03:12] [PASSED] ABGR8888 Invalid width
[18:03:12] [PASSED] ABGR8888 Invalid buffer handle
[18:03:12] [PASSED] No pixel format
[18:03:12] [PASSED] ABGR8888 Width 0
[18:03:12] [PASSED] ABGR8888 Height 0
[18:03:12] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:03:12] [PASSED] ABGR8888 Large buffer offset
[18:03:12] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:03:12] [PASSED] ABGR8888 Invalid flag
[18:03:12] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:03:12] [PASSED] ABGR8888 Valid buffer modifier
[18:03:12] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:03:12] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] NV12 Normal sizes
[18:03:12] [PASSED] NV12 Max sizes
[18:03:12] [PASSED] NV12 Invalid pitch
[18:03:12] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:03:12] [PASSED] NV12 different  modifier per-plane
[18:03:12] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:03:12] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] NV12 Modifier for inexistent plane
[18:03:12] [PASSED] NV12 Handle for inexistent plane
[18:03:12] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:03:12] [PASSED] YVU420 Normal sizes
[18:03:12] [PASSED] YVU420 Max sizes
[18:03:12] [PASSED] YVU420 Invalid pitch
[18:03:12] [PASSED] YVU420 Different pitches
[18:03:12] [PASSED] YVU420 Different buffer offsets/pitches
[18:03:12] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:03:12] [PASSED] YVU420 Valid modifier
[18:03:12] [PASSED] YVU420 Different modifiers per plane
[18:03:12] [PASSED] YVU420 Modifier for inexistent plane
[18:03:12] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:03:12] [PASSED] X0L2 Normal sizes
[18:03:12] [PASSED] X0L2 Max sizes
[18:03:12] [PASSED] X0L2 Invalid pitch
[18:03:12] [PASSED] X0L2 Pitch greater than minimum required
[18:03:12] [PASSED] X0L2 Handle for inexistent plane
[18:03:12] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:03:12] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:03:12] [PASSED] X0L2 Valid modifier
[18:03:12] [PASSED] X0L2 Modifier for inexistent plane
[18:03:12] =========== [PASSED] drm_test_framebuffer_create ===========
[18:03:12] [PASSED] drm_test_framebuffer_free
[18:03:12] [PASSED] drm_test_framebuffer_init
[18:03:12] [PASSED] drm_test_framebuffer_init_bad_format
[18:03:12] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:03:12] [PASSED] drm_test_framebuffer_lookup
[18:03:12] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:03:12] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:03:12] ================= [PASSED] drm_framebuffer =================
[18:03:12] ================ drm_gem_shmem (8 subtests) ================
[18:03:12] [PASSED] drm_gem_shmem_test_obj_create
[18:03:12] [PASSED] drm_gem_shmem_test_obj_create_private
[18:03:12] [PASSED] drm_gem_shmem_test_pin_pages
[18:03:12] [PASSED] drm_gem_shmem_test_vmap
[18:03:12] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:03:12] [PASSED] drm_gem_shmem_test_get_sg_table
[18:03:12] [PASSED] drm_gem_shmem_test_madvise
[18:03:12] [PASSED] drm_gem_shmem_test_purge
[18:03:12] ================== [PASSED] drm_gem_shmem ==================
[18:03:12] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:03:12] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[18:03:12] [PASSED] Automatic
[18:03:12] [PASSED] Full
[18:03:12] [PASSED] Limited 16:235
[18:03:12] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:03:12] [PASSED] drm_test_check_disable_connector
[18:03:12] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:03:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:03:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:03:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:03:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:03:12] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:03:12] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:03:12] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:03:12] [PASSED] drm_test_check_output_bpc_dvi
[18:03:12] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:03:12] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:03:12] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:03:12] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:03:12] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:03:12] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:03:12] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:03:12] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:03:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:03:12] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:03:12] [PASSED] drm_test_check_broadcast_rgb_value
[18:03:12] [PASSED] drm_test_check_bpc_8_value
[18:03:12] [PASSED] drm_test_check_bpc_10_value
[18:03:12] [PASSED] drm_test_check_bpc_12_value
[18:03:12] [PASSED] drm_test_check_format_value
[18:03:12] [PASSED] drm_test_check_tmds_char_value
[18:03:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:03:12] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:03:12] [PASSED] drm_test_check_mode_valid
[18:03:12] [PASSED] drm_test_check_mode_valid_reject
[18:03:12] [PASSED] drm_test_check_mode_valid_reject_rate
[18:03:12] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:03:12] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:03:12] ================= drm_managed (2 subtests) =================
[18:03:12] [PASSED] drm_test_managed_release_action
[18:03:12] [PASSED] drm_test_managed_run_action
[18:03:12] =================== [PASSED] drm_managed ===================
[18:03:12] =================== drm_mm (6 subtests) ====================
[18:03:12] [PASSED] drm_test_mm_init
[18:03:12] [PASSED] drm_test_mm_debug
[18:03:12] [PASSED] drm_test_mm_align32
[18:03:12] [PASSED] drm_test_mm_align64
[18:03:12] [PASSED] drm_test_mm_lowest
[18:03:12] [PASSED] drm_test_mm_highest
[18:03:12] ===================== [PASSED] drm_mm ======================
[18:03:12] ============= drm_modes_analog_tv (5 subtests) =============
[18:03:12] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:03:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:03:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:03:12] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:03:12] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:03:12] =============== [PASSED] drm_modes_analog_tv ===============
[18:03:12] ============== drm_plane_helper (2 subtests) ===============
[18:03:12] =============== drm_test_check_plane_state  ================
[18:03:12] [PASSED] clipping_simple
[18:03:12] [PASSED] clipping_rotate_reflect
[18:03:12] [PASSED] positioning_simple
[18:03:12] [PASSED] upscaling
[18:03:12] [PASSED] downscaling
[18:03:12] [PASSED] rounding1
[18:03:12] [PASSED] rounding2
[18:03:12] [PASSED] rounding3
[18:03:12] [PASSED] rounding4
[18:03:12] =========== [PASSED] drm_test_check_plane_state ============
[18:03:12] =========== drm_test_check_invalid_plane_state  ============
[18:03:12] [PASSED] positioning_invalid
[18:03:12] [PASSED] upscaling_invalid
[18:03:12] [PASSED] downscaling_invalid
[18:03:12] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:03:12] ================ [PASSED] drm_plane_helper =================
[18:03:12] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:03:12] ====== drm_test_connector_helper_tv_get_modes_check  =======
[18:03:12] [PASSED] None
[18:03:12] [PASSED] PAL
[18:03:12] [PASSED] NTSC
[18:03:12] [PASSED] Both, NTSC Default
[18:03:12] [PASSED] Both, PAL Default
[18:03:12] [PASSED] Both, NTSC Default, with PAL on command-line
[18:03:12] [PASSED] Both, PAL Default, with NTSC on command-line
[18:03:12] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:03:12] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:03:12] ================== drm_rect (9 subtests) ===================
[18:03:12] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:03:12] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:03:12] [PASSED] drm_test_rect_clip_scaled_clipped
[18:03:12] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:03:12] ================= drm_test_rect_intersect  =================
[18:03:12] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:03:12] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:03:12] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:03:12] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:03:12] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:03:12] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:03:12] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:03:12] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:03:12] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:03:12] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:03:12] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:03:12] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:03:12] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:03:12] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:03:12] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:03:12] ============= [PASSED] drm_test_rect_intersect =============
[18:03:12] ================ drm_test_rect_calc_hscale  ================
[18:03:12] [PASSED] normal use
[18:03:12] [PASSED] out of max range
[18:03:12] [PASSED] out of min range
[18:03:12] [PASSED] zero dst
[18:03:12] [PASSED] negative src
[18:03:12] [PASSED] negative dst
[18:03:12] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:03:12] ================ drm_test_rect_calc_vscale  ================
[18:03:12] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[18:03:12] [PASSED] out of max range
[18:03:12] [PASSED] out of min range
[18:03:12] [PASSED] zero dst
[18:03:12] [PASSED] negative src
[18:03:12] [PASSED] negative dst
[18:03:12] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:03:12] ================== drm_test_rect_rotate  ===================
[18:03:12] [PASSED] reflect-x
[18:03:12] [PASSED] reflect-y
[18:03:12] [PASSED] rotate-0
[18:03:12] [PASSED] rotate-90
[18:03:12] [PASSED] rotate-180
[18:03:12] [PASSED] rotate-270
[18:03:12] ============== [PASSED] drm_test_rect_rotate ===============
[18:03:12] ================ drm_test_rect_rotate_inv  =================
[18:03:12] [PASSED] reflect-x
[18:03:12] [PASSED] reflect-y
[18:03:12] [PASSED] rotate-0
[18:03:12] [PASSED] rotate-90
[18:03:12] [PASSED] rotate-180
[18:03:12] [PASSED] rotate-270
[18:03:12] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:03:12] ==================== [PASSED] drm_rect =====================
[18:03:12] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:03:12] ============ drm_test_sysfb_build_fourcc_list  =============
[18:03:12] [PASSED] no native formats
[18:03:12] [PASSED] XRGB8888 as native format
[18:03:12] [PASSED] remove duplicates
[18:03:12] [PASSED] convert alpha formats
[18:03:12] [PASSED] random formats
[18:03:12] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:03:12] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:03:12] ============================================================
[18:03:12] Testing complete. Ran 622 tests: passed: 622
[18:03:12] Elapsed time: 26.710s total, 1.707s configuring, 24.579s building, 0.381s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:03:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:03:14] 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
[18:03:23] Starting KUnit Kernel (1/1)...
[18:03:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:03:23] ================= ttm_device (5 subtests) ==================
[18:03:23] [PASSED] ttm_device_init_basic
[18:03:23] [PASSED] ttm_device_init_multiple
[18:03:23] [PASSED] ttm_device_fini_basic
[18:03:23] [PASSED] ttm_device_init_no_vma_man
[18:03:23] ================== ttm_device_init_pools  ==================
[18:03:23] [PASSED] No DMA allocations, no DMA32 required
[18:03:23] [PASSED] DMA allocations, DMA32 required
[18:03:23] [PASSED] No DMA allocations, DMA32 required
[18:03:23] [PASSED] DMA allocations, no DMA32 required
[18:03:23] ============== [PASSED] ttm_device_init_pools ==============
[18:03:23] =================== [PASSED] ttm_device ====================
[18:03:23] ================== ttm_pool (8 subtests) ===================
[18:03:23] ================== ttm_pool_alloc_basic  ===================
[18:03:23] [PASSED] One page
[18:03:23] [PASSED] More than one page
[18:03:23] [PASSED] Above the allocation limit
[18:03:23] [PASSED] One page, with coherent DMA mappings enabled
[18:03:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:03:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:03:23] ============== ttm_pool_alloc_basic_dma_addr  ==============
[18:03:23] [PASSED] One page
[18:03:23] [PASSED] More than one page
[18:03:23] [PASSED] Above the allocation limit
[18:03:23] [PASSED] One page, with coherent DMA mappings enabled
[18:03:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:03:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:03:23] [PASSED] ttm_pool_alloc_order_caching_match
[18:03:23] [PASSED] ttm_pool_alloc_caching_mismatch
[18:03:23] [PASSED] ttm_pool_alloc_order_mismatch
[18:03:23] [PASSED] ttm_pool_free_dma_alloc
[18:03:23] [PASSED] ttm_pool_free_no_dma_alloc
[18:03:23] [PASSED] ttm_pool_fini_basic
[18:03:23] ==================== [PASSED] ttm_pool =====================
[18:03:23] ================ ttm_resource (8 subtests) =================
[18:03:23] ================= ttm_resource_init_basic  =================
[18:03:23] [PASSED] Init resource in TTM_PL_SYSTEM
[18:03:23] [PASSED] Init resource in TTM_PL_VRAM
[18:03:23] [PASSED] Init resource in a private placement
[18:03:23] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:03:23] ============= [PASSED] ttm_resource_init_basic =============
[18:03:23] [PASSED] ttm_resource_init_pinned
[18:03:23] [PASSED] ttm_resource_fini_basic
[18:03:23] [PASSED] ttm_resource_manager_init_basic
[18:03:23] [PASSED] ttm_resource_manager_usage_basic
[18:03:23] [PASSED] ttm_resource_manager_set_used_basic
[18:03:23] [PASSED] ttm_sys_man_alloc_basic
[18:03:23] [PASSED] ttm_sys_man_free_basic
[18:03:23] ================== [PASSED] ttm_resource ===================
[18:03:23] =================== ttm_tt (15 subtests) ===================
[18:03:23] ==================== ttm_tt_init_basic  ====================
[18:03:23] [PASSED] Page-aligned size
[18:03:23] [PASSED] Extra pages requested
[18:03:23] ================ [PASSED] ttm_tt_init_basic ================
[18:03:23] [PASSED] ttm_tt_init_misaligned
[18:03:23] [PASSED] ttm_tt_fini_basic
[18:03:23] [PASSED] ttm_tt_fini_sg
[18:03:23] [PASSED] ttm_tt_fini_shmem
[18:03:23] [PASSED] ttm_tt_create_basic
[18:03:23] [PASSED] ttm_tt_create_invalid_bo_type
[18:03:23] [PASSED] ttm_tt_create_ttm_exists
[18:03:23] [PASSED] ttm_tt_create_failed
[18:03:23] [PASSED] ttm_tt_destroy_basic
[18:03:23] [PASSED] ttm_tt_populate_null_ttm
[18:03:23] [PASSED] ttm_tt_populate_populated_ttm
[18:03:23] [PASSED] ttm_tt_unpopulate_basic
[18:03:23] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:03:23] [PASSED] ttm_tt_swapin_basic
[18:03:23] ===================== [PASSED] ttm_tt ======================
[18:03:23] =================== ttm_bo (14 subtests) ===================
[18:03:23] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[18:03:23] [PASSED] Cannot be interrupted and sleeps
[18:03:23] [PASSED] Cannot be interrupted, locks straight away
[18:03:23] [PASSED] Can be interrupted, sleeps
[18:03:23] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:03:23] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:03:23] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:03:23] [PASSED] ttm_bo_reserve_double_resv
[18:03:23] [PASSED] ttm_bo_reserve_interrupted
[18:03:23] [PASSED] ttm_bo_reserve_deadlock
[18:03:23] [PASSED] ttm_bo_unreserve_basic
[18:03:23] [PASSED] ttm_bo_unreserve_pinned
[18:03:23] [PASSED] ttm_bo_unreserve_bulk
[18:03:23] [PASSED] ttm_bo_fini_basic
[18:03:23] [PASSED] ttm_bo_fini_shared_resv
[18:03:23] [PASSED] ttm_bo_pin_basic
[18:03:23] [PASSED] ttm_bo_pin_unpin_resource
[18:03:23] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:03:23] ===================== [PASSED] ttm_bo ======================
[18:03:23] ============== ttm_bo_validate (21 subtests) ===============
[18:03:23] ============== ttm_bo_init_reserved_sys_man  ===============
[18:03:23] [PASSED] Buffer object for userspace
[18:03:23] [PASSED] Kernel buffer object
[18:03:23] [PASSED] Shared buffer object
[18:03:23] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:03:23] ============== ttm_bo_init_reserved_mock_man  ==============
[18:03:23] [PASSED] Buffer object for userspace
[18:03:23] [PASSED] Kernel buffer object
[18:03:23] [PASSED] Shared buffer object
[18:03:23] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:03:23] [PASSED] ttm_bo_init_reserved_resv
[18:03:23] ================== ttm_bo_validate_basic  ==================
[18:03:23] [PASSED] Buffer object for userspace
[18:03:23] [PASSED] Kernel buffer object
[18:03:23] [PASSED] Shared buffer object
[18:03:23] ============== [PASSED] ttm_bo_validate_basic ==============
[18:03:23] [PASSED] ttm_bo_validate_invalid_placement
[18:03:23] ============= ttm_bo_validate_same_placement  ==============
[18:03:23] [PASSED] System manager
[18:03:23] [PASSED] VRAM manager
[18:03:23] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:03:23] [PASSED] ttm_bo_validate_failed_alloc
[18:03:23] [PASSED] ttm_bo_validate_pinned
[18:03:23] [PASSED] ttm_bo_validate_busy_placement
[18:03:23] ================ ttm_bo_validate_multihop  =================
[18:03:23] [PASSED] Buffer object for userspace
[18:03:23] [PASSED] Kernel buffer object
[18:03:23] [PASSED] Shared buffer object
[18:03:23] ============ [PASSED] ttm_bo_validate_multihop =============
[18:03:23] ========== ttm_bo_validate_no_placement_signaled  ==========
[18:03:23] [PASSED] Buffer object in system domain, no page vector
[18:03:23] [PASSED] Buffer object in system domain with an existing page vector
[18:03:23] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:03:23] ======== ttm_bo_validate_no_placement_not_signaled  ========
[18:03:23] [PASSED] Buffer object for userspace
[18:03:23] [PASSED] Kernel buffer object
[18:03:23] [PASSED] Shared buffer object
[18:03:23] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:03:23] [PASSED] ttm_bo_validate_move_fence_signaled
[18:03:23] ========= ttm_bo_validate_move_fence_not_signaled  =========
[18:03:23] [PASSED] Waits for GPU
[18:03:23] [PASSED] Tries to lock straight away
[18:03:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:03:23] [PASSED] ttm_bo_validate_happy_evict
[18:03:23] [PASSED] ttm_bo_validate_all_pinned_evict
[18:03:23] [PASSED] ttm_bo_validate_allowed_only_evict
[18:03:23] [PASSED] ttm_bo_validate_deleted_evict
[18:03:23] [PASSED] ttm_bo_validate_busy_domain_evict
[18:03:23] [PASSED] ttm_bo_validate_evict_gutting
[18:03:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:03:23] ================= [PASSED] ttm_bo_validate =================
[18:03:23] ============================================================
[18:03:23] Testing complete. Ran 101 tests: passed: 101
[18:03:23] Elapsed time: 11.535s total, 1.747s configuring, 9.521s building, 0.229s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✓ Xe.CI.BAT: success for Avoid crash during dump when finding an evicted BO (rev3)
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
                   ` (5 preceding siblings ...)
  2025-10-13 18:03 ` ✓ CI.KUnit: success for Avoid crash during dump when finding an evicted BO (rev3) Patchwork
@ 2025-10-13 18:39 ` Patchwork
  2025-10-13 22:03 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-13 18:39 UTC (permalink / raw)
  To: simon.richter; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 2133 bytes --]

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO (rev3)
URL   : https://patchwork.freedesktop.org/series/155787/
State : success

== Summary ==

CI Bug Log - changes from xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626_BAT -> xe-pw-155787v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-155787v3_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +1 other test pass
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

  * igt@xe_exec_threads@threads-mixed-shared-vm-basic:
    - {bat-ptl-vm}:       [DMESG-WARN][3] ([Intel XE#6288]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/bat-ptl-vm/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/bat-ptl-vm/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#6288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6288


Build changes
-------------

  * Linux: xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626 -> xe-pw-155787v3

  IGT_8582: 8582
  xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626: 61b16793c3bbb8e740cf9afb36258dee61346626
  xe-pw-155787v3: 155787v3

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/index.html

[-- Attachment #2: Type: text/html, Size: 2742 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* ✗ Xe.CI.Full: failure for Avoid crash during dump when finding an evicted BO (rev3)
  2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
                   ` (6 preceding siblings ...)
  2025-10-13 18:39 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-13 22:03 ` Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2025-10-13 22:03 UTC (permalink / raw)
  To: simon.richter; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 71602 bytes --]

== Series Details ==

Series: Avoid crash during dump when finding an evicted BO (rev3)
URL   : https://patchwork.freedesktop.org/series/155787/
State : failure

== Summary ==

CI Bug Log - changes from xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626_FULL -> xe-pw-155787v3_FULL
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with xe-pw-155787v3_FULL need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-155787v3_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-155787v3_FULL:

### IGT changes ###

#### Warnings ####

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][1] ([Intel XE#2313]) -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  
New tests
---------

  New tests have been introduced between xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626_FULL and xe-pw-155787v3_FULL:

### New IGT tests (1) ###

  * igt@kms_atomic@atomic-plane-damage@pipe-b-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.86] s

  

Known issues
------------

  Here are the changes found in xe-pw-155787v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
    - shard-adlp:         [PASS][3] -> [DMESG-WARN][4] ([Intel XE#4543]) +4 other tests dmesg-warn
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-9/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-2/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2370])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking:
    - shard-adlp:         [PASS][6] -> [DMESG-WARN][7] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-9/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_atomic_transition@plane-all-transition-nonblocking.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2327]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][9] ([Intel XE#619])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][10] ([Intel XE#4543]) +6 other tests dmesg-fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#316]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#619])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][14] ([Intel XE#1124]) +9 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#2191])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#2191]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#367])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#787]) +20 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2887]) +5 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +31 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#2907])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][27] ([Intel XE#3442])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#3432]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][29] ([Intel XE#787]) +47 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][30] ([Intel XE#2907])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#4417] / [Intel XE#455])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#4417]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-adlp:         NOTRUN -> [SKIP][35] ([Intel XE#306]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#373]) +10 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2252]) +4 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#373]) +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][39] ([Intel XE#1178])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-adlp:         NOTRUN -> [SKIP][40] ([Intel XE#307])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-dg2-set2:     NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2320]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#455]) +16 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#308])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2321])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#308]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][47] -> [SKIP][48] ([Intel XE#2291]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#309]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#323])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#1340])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#4494] / [i915#3804])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#4354])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_dp_link_training@non-uhbr-sst.html
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#4354])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2244]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#455]) +5 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#5425])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_feature_discovery@display-3x:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#703])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2373])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#1138])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +9 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#310]) +5 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][65] ([Intel XE#4543]) +20 other tests dmesg-warn
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2293] / [Intel XE#2380])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2293])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2311]) +16 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#5390]) +8 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#656]) +35 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#2352])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#651]) +11 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#651]) +8 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1158])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#653]) +11 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2313]) +18 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#653]) +5 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#2925]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2934])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2486])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
    - shard-adlp:         NOTRUN -> [FAIL][81] ([Intel XE#5195]) +4 other tests fail
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#4596])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_plane_multiple@2x-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#5021])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#870]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_pm_backlight@fade.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#870])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#3309])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         NOTRUN -> [FAIL][87] ([Intel XE#718])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#1129])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_pm_dc@dc6-psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][89] ([Intel XE#1129])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][90] ([Intel XE#2007])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#836])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#1489]) +8 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr-basic:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +11 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_psr@psr-basic.html
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr2-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@kms_psr@psr2-basic.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-adlp:         NOTRUN -> [SKIP][98] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][99] ([Intel XE#1127])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#3414]) +2 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@kms_rotation_crc@sprite-rotation-270.html
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#3414] / [Intel XE#3904])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][102] -> [SKIP][103] ([Intel XE#1435])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][104] -> [SKIP][105] ([Intel XE#1499])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_vrr@negative-basic.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_vrr@negative-basic.html

  * igt@xe_ccs@ctrl-surf-copy-new-ctx:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_ccs@ctrl-surf-copy-new-ctx.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#1123])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#5626]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#4837]) +8 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#4837]) +2 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_eudebug_online@reset-with-attention:
    - shard-adlp:         NOTRUN -> [SKIP][111] ([Intel XE#4837] / [Intel XE#5565]) +12 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_eudebug_online@reset-with-attention.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#5793])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][113] ([Intel XE#261] / [Intel XE#5564]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_evict@evict-beng-small-external:
    - shard-adlp:         NOTRUN -> [SKIP][114] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@xe_evict@evict-beng-small-external.html

  * igt@xe_evict@evict-large-multi-vm-cm:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#261]) +1 other test skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_evict@evict-large-multi-vm-cm.html

  * igt@xe_evict_ccs@evict-overcommit-simple:
    - shard-adlp:         NOTRUN -> [SKIP][116] ([Intel XE#688]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@xe_evict_ccs@evict-overcommit-simple.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
    - shard-adlp:         NOTRUN -> [SKIP][117] ([Intel XE#1392] / [Intel XE#5575]) +10 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#2322]) +6 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][119] ([Intel XE#288] / [Intel XE#5561]) +23 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_fault_mode@once-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][120] ([Intel XE#288]) +6 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_exec_fault_mode@once-rebind-prefetch.html

  * igt@xe_exec_reset@cat-error:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][121] ([Intel XE#3868])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@xe_exec_reset@cat-error.html

  * igt@xe_exec_system_allocator@processes-evict-malloc:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#4915]) +249 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_exec_system_allocator@processes-evict-malloc.html

  * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][123] ([Intel XE#4915]) +70 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-ro-dontunmap:
    - shard-bmg:          [PASS][124] -> [DMESG-WARN][125] ([Intel XE#3428])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-ro-dontunmap.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-ro-dontunmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#4943]) +12 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][127] -> [DMESG-WARN][128] ([Intel XE#5893])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][129] ([Intel XE#2833])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html
    - shard-adlp:         NOTRUN -> [SKIP][130] ([Intel XE#455] / [Intel XE#5712])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_mmap@small-bar:
    - shard-adlp:         NOTRUN -> [SKIP][131] ([Intel XE#512])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_mmap@small-bar.html
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#586])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_mmap@small-bar.html

  * igt@xe_oa@invalid-oa-exponent:
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#3573])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_oa@invalid-oa-exponent.html

  * igt@xe_oa@mmio-triggered-reports:
    - shard-adlp:         NOTRUN -> [SKIP][134] ([Intel XE#3573]) +7 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_oa@mmio-triggered-reports.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#2838] / [Intel XE#979])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-adlp:         NOTRUN -> [SKIP][136] ([Intel XE#979])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#5742])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#5742])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][139] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][140] ([Intel XE#4650])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#4733]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-adlp:         NOTRUN -> [SKIP][142] ([Intel XE#4733] / [Intel XE#5594])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-1/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#4733])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#944])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-adlp:         NOTRUN -> [SKIP][145] ([Intel XE#944]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-6/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#4821])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-463/igt@xe_spin_batch@spin-mem-copy.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-adlp:         [FAIL][147] ([Intel XE#3908]) -> [PASS][148] +1 other test pass
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_color@deep-color:
    - shard-bmg:          [SKIP][149] ([Intel XE#4879]) -> [PASS][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@kms_color@deep-color.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_color@deep-color.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][151] ([Intel XE#2291]) -> [PASS][152] +1 other test pass
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][153] ([Intel XE#4633]) -> [PASS][154]
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@torture-move@pipe-b:
    - shard-dg2-set2:     [DMESG-WARN][155] -> [PASS][156] +1 other test pass
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-dg2-432/igt@kms_cursor_legacy@torture-move@pipe-b.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-434/igt@kms_cursor_legacy@torture-move@pipe-b.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][157] ([Intel XE#2373]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [SKIP][159] ([Intel XE#2316]) -> [PASS][160] +5 other tests pass
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][161] ([Intel XE#4543]) -> [PASS][162] +1 other test pass
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][163] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][164] +1 other test pass
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html

  * {igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc}:
    - shard-adlp:         [DMESG-WARN][165] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][166]
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-bmg:          [DMESG-WARN][167] ([Intel XE#3428]) -> [PASS][168]
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@kms_invalid_mode@clock-too-high.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_invalid_mode@clock-too-high.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][169] ([Intel XE#6321]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@twice-null-rebind:
    - shard-bmg:          [DMESG-WARN][171] ([Intel XE#3876]) -> [PASS][172] +2 other tests pass
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_basic@twice-null-rebind.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_basic@twice-null-rebind.html

  * igt@xe_exec_compute_mode@many-userptr-rebind:
    - shard-bmg:          [FAIL][173] ([Intel XE#5625]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_compute_mode@many-userptr-rebind.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_compute_mode@many-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
    - shard-bmg:          [FAIL][175] ([Intel XE#6050]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-bmg:          [FAIL][177] ([Intel XE#6325]) -> [PASS][178]
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_reset@cm-gt-reset.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_reset@cm-gt-reset.html

  * igt@xe_exec_system_allocator@process-many-malloc-bo-unmap:
    - shard-bmg:          [FAIL][179] ([Intel XE#4937] / [Intel XE#5625]) -> [PASS][180] +27 other tests pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_system_allocator@process-many-malloc-bo-unmap.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_system_allocator@process-many-malloc-bo-unmap.html

  * igt@xe_exec_threads@threads-bal-shared-vm-basic:
    - shard-bmg:          [DMESG-FAIL][181] ([Intel XE#3876]) -> [PASS][182]
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_exec_threads@threads-bal-shared-vm-basic.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_exec_threads@threads-bal-shared-vm-basic.html

  * igt@xe_gt_freq@freq_range_exec:
    - shard-bmg:          [TIMEOUT][183] ([Intel XE#3876]) -> [PASS][184] +1 other test pass
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_gt_freq@freq_range_exec.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_gt_freq@freq_range_exec.html

  
#### Warnings ####

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-adlp:         [DMESG-FAIL][185] ([Intel XE#4543]) -> [DMESG-FAIL][186] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-8/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][187] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][188] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][189] ([Intel XE#2341]) -> [FAIL][190] ([Intel XE#1178])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][191] ([Intel XE#5299]) -> [FAIL][192] ([Intel XE#4633])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [DMESG-WARN][193] ([Intel XE#5208]) -> [DMESG-WARN][194] ([Intel XE#4543] / [Intel XE#5208])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2311]) +7 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][197] ([Intel XE#2311]) -> [SKIP][198] ([Intel XE#2312]) +17 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][199] ([Intel XE#5390]) -> [SKIP][200] ([Intel XE#2312]) +7 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][201] ([Intel XE#2312]) -> [SKIP][202] ([Intel XE#5390]) +7 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][203] ([Intel XE#2312]) -> [SKIP][204] ([Intel XE#2313]) +8 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][205] ([Intel XE#2313]) -> [SKIP][206] ([Intel XE#2312]) +18 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][207] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][208] ([Intel XE#3544])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][209] ([Intel XE#4596]) -> [SKIP][210] ([Intel XE#5021])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][211] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][212] ([Intel XE#5466] / [Intel XE#5530])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [SKIP][226], [PASS][227], [PASS][228], [PASS][229], [DMESG-WARN][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][239], [PASS][240], [PASS][241], [SKIP][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264]) ([Intel XE#2457])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@xe_module_load@load.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-7/igt@xe_module_load@load.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-7/igt@xe_module_load@load.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@xe_module_load@load.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@xe_module_load@load.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@xe_module_load@load.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@xe_module_load@load.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-7/igt@xe_module_load@load.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@xe_module_load@load.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-3/igt@xe_module_load@load.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-8/igt@xe_module_load@load.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-8/igt@xe_module_load@load.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_module_load@load.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@xe_module_load@load.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@xe_module_load@load.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-5/igt@xe_module_load@load.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-4/igt@xe_module_load@load.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@xe_module_load@load.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-6/igt@xe_module_load@load.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-3/igt@xe_module_load@load.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-3/igt@xe_module_load@load.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@xe_module_load@load.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-2/igt@xe_module_load@load.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-8/igt@xe_module_load@load.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@xe_module_load@load.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626/shard-bmg-1/igt@xe_module_load@load.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_module_load@load.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_module_load@load.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-4/igt@xe_module_load@load.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-8/igt@xe_module_load@load.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-8/igt@xe_module_load@load.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-8/igt@xe_module_load@load.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@xe_module_load@load.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@xe_module_load@load.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-5/igt@xe_module_load@load.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-4/igt@xe_module_load@load.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@xe_module_load@load.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-4/igt@xe_module_load@load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@xe_module_load@load.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@xe_module_load@load.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_module_load@load.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@xe_module_load@load.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_module_load@load.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-7/igt@xe_module_load@load.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-2/igt@xe_module_load@load.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-1/igt@xe_module_load@load.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_module_load@load.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_module_load@load.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-3/igt@xe_module_load@load.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@xe_module_load@load.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/shard-bmg-6/igt@xe_module_load@load.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [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#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [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#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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
  [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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
  [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#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [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#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [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#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [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#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
  [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#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#6050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6050
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [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#6325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6325
  [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804


Build changes
-------------

  * Linux: xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626 -> xe-pw-155787v3

  IGT_8582: 8582
  xe-3908-61b16793c3bbb8e740cf9afb36258dee61346626: 61b16793c3bbb8e740cf9afb36258dee61346626
  xe-pw-155787v3: 155787v3

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155787v3/index.html

[-- Attachment #2: Type: text/html, Size: 82273 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* RE: [PATCH v3] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-10-13 16:27         ` Matthew Brost
@ 2025-12-05 17:46           ` Lin, Shuicheng
  2025-12-05 18:25             ` Matthew Brost
  0 siblings, 1 reply; 16+ messages in thread
From: Lin, Shuicheng @ 2025-12-05 17:46 UTC (permalink / raw)
  To: Brost, Matthew, Simon Richter
  Cc: intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org

On Mon, Oct 13, 2025 9:27 AM Matthew Brost wrote:
> On Tue, Oct 14, 2025 at 01:11:33AM +0900, Simon Richter wrote:
> > It is possible for a BO to exist that is not currently associated with
> > a resource, e.g. because it has been evicted.
> >
> > When devcoredump tries to read the contents of all BOs for dumping, we
> > need to expect this as well -- in this case, ENODATA is recorded
> > instead of the buffer contents.
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
> 
> I think we need a fixes / cc stable but I can add that for you when merging.
> 
> Anyways patch LGTM:
> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> 
> > Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>

It seems this patch is not merged yet.

LGTM.
Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>

> > ---
> >  drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
> >  1 file changed, 7 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > b/drivers/gpu/drm/ttm/ttm_bo_vm.c index b47020fca199..a101ff95b234
> > 100644
> > --- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > +++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > @@ -434,6 +434,11 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
> unsigned long offset,
> >  	if (ret)
> >  		return ret;
> >
> > +	if (!bo->resource) {
> > +		ret = -ENODATA;
> > +		goto unlock;
> > +	}
> > +
> >  	switch (bo->resource->mem_type) {
> >  	case TTM_PL_SYSTEM:
> >  		fallthrough;
> > @@ -448,6 +453,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
> unsigned long offset,
> >  			ret = -EIO;
> >  	}
> >
> > +unlock:
> >  	ttm_bo_unreserve(bo);
> >
> >  	return ret;
> > --
> > 2.47.3
> >

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v3] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-12-05 17:46           ` Lin, Shuicheng
@ 2025-12-05 18:25             ` Matthew Brost
  2025-12-08  7:54               ` Christian König
  0 siblings, 1 reply; 16+ messages in thread
From: Matthew Brost @ 2025-12-05 18:25 UTC (permalink / raw)
  To: Lin, Shuicheng
  Cc: Simon Richter, intel-xe@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org, christian.koenig

On Fri, Dec 05, 2025 at 10:46:34AM -0700, Lin, Shuicheng wrote:
> On Mon, Oct 13, 2025 9:27 AM Matthew Brost wrote:
> > On Tue, Oct 14, 2025 at 01:11:33AM +0900, Simon Richter wrote:
> > > It is possible for a BO to exist that is not currently associated with
> > > a resource, e.g. because it has been evicted.
> > >
> > > When devcoredump tries to read the contents of all BOs for dumping, we
> > > need to expect this as well -- in this case, ENODATA is recorded
> > > instead of the buffer contents.
> > >
> > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
> > 
> > I think we need a fixes / cc stable but I can add that for you when merging.
> > 
> > Anyways patch LGTM:
> > Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> > 
> > > Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> 

Christian - any objection to me pushing this patch drm-misc-next or
would it be drm-misc-fixes? I forget the flow here.

Matt 

> It seems this patch is not merged yet.
> 
> LGTM.
> Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>
> 
> > > ---
> > >  drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
> > >  1 file changed, 7 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > > b/drivers/gpu/drm/ttm/ttm_bo_vm.c index b47020fca199..a101ff95b234
> > > 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
> > > @@ -434,6 +434,11 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
> > unsigned long offset,
> > >  	if (ret)
> > >  		return ret;
> > >
> > > +	if (!bo->resource) {
> > > +		ret = -ENODATA;
> > > +		goto unlock;
> > > +	}
> > > +
> > >  	switch (bo->resource->mem_type) {
> > >  	case TTM_PL_SYSTEM:
> > >  		fallthrough;
> > > @@ -448,6 +453,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
> > unsigned long offset,
> > >  			ret = -EIO;
> > >  	}
> > >
> > > +unlock:
> > >  	ttm_bo_unreserve(bo);
> > >
> > >  	return ret;
> > > --
> > > 2.47.3
> > >

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v3] drm/ttm: Avoid NULL pointer deref for evicted BOs
  2025-12-05 18:25             ` Matthew Brost
@ 2025-12-08  7:54               ` Christian König
  0 siblings, 0 replies; 16+ messages in thread
From: Christian König @ 2025-12-08  7:54 UTC (permalink / raw)
  To: Matthew Brost, Lin, Shuicheng
  Cc: Simon Richter, intel-xe@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org

On 12/5/25 19:25, Matthew Brost wrote:
> On Fri, Dec 05, 2025 at 10:46:34AM -0700, Lin, Shuicheng wrote:
>> On Mon, Oct 13, 2025 9:27 AM Matthew Brost wrote:
>>> On Tue, Oct 14, 2025 at 01:11:33AM +0900, Simon Richter wrote:
>>>> It is possible for a BO to exist that is not currently associated with
>>>> a resource, e.g. because it has been evicted.
>>>>
>>>> When devcoredump tries to read the contents of all BOs for dumping, we
>>>> need to expect this as well -- in this case, ENODATA is recorded
>>>> instead of the buffer contents.
>>>>
>>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6271
>>>
>>> I think we need a fixes / cc stable but I can add that for you when merging.
>>>
>>> Anyways patch LGTM:
>>> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
>>>
>>>> Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
>>
> 
> Christian - any objection to me pushing this patch drm-misc-next or
> would it be drm-misc-fixes? I forget the flow here.

Good catch! I somehow totally missed that patch.

Reviewed-by: Christian König <christian.koenig@amd.com>

And with the CC stable tag that should go to drm-misc-fixes.

Regards,
Christian.

> 
> Matt 
> 
>> It seems this patch is not merged yet.
>>
>> LGTM.
>> Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>
>>
>>>> ---
>>>>  drivers/gpu/drm/ttm/ttm_bo_vm.c | 7 +++++++
>>>>  1 file changed, 7 insertions(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/ttm/ttm_bo_vm.c
>>>> b/drivers/gpu/drm/ttm/ttm_bo_vm.c index b47020fca199..a101ff95b234
>>>> 100644
>>>> --- a/drivers/gpu/drm/ttm/ttm_bo_vm.c
>>>> +++ b/drivers/gpu/drm/ttm/ttm_bo_vm.c
>>>> @@ -434,6 +434,11 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
>>> unsigned long offset,
>>>>  	if (ret)
>>>>  		return ret;
>>>>
>>>> +	if (!bo->resource) {
>>>> +		ret = -ENODATA;
>>>> +		goto unlock;
>>>> +	}
>>>> +
>>>>  	switch (bo->resource->mem_type) {
>>>>  	case TTM_PL_SYSTEM:
>>>>  		fallthrough;
>>>> @@ -448,6 +453,7 @@ int ttm_bo_access(struct ttm_buffer_object *bo,
>>> unsigned long offset,
>>>>  			ret = -EIO;
>>>>  	}
>>>>
>>>> +unlock:
>>>>  	ttm_bo_unreserve(bo);
>>>>
>>>>  	return ret;
>>>> --
>>>> 2.47.3
>>>>


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2025-12-08  7:55 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-12 12:45 [PATCH 0/1] Avoid crash during dump when finding an evicted BO Simon Richter
2025-10-12 12:45 ` [PATCH 1/1] drm/ttm: Avoid NULL pointer deref for evicted BOs Simon Richter
2025-10-12 23:09   ` Matthew Brost
2025-10-13 16:02     ` [PATCH v2] " Simon Richter
2025-10-13 16:11       ` [PATCH v3] " Simon Richter
2025-10-13 16:27         ` Matthew Brost
2025-12-05 17:46           ` Lin, Shuicheng
2025-12-05 18:25             ` Matthew Brost
2025-12-08  7:54               ` Christian König
2025-10-12 12:52 ` ✗ CI.checkpatch: warning for Avoid crash during dump when finding an evicted BO Patchwork
2025-10-12 12:53 ` ✓ CI.KUnit: success " Patchwork
2025-10-12 13:35 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-12 14:47 ` ✗ Xe.CI.Full: failure " Patchwork
2025-10-13 18:03 ` ✓ CI.KUnit: success for Avoid crash during dump when finding an evicted BO (rev3) Patchwork
2025-10-13 18:39 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-13 22:03 ` ✗ Xe.CI.Full: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox