All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB
@ 2025-07-27  7:04 Simon Richter
  2025-07-27  7:04 ` [PATCH v2 1/1] " Simon Richter
                   ` (12 more replies)
  0 siblings, 13 replies; 22+ messages in thread
From: Simon Richter @ 2025-07-27  7:04 UTC (permalink / raw)
  To: intel-xe, dri-devel, linux-kernel; +Cc: Simon Richter

Hi,

until either of

 - https://patchwork.freedesktop.org/series/150230/

or the (same but rebased)

 - https://patchwork.freedesktop.org/series/151983/

goes in, the xe module will Oops on insmod when kernel page size is not 4kB.
This disables the module for the time being, and should be reverted for fixed
versions.

This should probably also be added to the stable kernel series which will
likely not receive the fix.

Simon Richter (1):
  Mark xe driver as BROKEN if kernel page size is not 4kB

 drivers/gpu/drm/xe/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.47.2


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

* [PATCH v2 1/1] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
@ 2025-07-27  7:04 ` Simon Richter
  2025-08-01  9:20   ` Thomas Hellström
  2025-07-27  7:09 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (11 subsequent siblings)
  12 siblings, 1 reply; 22+ messages in thread
From: Simon Richter @ 2025-07-27  7:04 UTC (permalink / raw)
  To: intel-xe, dri-devel, linux-kernel; +Cc: Simon Richter, stable

This driver, for the time being, assumes that the kernel page size is 4kB,
so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
pages.

Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
Cc: stable@vger.kernel.org
---
 drivers/gpu/drm/xe/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
index 2bb2bc052120..7c9f1de7b35f 100644
--- a/drivers/gpu/drm/xe/Kconfig
+++ b/drivers/gpu/drm/xe/Kconfig
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config DRM_XE
 	tristate "Intel Xe2 Graphics"
-	depends on DRM && PCI
+	depends on DRM && PCI && (PAGE_SIZE_4KB || BROKEN)
 	depends on KUNIT || !KUNIT
 	depends on INTEL_VSEC || !INTEL_VSEC
 	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)
-- 
2.47.2


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

* ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
  2025-07-27  7:04 ` [PATCH v2 1/1] " Simon Richter
@ 2025-07-27  7:09 ` Patchwork
  2025-07-27  7:11 ` ✓ CI.KUnit: success " Patchwork
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-07-27  7:09 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB
URL   : https://patchwork.freedesktop.org/series/152145/
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
c298eac5978c38dcc62a70c0d73c91765e7cc296
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 138eb6b399c775dbf04485425658b8ce96eead74
Author: Simon Richter <Simon.Richter@hogyros.de>
Date:   Sun Jul 27 16:04:10 2025 +0900

    Mark xe driver as BROKEN if kernel page size is not 4kB
    
    This driver, for the time being, assumes that the kernel page size is 4kB,
    so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
    pages.
    
    Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
    Cc: stable@vger.kernel.org
+ /mt/dim checkpatch b5cba94af0ba1607a1413be3ab9b8a712397042a drm-intel
138eb6b399c7 Mark xe driver as BROKEN if kernel page size is not 4kB
-:25: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?

total: 0 errors, 1 warnings, 0 checks, 8 lines checked



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

* ✓ CI.KUnit: success for Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
  2025-07-27  7:04 ` [PATCH v2 1/1] " Simon Richter
  2025-07-27  7:09 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-07-27  7:11 ` Patchwork
  2025-07-27  7:51 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-07-27  7:11 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (2 preceding siblings ...)
  2025-07-27  7:11 ` ✓ CI.KUnit: success " Patchwork
@ 2025-07-27  7:51 ` Patchwork
  2025-07-27  8:56 ` ✓ Xe.CI.Full: " Patchwork
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-07-27  7:51 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

CI Bug Log - changes from xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04_BAT -> xe-pw-152145v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 7)
------------------------------

  Missing    (2): bat-adlp-vm bat-atsm-2 


Changes
-------

  No changes found


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

  * Linux: xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04 -> xe-pw-152145v1

  IGT_8476: 232d4de46aa5ec03aee240657c0b36110f8a6246 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04: 11e629e8c02307977802ba0ea8c60ddb15b17d04
  xe-pw-152145v1: 152145v1

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (3 preceding siblings ...)
  2025-07-27  7:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-27  8:56 ` Patchwork
  2025-08-01 10:56 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2) Patchwork
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-07-27  8:56 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

CI Bug Log - changes from xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04_FULL -> xe-pw-152145v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

New tests
---------

  New tests have been introduced between xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04_FULL and xe-pw-152145v1_FULL:

### New IGT tests (13) ###

  * igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.68] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.64] s

  * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.64] s

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.92] s

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
    - Statuses : 1 dmesg-warn(s)
    - Exec time: [7.62] s

  * igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.66] s

  * igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.64] s

  * igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [2.98] s

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.93] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.64] s

  * igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.93] s

  * igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_video_decode:
    - Statuses : 2 pass(s)
    - Exec time: [3.03, 3.07] s

  * igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_video_enhance:
    - Statuses : 2 pass(s)
    - Exec time: [3.03, 3.08] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#2327])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

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

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][3] ([Intel XE#316]) +2 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#316])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#1124])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

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

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

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#367])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#2887])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#787]) +14 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2887]) +10 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#3432])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][15] ([Intel XE#3862]) +1 other test incomplete
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#787]) +146 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#2907])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][21] -> [INCOMPLETE][22] ([Intel XE#3124])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-464/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-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][23] -> [DMESG-WARN][24] ([Intel XE#1727] / [Intel XE#3113])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-464/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-cc@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][25] ([Intel XE#3124])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2724])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#306])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2325])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2252]) +8 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#373])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#373]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#373])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_content_protection@atomic@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][34] ([Intel XE#1178]) +1 other test fail
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-5/igt@kms_content_protection@atomic@pipe-a-dp-2.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#307])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-random-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2320]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2321]) +4 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_cursor_crc@cursor-random-512x170.html

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

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#308])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#2291]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [PASS][42] -> [FAIL][43] ([Intel XE#1475])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][44] -> [SKIP][45] ([Intel XE#1340])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#4422])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#776])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_fbcon_fbt@psr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][48] ([Intel XE#776])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#310])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [PASS][52] -> [FAIL][53] ([Intel XE#301])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][54] ([Intel XE#301])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html

  * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
    - shard-adlp:         [PASS][55] -> [DMESG-WARN][56] ([Intel XE#4543]) +4 other tests dmesg-warn
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-1/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-3/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][57] -> [FAIL][58] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2293]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#1397] / [Intel XE#1745])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#1397])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
    - shard-adlp:         [PASS][63] -> [FAIL][64] ([Intel XE#1874])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][65] -> [DMESG-FAIL][66] ([Intel XE#4543]) +2 other tests dmesg-fail
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html

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

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#656]) +9 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2311]) +16 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-slowdraw:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#651]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#656]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#5390]) +10 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-rte:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#5427])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#658])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2352])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2313]) +22 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#653]) +3 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#653]) +4 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [PASS][79] -> [SKIP][80] ([Intel XE#1503])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#4298])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#2934])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#2925])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2486])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_panel_fitting@legacy.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#455]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#2393]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][87] -> [SKIP][88] ([Intel XE#4596]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#5020])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#2763]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#2007])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_pm_dc@deep-pkgc.html
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#2505])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html
    - shard-lnl:          NOTRUN -> [FAIL][93] ([Intel XE#2029])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#1439] / [Intel XE#836])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#1489]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#2893] / [Intel XE#4608])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#4608]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#1489])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#1489]) +7 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2387])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@kms_psr@fbc-psr2-basic.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@fbc-psr2-cursor-blt:
    - shard-adlp:         NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_psr@fbc-psr2-cursor-blt.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1406])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-primary-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][105] ([Intel XE#4609])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#3414] / [Intel XE#3904])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#3414])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#3414] / [Intel XE#3904])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2330])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#2413])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic:
    - shard-dg2-set2:     [PASS][111] -> [FAIL][112] ([Intel XE#2883])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-436/igt@kms_setmode@basic.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-432/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][113] ([Intel XE#2883]) +5 other tests fail
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2.html

  * igt@kms_vrr@flip-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][114] ([Intel XE#455]) +3 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#2168])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_vrr@lobf.html

  * igt@xe_eudebug@basic-vm-bind-metadata-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#4837]) +9 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html

  * igt@xe_eudebug@discovery-race-sigint:
    - shard-adlp:         NOTRUN -> [SKIP][117] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_eudebug@discovery-race-sigint.html

  * igt@xe_eudebug@read-metadata:
    - shard-dg2-set2:     NOTRUN -> [SKIP][118] ([Intel XE#4837])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_eudebug@read-metadata.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][119] ([Intel XE#5563] / [Intel XE#688])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html

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

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][121] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][122] -> [SKIP][123] ([Intel XE#1392]) +6 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-null:
    - shard-lnl:          NOTRUN -> [SKIP][124] ([Intel XE#1392])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@xe_exec_basic@multigpu-once-null.html

  * igt@xe_exec_fault_mode@many-userptr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#288]) +6 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_exec_fault_mode@many-userptr.html

  * igt@xe_exec_fault_mode@many-userptr-imm:
    - shard-adlp:         NOTRUN -> [SKIP][126] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_exec_fault_mode@many-userptr-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     NOTRUN -> [SKIP][127] ([Intel XE#2360])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
    - shard-adlp:         NOTRUN -> [SKIP][128] ([Intel XE#2360] / [Intel XE#5573])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html

  * igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#4837])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#4943]) +19 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock:
    - shard-adlp:         NOTRUN -> [SKIP][131] ([Intel XE#4915] / [Intel XE#5560]) +59 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_exec_system_allocator@many-large-execqueues-malloc-mlock.html

  * igt@xe_exec_system_allocator@process-many-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#4943]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@xe_exec_system_allocator@process-many-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-remap-ro-dontunmap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][133] ([Intel XE#4915]) +55 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-mmap-remap-ro-dontunmap.html

  * igt@xe_oa@buffer-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][134] ([Intel XE#3573]) +2 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_oa@buffer-fill.html

  * igt@xe_oa@map-oa-buffer:
    - shard-adlp:         NOTRUN -> [SKIP][135] ([Intel XE#3573]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-9/igt@xe_oa@map-oa-buffer.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#1420])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][137] ([Intel XE#2427])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@xe_peer2peer@write.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][138] ([Intel XE#2284] / [Intel XE#366])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-433/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-adlp:         [PASS][139] -> [DMESG-WARN][140] ([Intel XE#2953] / [Intel XE#4173])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-4/igt@xe_pm@s2idle-exec-after.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-4/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][141] ([Intel XE#4733]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#944]) +2 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#944])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html

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

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-bmg:          NOTRUN -> [SKIP][145] ([Intel XE#4130])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
    - shard-lnl:          NOTRUN -> [SKIP][146] ([Intel XE#4130])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#3342])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@modeset-transition:
    - shard-bmg:          [DMESG-WARN][148] -> [PASS][149] +10 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_atomic_transition@modeset-transition.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_atomic_transition@modeset-transition.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][150] ([Intel XE#4543]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][152] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][154] ([Intel XE#3862]) -> [PASS][155] +1 other test pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_color@degamma@pipe-a-dp-2:
    - shard-bmg:          [SKIP][156] ([Intel XE#5677]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_color@degamma@pipe-a-dp-2.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_color@degamma@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][158] ([Intel XE#2291]) -> [PASS][159] +4 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][160] ([Intel XE#4633]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][162] ([Intel XE#4302]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [SKIP][164] ([Intel XE#2316]) -> [PASS][165] +4 other tests pass
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][166] ([Intel XE#301]) -> [PASS][167] +1 other test pass
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [DMESG-WARN][168] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][170] ([Intel XE#4543]) -> [PASS][171] +9 other tests pass
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-6/igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [DMESG-WARN][172] ([Intel XE#5208]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][174] ([Intel XE#1503]) -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_hdr@static-swap.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-2/igt@kms_hdr@static-swap.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [DMESG-WARN][176] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][177] +4 other tests pass
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane@plane-position-hole@pipe-a-plane-1:
    - shard-bmg:          [FAIL][178] -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_plane@plane-position-hole@pipe-a-plane-1.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_plane@plane-position-hole@pipe-a-plane-1.html

  * igt@kms_plane@plane-position-hole@pipe-a-plane-3:
    - shard-bmg:          [FAIL][180] ([Intel XE#5203]) -> [PASS][181] +2 other tests pass
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html

  * igt@kms_plane_multiple@tiling-x:
    - shard-bmg:          [DMESG-FAIL][182] ([Intel XE#3428] / [Intel XE#5175]) -> [PASS][183]
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_plane_multiple@tiling-x.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_plane_multiple@tiling-x.html

  * igt@kms_plane_multiple@tiling-x@pipe-c-dp-2:
    - shard-bmg:          [FAIL][184] ([Intel XE#5375]) -> [PASS][185]
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_plane_multiple@tiling-x@pipe-c-dp-2.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_plane_multiple@tiling-x@pipe-c-dp-2.html

  * igt@kms_plane_multiple@tiling-x@pipe-d-dp-2:
    - shard-bmg:          [SKIP][186] ([Intel XE#5676]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_plane_multiple@tiling-x@pipe-d-dp-2.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-3/igt@kms_plane_multiple@tiling-x@pipe-d-dp-2.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][188] ([Intel XE#2571]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-bmg:          [DMESG-FAIL][190] ([Intel XE#3428]) -> [PASS][191] +1 other test pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_pm_rpm@drm-resources-equal.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_setmode@basic:
    - shard-adlp:         [FAIL][192] ([Intel XE#2883]) -> [PASS][193] +2 other tests pass
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-2/igt@kms_setmode@basic.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-3/igt@kms_setmode@basic.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][194] ([Intel XE#1435]) -> [PASS][195]
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_exec_basic@multigpu-once-rebind:
    - shard-dg2-set2:     [SKIP][196] ([Intel XE#1392]) -> [PASS][197] +4 other tests pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_exec_basic@multigpu-once-rebind.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-imm:
    - shard-lnl:          [FAIL][198] ([Intel XE#5523]) -> [PASS][199]
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-lnl-3/igt@xe_exec_fault_mode@twice-bindexecqueue-imm.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-lnl-2/igt@xe_exec_fault_mode@twice-bindexecqueue-imm.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-remap-dontunmap-eocheck:
    - shard-bmg:          [DMESG-WARN][200] ([Intel XE#3428]) -> [PASS][201] +20 other tests pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-mmap-remap-dontunmap-eocheck.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-mmap-remap-dontunmap-eocheck.html

  * igt@xe_exec_threads@threads-hang-rebind-err:
    - shard-dg2-set2:     [DMESG-WARN][202] ([Intel XE#3876]) -> [PASS][203]
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-466/igt@xe_exec_threads@threads-hang-rebind-err.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][204] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][205] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][206] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [DMESG-WARN][207] ([Intel XE#1727] / [Intel XE#3113])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [SKIP][208] ([Intel XE#2341]) -> [FAIL][209] ([Intel XE#1178]) +1 other test fail
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_content_protection@atomic.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-5/igt@kms_content_protection@atomic.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][210] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][211] ([Intel XE#4543]) +1 other test dmesg-warn
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][212] ([Intel XE#2312]) -> [SKIP][213] ([Intel XE#2311]) +13 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][214] ([Intel XE#2311]) -> [SKIP][215] ([Intel XE#2312]) +11 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][216] ([Intel XE#5390]) -> [SKIP][217] ([Intel XE#2312]) +7 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][218] ([Intel XE#2312]) -> [SKIP][219] ([Intel XE#5390]) +5 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][220] ([Intel XE#2312]) -> [SKIP][221] ([Intel XE#2313]) +15 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][222] ([Intel XE#2313]) -> [SKIP][223] ([Intel XE#2312]) +14 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][224] ([Intel XE#3544]) -> [SKIP][225] ([Intel XE#3374] / [Intel XE#3544])
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][226] ([Intel XE#5021]) -> [SKIP][227] ([Intel XE#4596])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][228] ([Intel XE#2509]) -> [SKIP][229] ([Intel XE#2426])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][230] ([Intel XE#5166]) -> [FAIL][231] ([Intel XE#4819]) +1 other test fail
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04/shard-dg2-432/igt@xe_pmu@gt-frequency.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v1/shard-dg2-434/igt@xe_pmu@gt-frequency.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#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#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [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#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [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#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#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
  [Intel XE#5175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5175
  [Intel XE#5203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5203
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5375
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427
  [Intel XE#5523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5523
  [Intel XE#5560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5560
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5573
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5676
  [Intel XE#5677]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5677
  [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#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-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04 -> xe-pw-152145v1

  IGT_8476: 232d4de46aa5ec03aee240657c0b36110f8a6246 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3479-11e629e8c02307977802ba0ea8c60ddb15b17d04: 11e629e8c02307977802ba0ea8c60ddb15b17d04
  xe-pw-152145v1: 152145v1

== Logs ==

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

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

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

* Re: [PATCH v2 1/1] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-07-27  7:04 ` [PATCH v2 1/1] " Simon Richter
@ 2025-08-01  9:20   ` Thomas Hellström
  2025-08-01 10:19     ` [PATCH v3] " Simon Richter
  2025-08-01 12:27     ` [PATCH v2 1/1] " Simon.Richter
  0 siblings, 2 replies; 22+ messages in thread
From: Thomas Hellström @ 2025-08-01  9:20 UTC (permalink / raw)
  To: Simon Richter, intel-xe, dri-devel, linux-kernel

On Sun, 2025-07-27 at 16:04 +0900, Simon Richter wrote:
> This driver, for the time being, assumes that the kernel page size is
> 4kB,
> so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with
> 64kB
> pages.
> 
> Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> Cc: stable@vger.kernel.org

This looks reasonable to me. During your testing, did you notice
whether there were compilation errors on !4K as well? If not, what do
you thing on allowing !4K also for COMPILE_TEST?

Thanks,
Thomas


> ---
>  drivers/gpu/drm/xe/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
> index 2bb2bc052120..7c9f1de7b35f 100644
> --- a/drivers/gpu/drm/xe/Kconfig
> +++ b/drivers/gpu/drm/xe/Kconfig
> @@ -1,7 +1,7 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  config DRM_XE
>  	tristate "Intel Xe2 Graphics"
> -	depends on DRM && PCI
> +	depends on DRM && PCI && (PAGE_SIZE_4KB || BROKEN)
>  	depends on KUNIT || !KUNIT
>  	depends on INTEL_VSEC || !INTEL_VSEC
>  	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)


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

* [PATCH v3] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01  9:20   ` Thomas Hellström
@ 2025-08-01 10:19     ` Simon Richter
  2025-08-01 14:39       ` Thomas Hellström
  2025-08-01 12:27     ` [PATCH v2 1/1] " Simon.Richter
  1 sibling, 1 reply; 22+ messages in thread
From: Simon Richter @ 2025-08-01 10:19 UTC (permalink / raw)
  To: thomas.hellstrom, intel-xe, dri-devel, linux-kernel; +Cc: Simon Richter, stable

This driver, for the time being, assumes that the kernel page size is 4kB,
so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
pages.

Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
Cc: stable@vger.kernel.org
---
 drivers/gpu/drm/xe/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
index 2bb2bc052120..ea12ff033439 100644
--- a/drivers/gpu/drm/xe/Kconfig
+++ b/drivers/gpu/drm/xe/Kconfig
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config DRM_XE
 	tristate "Intel Xe2 Graphics"
-	depends on DRM && PCI
+	depends on DRM && PCI && (PAGE_SIZE_4KB || COMPILE_TEST || BROKEN)
 	depends on KUNIT || !KUNIT
 	depends on INTEL_VSEC || !INTEL_VSEC
 	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)
-- 
2.47.2


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

* ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (4 preceding siblings ...)
  2025-07-27  8:56 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-08-01 10:56 ` Patchwork
  2025-08-01 10:57 ` ✓ CI.KUnit: success " Patchwork
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-01 10:56 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
URL   : https://patchwork.freedesktop.org/series/152145/
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
c298eac5978c38dcc62a70c0d73c91765e7cc296
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit abb796d0c956b8a971b3550b9261a1d250c70e87
Author: Simon Richter <Simon.Richter@hogyros.de>
Date:   Fri Aug 1 19:19:13 2025 +0900

    Mark xe driver as BROKEN if kernel page size is not 4kB
    
    This driver, for the time being, assumes that the kernel page size is 4kB,
    so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
    pages.
    
    Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
    Cc: stable@vger.kernel.org
+ /mt/dim checkpatch c4264c7406b75ed3fa043f034cb9d538d210d64f drm-intel
abb796d0c956 Mark xe driver as BROKEN if kernel page size is not 4kB
-:25: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?

total: 0 errors, 1 warnings, 0 checks, 8 lines checked



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

* ✓ CI.KUnit: success for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (5 preceding siblings ...)
  2025-08-01 10:56 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2) Patchwork
@ 2025-08-01 10:57 ` Patchwork
  2025-08-01 12:03 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-01 10:57 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (6 preceding siblings ...)
  2025-08-01 10:57 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-01 12:03 ` Patchwork
  2025-08-01 13:41 ` ✓ Xe.CI.Full: " Patchwork
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-01 12:03 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

CI Bug Log - changes from xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f_BAT -> xe-pw-152145v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 7)
------------------------------

  Missing    (1): bat-adlp-vm 

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

  Here are the changes found in xe-pw-152145v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

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


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

  * Linux: xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f -> xe-pw-152145v2

  IGT_8482: 8482
  xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f: c4264c7406b75ed3fa043f034cb9d538d210d64f
  xe-pw-152145v2: 152145v2

== Logs ==

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

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

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

* Re: [PATCH v2 1/1] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01  9:20   ` Thomas Hellström
  2025-08-01 10:19     ` [PATCH v3] " Simon Richter
@ 2025-08-01 12:27     ` Simon.Richter
  1 sibling, 0 replies; 22+ messages in thread
From: Simon.Richter @ 2025-08-01 12:27 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe, dri-devel, linux-kernel

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

Hi,

added COMPILE_TEST — the goal behind this patch is to revert it as soon as possible, which will require some more testing though, and Debian wants something we can release that does not Oops on boot.

Presumably, the same change needs to be done for a few others (nouveau? amd?), but I haven't gotten around to testing yet if they actually fail with 64k pages, because this involves moving GPUs around — and testing 16k and 256k is even more effort, especially 256k, because that is larger than the default alignment of ELF binaries.

   Simon

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

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

* ✓ Xe.CI.Full: success for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (7 preceding siblings ...)
  2025-08-01 12:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-01 13:41 ` Patchwork
  2025-08-02  2:48 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3) Patchwork
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-01 13:41 UTC (permalink / raw)
  To: simon.richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev2)
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

CI Bug Log - changes from xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f_FULL -> xe-pw-152145v2_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-152145v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [PASS][1] -> [SKIP][2] ([Intel XE#4963])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html

  * igt@core_setmaster@master-drop-set-shared-fd:
    - shard-bmg:          [PASS][3] -> [SKIP][4] ([Intel XE#5715])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@core_setmaster@master-drop-set-shared-fd.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@core_setmaster@master-drop-set-shared-fd.html

  * igt@fbdev@unaligned-write:
    - shard-bmg:          [PASS][5] -> [SKIP][6] ([Intel XE#2134]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@fbdev@unaligned-write.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@fbdev@unaligned-write.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#4947]) +21 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [PASS][9] -> [DMESG-FAIL][10] ([Intel XE#4543]) +1 other test dmesg-fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#607])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#787]) +76 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#306])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][16] ([Intel XE#1178])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
    - shard-dg2-set2:     NOTRUN -> [FAIL][17] ([Intel XE#1178])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-432/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][18] -> [DMESG-WARN][19] ([Intel XE#5354])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][20] ([Intel XE#4494])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-hdmi-a1:
    - shard-adlp:         [PASS][21] -> [DMESG-WARN][22] ([Intel XE#4543])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-8/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-hdmi-a1.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][23] ([Intel XE#2049] / [Intel XE#2597])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-2/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2293]) +3 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#651]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#653]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][27] -> [SKIP][28] ([Intel XE#455])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-434/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#4950]) +127 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html

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

  * igt@kms_pm_rpm@basic-rte:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#4962]) +2 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_pm_rpm@basic-rte.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_psr@fbc-pr-cursor-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#2850] / [Intel XE#929])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-render.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][35] -> [FAIL][36] ([Intel XE#4459]) +1 other test fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#4837])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-dg2-set2:     [PASS][38] -> [SKIP][39] ([Intel XE#1392]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-464/igt@xe_exec_basic@multigpu-once-null-rebind.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@once-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#288]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-prefetch.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-nomemset:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#4945]) +609 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [PASS][43] -> [FAIL][44] ([Intel XE#5018]) +1 other test fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#4915]) +15 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html

  * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#4733])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-466/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html

  * igt@xe_wedged@basic-wedged:
    - shard-adlp:         [PASS][47] -> [DMESG-WARN][48] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-3/igt@xe_wedged@basic-wedged.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-1/igt@xe_wedged@basic-wedged.html

  
#### Possible fixes ####

  * igt@core_getversion@basic:
    - shard-bmg:          [FAIL][49] ([Intel XE#4672]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@core_getversion@basic.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@core_getversion@basic.html

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-bmg:          [SKIP][51] ([Intel XE#4963]) -> [PASS][52] +1 other test pass
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@core_hotunplug@hotunplug-rescan.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@core_hotunplug@hotunplug-rescan.html

  * igt@device_reset@unbind-reset-rebind:
    - shard-bmg:          [SKIP][53] ([Intel XE#5547]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@device_reset@unbind-reset-rebind.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
    - shard-bmg:          [SKIP][55] ([Intel XE#4947]) -> [PASS][56] +13 other tests pass
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [DMESG-FAIL][57] ([Intel XE#4543]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-bmg:          [DMESG-WARN][59] ([Intel XE#5354]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][61] ([Intel XE#4633]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-dg2-set2:     [FAIL][63] ([Intel XE#3098]) -> [PASS][64] +1 other test pass
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-463/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-434/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [SKIP][65] ([Intel XE#2316]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - shard-adlp:         [DMESG-WARN][67] ([Intel XE#4543]) -> [PASS][68] +3 other tests pass
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-2/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg2-set2:     [FAIL][69] ([Intel XE#301]) -> [PASS][70] +1 other test pass
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
    - shard-lnl:          [FAIL][71] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][73] ([Intel XE#301]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][75] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][76] +5 other tests pass
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][77] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          [SKIP][79] ([Intel XE#4962]) -> [PASS][80] +1 other test pass
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_vblank@wait-busy-hang:
    - shard-bmg:          [SKIP][81] ([Intel XE#4950]) -> [PASS][82] +71 other tests pass
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_vblank@wait-busy-hang.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-dg2-set2:     [SKIP][83] ([Intel XE#1392]) -> [PASS][84] +3 other tests pass
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [DMESG-WARN][85] ([Intel XE#3876]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          [SKIP][87] ([Intel XE#4945]) -> [PASS][88] +374 other tests pass
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][89] ([Intel XE#2229]) -> [PASS][90] +1 other test pass
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_live_ktest@xe_bo.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-adlp:         [DMESG-WARN][91] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][92] +3 other tests pass
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][93] ([Intel XE#4950]) -> [SKIP][94] ([Intel XE#2233])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-bmg:          [SKIP][95] ([Intel XE#873]) -> [SKIP][96] ([Intel XE#4950])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][97] ([Intel XE#2370]) -> [SKIP][98] ([Intel XE#4950])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][99] ([Intel XE#2327]) -> [SKIP][100] ([Intel XE#4947]) +8 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-bmg:          [SKIP][101] ([Intel XE#4947]) -> [SKIP][102] ([Intel XE#2327]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-bmg:          [SKIP][103] ([Intel XE#4947]) -> [SKIP][104] ([Intel XE#1124]) +9 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][105] ([Intel XE#2328]) -> [SKIP][106] ([Intel XE#4947])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][107] ([Intel XE#4947]) -> [SKIP][108] ([Intel XE#610])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][109] ([Intel XE#1124]) -> [SKIP][110] ([Intel XE#4947]) +12 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][111] ([Intel XE#4947]) -> [SKIP][112] ([Intel XE#2328])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][113] ([Intel XE#610]) -> [SKIP][114] ([Intel XE#4947])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][115] ([Intel XE#4950]) -> [SKIP][116] ([Intel XE#2314] / [Intel XE#2894])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          [SKIP][117] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][118] ([Intel XE#4950]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-bmg:          [SKIP][119] ([Intel XE#4950]) -> [SKIP][120] ([Intel XE#367])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][121] ([Intel XE#367]) -> [SKIP][122] ([Intel XE#4950]) +4 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][123] ([Intel XE#4947]) -> [SKIP][124] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][125] ([Intel XE#2887]) -> [SKIP][126] ([Intel XE#4947]) +22 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
    - shard-bmg:          [SKIP][127] ([Intel XE#4947]) -> [SKIP][128] ([Intel XE#2887]) +10 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-bmg:          [SKIP][129] ([Intel XE#3432]) -> [SKIP][130] ([Intel XE#4947])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][131] ([Intel XE#4947]) -> [SKIP][132] ([Intel XE#3432]) +1 other test skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][133] ([Intel XE#2724]) -> [SKIP][134] ([Intel XE#4947]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          [SKIP][135] ([Intel XE#4950]) -> [SKIP][136] ([Intel XE#2325])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_color@gamma:
    - shard-bmg:          [SKIP][137] ([Intel XE#2325]) -> [SKIP][138] ([Intel XE#4950])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_chamelium_color@gamma.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][139] ([Intel XE#4950]) -> [SKIP][140] ([Intel XE#2252]) +9 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          [SKIP][141] ([Intel XE#2252]) -> [SKIP][142] ([Intel XE#4950]) +12 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][143] ([Intel XE#4950]) -> [SKIP][144] ([Intel XE#2341])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          [SKIP][145] ([Intel XE#4950]) -> [SKIP][146] ([Intel XE#2390]) +1 other test skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          [SKIP][147] ([Intel XE#2390]) -> [SKIP][148] ([Intel XE#4950])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][149] ([Intel XE#1178]) -> [SKIP][150] ([Intel XE#4950]) +1 other test skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@kms_content_protection@legacy.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [SKIP][151] ([Intel XE#4950]) -> [FAIL][152] ([Intel XE#1178])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][153] ([Intel XE#1188]) -> [SKIP][154] ([Intel XE#4950])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_content_protection@uevent.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          [SKIP][155] ([Intel XE#2320]) -> [SKIP][156] ([Intel XE#4950]) +5 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          [SKIP][157] ([Intel XE#2321]) -> [SKIP][158] ([Intel XE#4950]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-bmg:          [SKIP][159] ([Intel XE#4950]) -> [SKIP][160] ([Intel XE#2320]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_cursor_crc@cursor-random-64x21.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          [SKIP][161] ([Intel XE#4950]) -> [SKIP][162] ([Intel XE#2321]) +2 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][163] ([Intel XE#2291]) -> [SKIP][164] ([Intel XE#4950]) +2 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][165] ([Intel XE#4950]) -> [SKIP][166] ([Intel XE#2291])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][167] ([Intel XE#1475]) -> [SKIP][168] ([Intel XE#4950])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][169] ([Intel XE#2286]) -> [SKIP][170] ([Intel XE#4950])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          [SKIP][171] ([Intel XE#2244]) -> [SKIP][172] ([Intel XE#4947]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          [SKIP][173] ([Intel XE#4947]) -> [SKIP][174] ([Intel XE#2244]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          [SKIP][175] ([Intel XE#4422]) -> [SKIP][176] ([Intel XE#4945])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          [SKIP][177] ([Intel XE#5425]) -> [SKIP][178] ([Intel XE#4947])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-bmg:          [SKIP][179] ([Intel XE#776]) -> [SKIP][180] ([Intel XE#4947])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          [SKIP][181] ([Intel XE#4950]) -> [SKIP][182] ([Intel XE#1138])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [SKIP][183] ([Intel XE#2316]) -> [SKIP][184] ([Intel XE#4950]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][185] ([Intel XE#4950]) -> [SKIP][186] ([Intel XE#2316]) +4 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          [SKIP][187] ([Intel XE#4947]) -> [SKIP][188] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][189] ([Intel XE#2380]) -> [SKIP][190] ([Intel XE#4947])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][191] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][192] ([Intel XE#4947]) +5 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][193] ([Intel XE#2312]) -> [SKIP][194] ([Intel XE#2311]) +4 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          [SKIP][195] ([Intel XE#2311]) -> [SKIP][196] ([Intel XE#4947]) +41 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][197] ([Intel XE#4947]) -> [SKIP][198] ([Intel XE#2311]) +19 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][199] ([Intel XE#5390]) -> [SKIP][200] ([Intel XE#4947]) +18 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][201] ([Intel XE#4947]) -> [SKIP][202] ([Intel XE#5390]) +8 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][203] ([Intel XE#2312]) -> [SKIP][204] ([Intel XE#5390]) +2 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][205] ([Intel XE#4947]) -> [SKIP][206] ([Intel XE#2312]) +11 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-adlp:         [SKIP][207] ([Intel XE#1151]) -> [SKIP][208] ([Intel XE#4947])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][209] ([Intel XE#2312]) -> [SKIP][210] ([Intel XE#4947]) +7 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          [SKIP][211] ([Intel XE#2352]) -> [SKIP][212] ([Intel XE#4947]) +1 other test skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-bmg:          [SKIP][213] ([Intel XE#4947]) -> [SKIP][214] ([Intel XE#5672])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][215] ([Intel XE#2312]) -> [SKIP][216] ([Intel XE#2313]) +4 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][217] ([Intel XE#2313]) -> [SKIP][218] ([Intel XE#4947]) +37 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][219] ([Intel XE#4947]) -> [SKIP][220] ([Intel XE#2313]) +20 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][221] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][222] ([Intel XE#4950])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][223] ([Intel XE#4950]) -> [SKIP][224] ([Intel XE#1503])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_hdr@static-swap.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][225] ([Intel XE#346]) -> [SKIP][226] ([Intel XE#4947]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][227] ([Intel XE#4947]) -> [SKIP][228] ([Intel XE#2934])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          [SKIP][229] ([Intel XE#2927]) -> [SKIP][230] ([Intel XE#4947])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][231] ([Intel XE#4950]) -> [SKIP][232] ([Intel XE#2486])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_panel_fitting@legacy.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          [SKIP][233] ([Intel XE#4950]) -> [SKIP][234] ([Intel XE#2393])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][235] ([Intel XE#5020]) -> [SKIP][236] ([Intel XE#4950])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5:
    - shard-bmg:          [SKIP][237] ([Intel XE#4950]) -> [SKIP][238] ([Intel XE#2763])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][239] ([Intel XE#2763]) -> [SKIP][240] ([Intel XE#4950])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][241] ([Intel XE#2938]) -> [SKIP][242] ([Intel XE#4947])
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-bmg:          [SKIP][243] ([Intel XE#4947]) -> [SKIP][244] ([Intel XE#870]) +1 other test skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          [SKIP][245] ([Intel XE#870]) -> [SKIP][246] ([Intel XE#4947])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          [SKIP][247] ([Intel XE#2392]) -> [SKIP][248] ([Intel XE#4947])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][249] ([Intel XE#4947]) -> [SKIP][250] ([Intel XE#2392])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][251] ([Intel XE#2499]) -> [SKIP][252] ([Intel XE#4947])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][253] ([Intel XE#1439] / [Intel XE#836]) -> [SKIP][254] ([Intel XE#4962])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-bmg:          [SKIP][255] ([Intel XE#4947]) -> [SKIP][256] ([Intel XE#1489]) +5 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][257] ([Intel XE#1489]) -> [SKIP][258] ([Intel XE#4947]) +11 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          [SKIP][259] ([Intel XE#2387]) -> [SKIP][260] ([Intel XE#4947])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][261] ([Intel XE#4947]) -> [SKIP][262] ([Intel XE#2387])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-cursor-plane-move:
    - shard-bmg:          [SKIP][263] ([Intel XE#4947]) -> [SKIP][264] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          [SKIP][265] ([Intel XE#4947]) -> [SKIP][266] ([Intel XE#2234])
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_psr@psr2-primary-render.html

  * igt@kms_psr@psr2-suspend:
    - shard-bmg:          [SKIP][267] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][268] ([Intel XE#4947]) +20 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_psr@psr2-suspend.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_psr@psr2-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][269] ([Intel XE#4947]) -> [SKIP][270] ([Intel XE#2414])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][271] ([Intel XE#2414]) -> [SKIP][272] ([Intel XE#4947])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          [SKIP][273] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][274] ([Intel XE#4950])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-270.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          [SKIP][275] ([Intel XE#4950]) -> [SKIP][276] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-90.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          [SKIP][277] ([Intel XE#2413]) -> [SKIP][278] ([Intel XE#4950])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][279] ([Intel XE#1435]) -> [SKIP][280] ([Intel XE#4950])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][281] ([Intel XE#4950]) -> [SKIP][282] ([Intel XE#2426])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [FAIL][283] ([Intel XE#1729]) -> [SKIP][284] ([Intel XE#362])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][285] ([Intel XE#2426]) -> [SKIP][286] ([Intel XE#2509])
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          [SKIP][287] ([Intel XE#2450]) -> [SKIP][288] ([Intel XE#4950])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][289] ([Intel XE#1499]) -> [SKIP][290] ([Intel XE#4950]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@kms_vrr@flip-basic.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@kms_vrr@flip-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-bmg:          [SKIP][291] ([Intel XE#4950]) -> [SKIP][292] ([Intel XE#1091] / [Intel XE#2849])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          [SKIP][293] ([Intel XE#4837]) -> [SKIP][294] ([Intel XE#4945]) +17 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          [SKIP][295] ([Intel XE#4945]) -> [SKIP][296] ([Intel XE#4837]) +12 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-bmg:          [SKIP][297] ([Intel XE#4518]) -> [SKIP][298] ([Intel XE#4945])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-bmg:          [SKIP][299] ([Intel XE#2322]) -> [SKIP][300] ([Intel XE#4945]) +12 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [SKIP][301] ([Intel XE#4945]) -> [SKIP][302] ([Intel XE#2322]) +6 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge:
    - shard-bmg:          [SKIP][303] ([Intel XE#4943]) -> [SKIP][304] ([Intel XE#4945]) +38 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
    - shard-bmg:          [SKIP][305] ([Intel XE#4945]) -> [SKIP][306] ([Intel XE#4943]) +22 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [SKIP][307] ([Intel XE#4945]) -> [ABORT][308] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-bmg:          [SKIP][309] ([Intel XE#4945]) -> [ABORT][310] ([Intel XE#5530])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          [SKIP][311] ([Intel XE#586]) -> [SKIP][312] ([Intel XE#4945])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-6/igt@xe_mmap@small-bar.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_mmap@small-bar.html

  * igt@xe_pat@pat-index-xe2:
    - shard-bmg:          [FAIL][313] ([Intel XE#5507]) -> [SKIP][314] ([Intel XE#4945])
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_pat@pat-index-xe2.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][315] ([Intel XE#4945]) -> [SKIP][316] ([Intel XE#2245])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          [SKIP][317] ([Intel XE#4945]) -> [SKIP][318] ([Intel XE#2284])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-4/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][319] ([Intel XE#2284]) -> [SKIP][320] ([Intel XE#4945]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          [SKIP][321] ([Intel XE#4945]) -> [SKIP][322] ([Intel XE#5695])
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_pm@d3hot-i2c.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          [SKIP][323] ([Intel XE#4733]) -> [SKIP][324] ([Intel XE#4945]) +2 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-bmg:          [SKIP][325] ([Intel XE#4945]) -> [SKIP][326] ([Intel XE#4733]) +1 other test skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-bmg:          [SKIP][327] ([Intel XE#944]) -> [SKIP][328] ([Intel XE#4945]) +3 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@xe_query@multigpu-query-cs-cycles.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          [SKIP][329] ([Intel XE#4945]) -> [SKIP][330] ([Intel XE#944]) +3 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-bmg:          [SKIP][331] ([Intel XE#4130]) -> [SKIP][332] ([Intel XE#4945]) +1 other test skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
    - shard-bmg:          [SKIP][333] ([Intel XE#4945]) -> [SKIP][334] ([Intel XE#4130])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [SKIP][335] ([Intel XE#4273]) -> [SKIP][336] ([Intel XE#4945])
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-bmg:          [SKIP][337] ([Intel XE#4351]) -> [SKIP][338] ([Intel XE#4945])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v2/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [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#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [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#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4672
  [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#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#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
  [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
  [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
  [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
  [Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [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#5507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5507
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5547]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5547
  [Intel XE#5672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5672
  [Intel XE#5695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5695
  [Intel XE#5715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5715
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [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-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f -> xe-pw-152145v2

  IGT_8482: 8482
  xe-3497-c4264c7406b75ed3fa043f034cb9d538d210d64f: c4264c7406b75ed3fa043f034cb9d538d210d64f
  xe-pw-152145v2: 152145v2

== Logs ==

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

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

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

* Re: [PATCH v3] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01 10:19     ` [PATCH v3] " Simon Richter
@ 2025-08-01 14:39       ` Thomas Hellström
  2025-08-01 14:56         ` Thomas Hellström
  0 siblings, 1 reply; 22+ messages in thread
From: Thomas Hellström @ 2025-08-01 14:39 UTC (permalink / raw)
  To: Simon Richter, intel-xe, dri-devel, linux-kernel; +Cc: stable

On Fri, 2025-08-01 at 19:19 +0900, Simon Richter wrote:
> This driver, for the time being, assumes that the kernel page size is
> 4kB,
> so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with
> 64kB
> pages.
> 
> Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> Cc: stable@vger.kernel.org

Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
I will add a Fixes: tag and push this.

Thanks,
Thomas


> ---
>  drivers/gpu/drm/xe/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
> index 2bb2bc052120..ea12ff033439 100644
> --- a/drivers/gpu/drm/xe/Kconfig
> +++ b/drivers/gpu/drm/xe/Kconfig
> @@ -1,7 +1,7 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  config DRM_XE
>  	tristate "Intel Xe2 Graphics"
> -	depends on DRM && PCI
> +	depends on DRM && PCI && (PAGE_SIZE_4KB || COMPILE_TEST ||
> BROKEN)
>  	depends on KUNIT || !KUNIT
>  	depends on INTEL_VSEC || !INTEL_VSEC
>  	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)



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

* Re: [PATCH v3] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01 14:39       ` Thomas Hellström
@ 2025-08-01 14:56         ` Thomas Hellström
  2025-08-01 15:13           ` Simon Richter
  2025-08-02  2:40           ` [PATCH v4] " Simon Richter
  0 siblings, 2 replies; 22+ messages in thread
From: Thomas Hellström @ 2025-08-01 14:56 UTC (permalink / raw)
  To: Simon Richter, intel-xe, dri-devel, linux-kernel

On Fri, 2025-08-01 at 16:39 +0200, Thomas Hellström wrote:
> On Fri, 2025-08-01 at 19:19 +0900, Simon Richter wrote:
> > This driver, for the time being, assumes that the kernel page size
> > is
> > 4kB,
> > so it fails on loong64 and aarch64 with 16kB pages, and ppc64el
> > with
> > 64kB
> > pages.
> > 
> > Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> > Cc: stable@vger.kernel.org
> 
> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> I will add a Fixes: tag and push this.
> 
> Thanks,
> Thomas

Actually, I see that the patch in its current form will cause grief
when backporting since that depends line has changed during driver
lifetime. I noticed that when trying to find a good Fixes: tag.

Would you mind if we did the following:

> 
> 
> > ---
> >  drivers/gpu/drm/xe/Kconfig | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/Kconfig
> > b/drivers/gpu/drm/xe/Kconfig
> > index 2bb2bc052120..ea12ff033439 100644
> > --- a/drivers/gpu/drm/xe/Kconfig
> > +++ b/drivers/gpu/drm/xe/Kconfig
> > @@ -1,7 +1,7 @@
> >  # SPDX-License-Identifier: GPL-2.0-only
> >  config DRM_XE
> >  	tristate "Intel Xe2 Graphics"
> > -	depends on DRM && PCI
> > +	depends on DRM && PCI && (PAGE_SIZE_4KB || COMPILE_TEST ||
> > BROKEN)

Scratch this change

> >  	depends on KUNIT || !KUNIT
> >  	depends on INTEL_VSEC || !INTEL_VSEC
> >  	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)

And instead here add
	depends on PAGE_SIZE_4KB || COMPILE_TEST || BROKEN

Thanks,
Thomas


> 
> 


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

* Re: [PATCH v3] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01 14:56         ` Thomas Hellström
@ 2025-08-01 15:13           ` Simon Richter
  2025-08-02  2:40           ` [PATCH v4] " Simon Richter
  1 sibling, 0 replies; 22+ messages in thread
From: Simon Richter @ 2025-08-01 15:13 UTC (permalink / raw)
  To: Thomas Hellström, intel-xe, dri-devel, linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 233 bytes --]

Hi,

On 8/1/25 23:56, Thomas Hellström wrote:

> Would you mind if we did the following:

[...]

> And instead here add
> 	depends on PAGE_SIZE_4KB || COMPILE_TEST || BROKEN

That is a lot nicer, I like it.

    Simon

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [PATCH v4] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-01 14:56         ` Thomas Hellström
  2025-08-01 15:13           ` Simon Richter
@ 2025-08-02  2:40           ` Simon Richter
  2025-08-04  9:40             ` Thomas Hellström
  1 sibling, 1 reply; 22+ messages in thread
From: Simon Richter @ 2025-08-02  2:40 UTC (permalink / raw)
  To: Thomas Hellström, intel-xe, dri-devel, linux-kernel
  Cc: Simon Richter, stable

This driver, for the time being, assumes that the kernel page size is 4kB,
so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
pages.

Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
Cc: stable@vger.kernel.org
---
 drivers/gpu/drm/xe/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
index 2bb2bc052120..714d5702dfd7 100644
--- a/drivers/gpu/drm/xe/Kconfig
+++ b/drivers/gpu/drm/xe/Kconfig
@@ -5,6 +5,7 @@ config DRM_XE
 	depends on KUNIT || !KUNIT
 	depends on INTEL_VSEC || !INTEL_VSEC
 	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)
+	depends on PAGE_SIZE_4KB || COMPILE_TEST || BROKEN
 	select INTERVAL_TREE
 	# we need shmfs for the swappable backing store, and in particular
 	# the shmem_readpage() which depends upon tmpfs
-- 
2.47.2


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

* ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (8 preceding siblings ...)
  2025-08-01 13:41 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-08-02  2:48 ` Patchwork
  2025-08-02  2:49 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-02  2:48 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
URL   : https://patchwork.freedesktop.org/series/152145/
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
c298eac5978c38dcc62a70c0d73c91765e7cc296
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 09e3618fe0906cc11d9f7ff98c37680dd8349a32
Author: Simon Richter <Simon.Richter@hogyros.de>
Date:   Sat Aug 2 11:40:36 2025 +0900

    Mark xe driver as BROKEN if kernel page size is not 4kB
    
    This driver, for the time being, assumes that the kernel page size is 4kB,
    so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with 64kB
    pages.
    
    Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
    Cc: stable@vger.kernel.org
+ /mt/dim checkpatch 1e1a350a027482a09b07628ce72a69bb7f49567f drm-intel
09e3618fe090 Mark xe driver as BROKEN if kernel page size is not 4kB
-:24: WARNING:MISSING_FIXES_TAG: The commit message has 'stable@', perhaps it also needs a 'Fixes:' tag?

total: 0 errors, 1 warnings, 0 checks, 7 lines checked



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

* ✓ CI.KUnit: success for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (9 preceding siblings ...)
  2025-08-02  2:48 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3) Patchwork
@ 2025-08-02  2:49 ` Patchwork
  2025-08-02  3:51 ` ✓ Xe.CI.BAT: " Patchwork
  2025-08-02  4:54 ` ✗ Xe.CI.Full: failure " Patchwork
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-02  2:49 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (10 preceding siblings ...)
  2025-08-02  2:49 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-02  3:51 ` Patchwork
  2025-08-02  4:54 ` ✗ Xe.CI.Full: failure " Patchwork
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-02  3:51 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
URL   : https://patchwork.freedesktop.org/series/152145/
State : success

== Summary ==

CI Bug Log - changes from xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a_BAT -> xe-pw-152145v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 7)
------------------------------

  Missing    (1): bat-adlp-vm 

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@a-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-3498-acb5c859a41719652f1807b30240ca4ee82a473a/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html

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


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

  * Linux: xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a -> xe-pw-152145v3

  IGT_8482: 8482
  xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a: acb5c859a41719652f1807b30240ca4ee82a473a
  xe-pw-152145v3: 152145v3

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
  2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
                   ` (11 preceding siblings ...)
  2025-08-02  3:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-08-02  4:54 ` Patchwork
  12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2025-08-02  4:54 UTC (permalink / raw)
  To: Simon Richter; +Cc: intel-xe

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

== Series Details ==

Series: Mark xe driver as BROKEN if kernel page size is not 4kB (rev3)
URL   : https://patchwork.freedesktop.org/series/152145/
State : failure

== Summary ==

CI Bug Log - changes from xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a_FULL -> xe-pw-152145v3_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_balancer@once-cm-parallel-userptr:
    - shard-adlp:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-6/igt@xe_exec_balancer@once-cm-parallel-userptr.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-2/igt@xe_exec_balancer@once-cm-parallel-userptr.html

  
New tests
---------

  New tests have been introduced between xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a_FULL and xe-pw-152145v3_FULL:

### New IGT tests (8) ###

  * igt@kms_async_flips@crc@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [2.30] s

  * igt@kms_async_flips@test-cursor@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.21] s

  * igt@kms_async_flips@test-time-stamp@pipe-a-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@test-time-stamp@pipe-b-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.17] s

  * igt@kms_async_flips@test-time-stamp@pipe-c-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.18] s

  * igt@kms_async_flips@test-time-stamp@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [0.18] s

  * igt@kms_plane_lowres@tiling-none@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [8.97] s

  * igt@kms_plane_lowres@tiling-x@pipe-d-dp-2:
    - Statuses : 1 pass(s)
    - Exec time: [8.94] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          [PASS][3] -> [SKIP][4] ([Intel XE#4963])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@core_hotunplug@unbind-rebind.html

  * igt@fbdev@read:
    - shard-bmg:          [PASS][5] -> [SKIP][6] ([Intel XE#2134])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@fbdev@read.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@fbdev@read.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#4947]) +7 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#787]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][12] -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][16] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][17] -> [INCOMPLETE][18] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][19] -> [INCOMPLETE][20] ([Intel XE#3124])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][21] -> [DMESG-WARN][22] ([Intel XE#1727] / [Intel XE#3113])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +22 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html

  * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#4416]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#373])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [FAIL][27] ([Intel XE#1178]) +1 other test fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][28] ([Intel XE#1188])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-434/igt@kms_content_protection@uevent@pipe-a-dp-4.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
    - shard-adlp:         [PASS][29] -> [DMESG-WARN][30] ([Intel XE#4543]) +5 other tests dmesg-warn
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-dp2:
    - shard-bmg:          [PASS][31] -> [FAIL][32] ([Intel XE#3098]) +1 other test fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-7/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-dp2.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-8/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@c-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][33] -> [FAIL][34] ([Intel XE#301]) +1 other test fail
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-dp4:
    - shard-dg2-set2:     [PASS][35] -> [INCOMPLETE][36] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2293])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#651])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#4962])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_properties@connector-properties-legacy:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#4950]) +41 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_properties@connector-properties-legacy.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         [PASS][43] -> [DMESG-WARN][44] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-8/igt@kms_vblank@ts-continuation-suspend.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-4/igt@kms_vblank@ts-continuation-suspend.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][45] -> [SKIP][46] ([Intel XE#1392]) +5 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][47] -> [DMESG-WARN][48] ([Intel XE#3868])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-9/igt@xe_exec_reset@cm-close-fd.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#4915] / [Intel XE#5560])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-6/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read.html

  * igt@xe_exec_system_allocator@threads-many-stride-free-nomemset:
    - shard-bmg:          [PASS][50] -> [SKIP][51] ([Intel XE#4945]) +200 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html

  
#### Possible fixes ####

  * igt@kms_addfb_basic@unused-modifier:
    - shard-bmg:          [SKIP][52] ([Intel XE#4950]) -> [PASS][53] +19 other tests pass
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_addfb_basic@unused-modifier.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_addfb_basic@unused-modifier.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-lnl:          [FAIL][54] ([Intel XE#1231]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-lnl-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          [SKIP][56] ([Intel XE#4947]) -> [PASS][57] +2 other tests pass
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][58] ([Intel XE#4543]) -> [PASS][59] +2 other tests pass
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][60] ([Intel XE#4459]) -> [PASS][61] +1 other test pass
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate:
    - shard-bmg:          [SKIP][62] ([Intel XE#4945]) -> [PASS][63] +104 other tests pass
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [SKIP][64] ([Intel XE#1392]) -> [PASS][65] +8 other tests pass
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-463/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  
#### Warnings ####

  * igt@kms_async_flips@invalid-async-flip:
    - shard-bmg:          [SKIP][66] ([Intel XE#4950]) -> [SKIP][67] ([Intel XE#873])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-bmg:          [SKIP][68] ([Intel XE#3768]) -> [SKIP][69] ([Intel XE#4950])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_async_flips@invalid-async-flip-atomic.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][70] ([Intel XE#4947]) -> [SKIP][71] ([Intel XE#2327]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][72] ([Intel XE#4947]) -> [SKIP][73] ([Intel XE#1124]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][74] ([Intel XE#1124]) -> [SKIP][75] ([Intel XE#4947]) +6 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][76] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][77] ([Intel XE#4950])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][78] ([Intel XE#4950]) -> [SKIP][79] ([Intel XE#2314] / [Intel XE#2894])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          [SKIP][80] ([Intel XE#4950]) -> [SKIP][81] ([Intel XE#367])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-bmg:          [SKIP][82] ([Intel XE#367]) -> [SKIP][83] ([Intel XE#4950])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          [SKIP][84] ([Intel XE#2887]) -> [SKIP][85] ([Intel XE#4947]) +8 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][86] ([Intel XE#4947]) -> [SKIP][87] ([Intel XE#2887]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][88] ([Intel XE#4947]) -> [SKIP][89] ([Intel XE#2724])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cdclk@mode-transition.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          [SKIP][90] ([Intel XE#2325]) -> [SKIP][91] ([Intel XE#4950]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          [SKIP][92] ([Intel XE#2252]) -> [SKIP][93] ([Intel XE#4950]) +4 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          [SKIP][94] ([Intel XE#4950]) -> [SKIP][95] ([Intel XE#2252]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][96] ([Intel XE#2341]) -> [SKIP][97] ([Intel XE#4950])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_content_protection@content-type-change.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][98] ([Intel XE#4950]) -> [SKIP][99] ([Intel XE#2341])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_content_protection@srm.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-bmg:          [SKIP][100] ([Intel XE#2320]) -> [SKIP][101] ([Intel XE#4950]) +3 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][102] ([Intel XE#4950]) -> [SKIP][103] ([Intel XE#2320])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-bmg:          [SKIP][104] ([Intel XE#2291]) -> [SKIP][105] ([Intel XE#4950]) +2 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][106] ([Intel XE#5428]) -> [SKIP][107] ([Intel XE#4947])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          [SKIP][108] ([Intel XE#4947]) -> [SKIP][109] ([Intel XE#2244])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_dsc@dsc-basic.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][110] ([Intel XE#2373]) -> [SKIP][111] ([Intel XE#4950])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_feature_discovery@display-3x.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][112] ([Intel XE#4950]) -> [SKIP][113] ([Intel XE#2316])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [SKIP][114] ([Intel XE#2316]) -> [SKIP][115] ([Intel XE#4950])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          [SKIP][116] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][117] ([Intel XE#4947]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][118] ([Intel XE#4947]) -> [SKIP][119] ([Intel XE#2293] / [Intel XE#2380])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][120] ([Intel XE#2312]) -> [SKIP][121] ([Intel XE#4947]) +8 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][122] ([Intel XE#4947]) -> [SKIP][123] ([Intel XE#5390]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          [SKIP][124] ([Intel XE#5390]) -> [SKIP][125] ([Intel XE#4947]) +3 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][126] ([Intel XE#4947]) -> [SKIP][127] ([Intel XE#2311]) +2 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][128] ([Intel XE#2311]) -> [SKIP][129] ([Intel XE#4947]) +10 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][130] ([Intel XE#4947]) -> [SKIP][131] ([Intel XE#2313]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          [SKIP][132] ([Intel XE#4947]) -> [SKIP][133] ([Intel XE#2352])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][134] ([Intel XE#2313]) -> [SKIP][135] ([Intel XE#4947]) +8 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][136] ([Intel XE#4947]) -> [SKIP][137] ([Intel XE#2312]) +7 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-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-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][140] ([Intel XE#4947]) -> [SKIP][141] ([Intel XE#346])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          [SKIP][142] ([Intel XE#2934]) -> [SKIP][143] ([Intel XE#4947])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_joiner@basic-force-ultra-joiner.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          [SKIP][144] ([Intel XE#2486]) -> [SKIP][145] ([Intel XE#4950])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][146] ([Intel XE#4950]) -> [SKIP][147] ([Intel XE#5020])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][148] ([Intel XE#4947]) -> [SKIP][149] ([Intel XE#2938])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][150] ([Intel XE#4947]) -> [SKIP][151] ([Intel XE#2499])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-bmg:          [SKIP][152] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][153] ([Intel XE#4962])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-bmg:          [SKIP][154] ([Intel XE#1489]) -> [SKIP][155] ([Intel XE#4947]) +3 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-bmg:          [SKIP][156] ([Intel XE#4947]) -> [SKIP][157] ([Intel XE#1489]) +2 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-bmg:          [SKIP][158] ([Intel XE#4947]) -> [SKIP][159] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-blt.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-sprite-blt:
    - shard-bmg:          [SKIP][160] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][161] ([Intel XE#4947]) +7 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_psr@fbc-psr2-sprite-blt.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_psr@fbc-psr2-sprite-blt.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][162] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][163] ([Intel XE#4950])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][164] ([Intel XE#1435]) -> [SKIP][165] ([Intel XE#4950])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#362]) -> [SKIP][167] ([Intel XE#1500])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          [SKIP][168] ([Intel XE#4950]) -> [SKIP][169] ([Intel XE#1499])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@kms_vrr@flip-basic.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          [SKIP][170] ([Intel XE#1499]) -> [SKIP][171] ([Intel XE#4950]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@kms_vrr@max-min.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@kms_vrr@max-min.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-bmg:          [SKIP][172] ([Intel XE#4945]) -> [SKIP][173] ([Intel XE#4837]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_eudebug_online@basic-breakpoint.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          [SKIP][174] ([Intel XE#4837]) -> [SKIP][175] ([Intel XE#4945]) +5 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [SKIP][176] ([Intel XE#2322]) -> [SKIP][177] ([Intel XE#4945]) +3 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
    - shard-bmg:          [SKIP][178] ([Intel XE#4945]) -> [SKIP][179] ([Intel XE#2322]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset:
    - shard-bmg:          [SKIP][180] ([Intel XE#4945]) -> [SKIP][181] ([Intel XE#4943]) +4 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
    - shard-bmg:          [SKIP][182] ([Intel XE#4943]) -> [SKIP][183] ([Intel XE#4945]) +12 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          [SKIP][184] ([Intel XE#1420]) -> [SKIP][185] ([Intel XE#4945])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-bmg:          [SKIP][186] ([Intel XE#4733]) -> [SKIP][187] ([Intel XE#4945]) +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@xe_pxp@display-black-pxp-fb.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_pxp@pxp-stale-queue-post-termination-irq:
    - shard-bmg:          [SKIP][188] ([Intel XE#4945]) -> [SKIP][189] ([Intel XE#4733])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-6/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-bmg:          [SKIP][190] ([Intel XE#944]) -> [SKIP][191] ([Intel XE#4945]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a/shard-bmg-6/igt@xe_query@multigpu-query-pxp-status.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152145v3/shard-bmg-5/igt@xe_query@multigpu-query-pxp-status.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [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#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
  [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
  [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
  [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
  [Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
  [Intel XE#5560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5560
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a -> xe-pw-152145v3

  IGT_8482: 8482
  xe-3498-acb5c859a41719652f1807b30240ca4ee82a473a: acb5c859a41719652f1807b30240ca4ee82a473a
  xe-pw-152145v3: 152145v3

== Logs ==

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

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

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

* Re: [PATCH v4] Mark xe driver as BROKEN if kernel page size is not 4kB
  2025-08-02  2:40           ` [PATCH v4] " Simon Richter
@ 2025-08-04  9:40             ` Thomas Hellström
  0 siblings, 0 replies; 22+ messages in thread
From: Thomas Hellström @ 2025-08-04  9:40 UTC (permalink / raw)
  To: Simon Richter, intel-xe, dri-devel, linux-kernel; +Cc: stable

On Sat, 2025-08-02 at 11:40 +0900, Simon Richter wrote:
> This driver, for the time being, assumes that the kernel page size is
> 4kB,
> so it fails on loong64 and aarch64 with 16kB pages, and ppc64el with
> 64kB
> pages.
> 
> Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
> Cc: stable@vger.kernel.org
> ---
>  drivers/gpu/drm/xe/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
> index 2bb2bc052120..714d5702dfd7 100644
> --- a/drivers/gpu/drm/xe/Kconfig
> +++ b/drivers/gpu/drm/xe/Kconfig
> @@ -5,6 +5,7 @@ config DRM_XE
>  	depends on KUNIT || !KUNIT
>  	depends on INTEL_VSEC || !INTEL_VSEC
>  	depends on X86_PLATFORM_DEVICES || !(X86 && ACPI)
> +	depends on PAGE_SIZE_4KB || COMPILE_TEST || BROKEN
>  	select INTERVAL_TREE
>  	# we need shmfs for the swappable backing store, and in
> particular
>  	# the shmem_readpage() which depends upon tmpfs

R-B still stands.

I've pushed this to drm-xe-next with a Fixes: tag which means it will
likely end up in Linus' tree the upcoming weekend.

Thanks,
Thomas


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

end of thread, other threads:[~2025-08-04  9:40 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-27  7:04 [PATCH v2 0/1] Mark xe driver as BROKEN if kernel page size is not 4kB Simon Richter
2025-07-27  7:04 ` [PATCH v2 1/1] " Simon Richter
2025-08-01  9:20   ` Thomas Hellström
2025-08-01 10:19     ` [PATCH v3] " Simon Richter
2025-08-01 14:39       ` Thomas Hellström
2025-08-01 14:56         ` Thomas Hellström
2025-08-01 15:13           ` Simon Richter
2025-08-02  2:40           ` [PATCH v4] " Simon Richter
2025-08-04  9:40             ` Thomas Hellström
2025-08-01 12:27     ` [PATCH v2 1/1] " Simon.Richter
2025-07-27  7:09 ` ✗ CI.checkpatch: warning for " Patchwork
2025-07-27  7:11 ` ✓ CI.KUnit: success " Patchwork
2025-07-27  7:51 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-27  8:56 ` ✓ Xe.CI.Full: " Patchwork
2025-08-01 10:56 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev2) Patchwork
2025-08-01 10:57 ` ✓ CI.KUnit: success " Patchwork
2025-08-01 12:03 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-01 13:41 ` ✓ Xe.CI.Full: " Patchwork
2025-08-02  2:48 ` ✗ CI.checkpatch: warning for Mark xe driver as BROKEN if kernel page size is not 4kB (rev3) Patchwork
2025-08-02  2:49 ` ✓ CI.KUnit: success " Patchwork
2025-08-02  3:51 ` ✓ Xe.CI.BAT: " Patchwork
2025-08-02  4:54 ` ✗ Xe.CI.Full: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.