Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/pf: fix VFIO link error
@ 2025-12-04  9:41 Arnd Bergmann
  2025-12-04  9:46 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Arnd Bergmann @ 2025-12-04  9:41 UTC (permalink / raw)
  To: Thomas Hellström, Rodrigo Vivi, David Airlie, Simona Vetter,
	Michał Winiarski, Michal Wajdeczko
  Cc: Arnd Bergmann, Matthew Brost, Lucas De Marchi, Jani Nikula,
	Riana Tauro, intel-xe, dri-devel, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

The Makefile logic for building xe_sriov_vfio.o was added incorrectly,
as setting CONFIG_XE_VFIO_PCI=m means it doesn't get included into a
built-in xe driver:

ERROR: modpost: "xe_sriov_vfio_stop_copy_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_stop_copy_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_suspend_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_wait_flr_done" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_error" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_resume_data_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_resume_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_resume_data_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_data_write" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
ERROR: modpost: "xe_sriov_vfio_migration_supported" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
WARNING: modpost: suppressed 3 unresolved symbol warnings because there were too many)

Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to decide whether to
include the the object instead.

Fixes: 17f22465c5a5 ("drm/xe/pf: Export helpers for VFIO")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/gpu/drm/xe/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index dfc2ded01455..e5f3c2ec9e9a 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -185,8 +185,8 @@ xe-$(CONFIG_PCI_IOV) += \
 	xe_sriov_pf_sysfs.o \
 	xe_tile_sriov_pf_debugfs.o
 
-ifeq ($(CONFIG_PCI_IOV),y)
-	xe-$(CONFIG_XE_VFIO_PCI) += xe_sriov_vfio.o
+ifdef CONFIG_XE_VFIO_PCI
+	xe-$(CONFIG_PCI_IOV) += xe_sriov_vfio.o
 endif
 
 # include helpers for tests even when XE is built-in
-- 
2.39.5


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

* ✗ CI.checkpatch: warning for drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
@ 2025-12-04  9:46 ` Patchwork
  2025-12-04  9:48 ` ✓ CI.KUnit: success " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-04  9:46 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe/pf: fix VFIO link error
URL   : https://patchwork.freedesktop.org/series/158478/
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
2de9a3901bc28757c7906b454717b64e2a214021
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1bc29f1fc068722f1a74c3eba2d76c187a3eced4
Author: Arnd Bergmann <arnd@arndb.de>
Date:   Thu Dec 4 10:41:36 2025 +0100

    drm/xe/pf: fix VFIO link error
    
    The Makefile logic for building xe_sriov_vfio.o was added incorrectly,
    as setting CONFIG_XE_VFIO_PCI=m means it doesn't get included into a
    built-in xe driver:
    
    ERROR: modpost: "xe_sriov_vfio_stop_copy_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_stop_copy_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_suspend_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_wait_flr_done" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_error" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_resume_data_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_resume_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_resume_data_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_data_write" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    ERROR: modpost: "xe_sriov_vfio_migration_supported" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
    WARNING: modpost: suppressed 3 unresolved symbol warnings because there were too many)
    
    Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to decide whether to
    include the the object instead.
    
    Fixes: 17f22465c5a5 ("drm/xe/pf: Export helpers for VFIO")
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
+ /mt/dim checkpatch 2d16d4e1aef3cb501fcd37c8558dafeb579be813 drm-intel
1bc29f1fc068 drm/xe/pf: fix VFIO link error
-:10: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#10: 
ERROR: modpost: "xe_sriov_vfio_stop_copy_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!

-:23: WARNING:REPEATED_WORD: Possible repeated word: 'the'
#23: 
include the the object instead.

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



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

* ✓ CI.KUnit: success for drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
  2025-12-04  9:46 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-12-04  9:48 ` Patchwork
  2025-12-04 11:08 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-04  9:48 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe/pf: fix VFIO link error
URL   : https://patchwork.freedesktop.org/series/158478/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
  2025-12-04  9:46 ` ✗ CI.checkpatch: warning for " Patchwork
  2025-12-04  9:48 ` ✓ CI.KUnit: success " Patchwork
@ 2025-12-04 11:08 ` Patchwork
  2025-12-04 12:10 ` [PATCH] " Michal Wajdeczko
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-04 11:08 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pf: fix VFIO link error
URL   : https://patchwork.freedesktop.org/series/158478/
State : success

== Summary ==

CI Bug Log - changes from xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813_BAT -> xe-pw-158478v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-158478v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] ([Intel XE#6520])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * IGT: IGT_8653 -> IGT_8654
  * Linux: xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813 -> xe-pw-158478v1

  IGT_8653: c13e142a52b1654cbfb42b80985d6da656033ff4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8654: 38d9fde0432aa6f2bf6add062f1d4334ad467fbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813: 2d16d4e1aef3cb501fcd37c8558dafeb579be813
  xe-pw-158478v1: 158478v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
                   ` (2 preceding siblings ...)
  2025-12-04 11:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-04 12:10 ` Michal Wajdeczko
  2025-12-04 12:19 ` Thomas Hellström
  2025-12-04 12:22 ` ✓ Xe.CI.Full: success for " Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Michal Wajdeczko @ 2025-12-04 12:10 UTC (permalink / raw)
  To: Arnd Bergmann, Thomas Hellström, Rodrigo Vivi, David Airlie,
	Simona Vetter, Michał Winiarski
  Cc: Arnd Bergmann, Matthew Brost, Lucas De Marchi, Jani Nikula,
	Riana Tauro, intel-xe, dri-devel, linux-kernel



On 12/4/2025 10:41 AM, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> The Makefile logic for building xe_sriov_vfio.o was added incorrectly,
> as setting CONFIG_XE_VFIO_PCI=m means it doesn't get included into a
> built-in xe driver:
> 
> ERROR: modpost: "xe_sriov_vfio_stop_copy_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_stop_copy_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_suspend_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_wait_flr_done" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_error" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_data_enter" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_device" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_data_exit" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_data_write" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_migration_supported" [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> WARNING: modpost: suppressed 3 unresolved symbol warnings because there were too many)
> 
> Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to decide whether to
> include the the object instead.
> 
> Fixes: 17f22465c5a5 ("drm/xe/pf: Export helpers for VFIO")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>

> ---
>  drivers/gpu/drm/xe/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index dfc2ded01455..e5f3c2ec9e9a 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -185,8 +185,8 @@ xe-$(CONFIG_PCI_IOV) += \
>  	xe_sriov_pf_sysfs.o \
>  	xe_tile_sriov_pf_debugfs.o
>  
> -ifeq ($(CONFIG_PCI_IOV),y)
> -	xe-$(CONFIG_XE_VFIO_PCI) += xe_sriov_vfio.o
> +ifdef CONFIG_XE_VFIO_PCI
> +	xe-$(CONFIG_PCI_IOV) += xe_sriov_vfio.o
>  endif
>  
>  # include helpers for tests even when XE is built-in


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

* Re: [PATCH] drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
                   ` (3 preceding siblings ...)
  2025-12-04 12:10 ` [PATCH] " Michal Wajdeczko
@ 2025-12-04 12:19 ` Thomas Hellström
  2025-12-04 13:43   ` Arnd Bergmann
  2025-12-04 12:22 ` ✓ Xe.CI.Full: success for " Patchwork
  5 siblings, 1 reply; 9+ messages in thread
From: Thomas Hellström @ 2025-12-04 12:19 UTC (permalink / raw)
  To: Arnd Bergmann, Rodrigo Vivi, David Airlie, Simona Vetter,
	Michał Winiarski, Michal Wajdeczko
  Cc: Arnd Bergmann, Matthew Brost, Lucas De Marchi, Jani Nikula,
	Riana Tauro, intel-xe, dri-devel, linux-kernel

On Thu, 2025-12-04 at 10:41 +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> The Makefile logic for building xe_sriov_vfio.o was added
> incorrectly,
> as setting CONFIG_XE_VFIO_PCI=m means it doesn't get included into a
> built-in xe driver:
> 
> ERROR: modpost: "xe_sriov_vfio_stop_copy_enter"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_stop_copy_exit"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_suspend_device"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_wait_flr_done"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_error" [drivers/vfio/pci/xe/xe-vfio-
> pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_data_enter"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_device"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_resume_data_exit"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_data_write" [drivers/vfio/pci/xe/xe-
> vfio-pci.ko] undefined!
> ERROR: modpost: "xe_sriov_vfio_migration_supported"
> [drivers/vfio/pci/xe/xe-vfio-pci.ko] undefined!
> WARNING: modpost: suppressed 3 unresolved symbol warnings because
> there were too many)
> 
> Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to decide
> whether to
> include the the object instead.

s/the the/the/ found by CI.
Same question here, Do you want to resent or should I fix up when
commiting?

Thanks,
Thomas


> 
> Fixes: 17f22465c5a5 ("drm/xe/pf: Export helpers for VFIO")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
>  drivers/gpu/drm/xe/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/Makefile
> b/drivers/gpu/drm/xe/Makefile
> index dfc2ded01455..e5f3c2ec9e9a 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -185,8 +185,8 @@ xe-$(CONFIG_PCI_IOV) += \
>  	xe_sriov_pf_sysfs.o \
>  	xe_tile_sriov_pf_debugfs.o
>  
> -ifeq ($(CONFIG_PCI_IOV),y)
> -	xe-$(CONFIG_XE_VFIO_PCI) += xe_sriov_vfio.o
> +ifdef CONFIG_XE_VFIO_PCI
> +	xe-$(CONFIG_PCI_IOV) += xe_sriov_vfio.o
>  endif
>  
>  # include helpers for tests even when XE is built-in


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

* ✓ Xe.CI.Full: success for drm/xe/pf: fix VFIO link error
  2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
                   ` (4 preceding siblings ...)
  2025-12-04 12:19 ` Thomas Hellström
@ 2025-12-04 12:22 ` Patchwork
  5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-04 12:22 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pf: fix VFIO link error
URL   : https://patchwork.freedesktop.org/series/158478/
State : success

== Summary ==

CI Bug Log - changes from xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813_FULL -> xe-pw-158478v1_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-158478v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-lnl:          NOTRUN -> [SKIP][1] ([Intel XE#1125])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@intel_hwmon@hwmon-write.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-adlp:         NOTRUN -> [SKIP][2] ([Intel XE#3157])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_async_flips@async-flip-dpms:
    - shard-lnl:          NOTRUN -> [FAIL][3] ([Intel XE#6676]) +2 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_async_flips@async-flip-dpms.html

  * igt@kms_async_flips@invalid-async-flip@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][4] ([Intel XE#6678]) +5 other tests fail
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_async_flips@invalid-async-flip@pipe-b-edp-1.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#664])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [PASS][6] -> [FAIL][7] ([Intel XE#3908]) +1 other test fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#1407]) +7 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#3658]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#316]) +6 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2327]) +4 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [FAIL][12] ([Intel XE#1874]) +1 other test fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

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

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +16 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2328])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#619])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-adlp:         [PASS][17] -> [FAIL][18] ([Intel XE#1231] / [Intel XE#6699])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][19] ([Intel XE#1231] / [Intel XE#6699]) +1 other test fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

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

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#1124]) +12 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#1467]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][24] ([Intel XE#607])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#607])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#607])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#1477])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][28] ([Intel XE#2191]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#2191])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#1512]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#367]) +6 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#367]) +6 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#367]) +5 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#367]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +53 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#2907]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#2907])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#2669]) +7 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][41] ([Intel XE#787]) +80 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#2887]) +21 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#3432]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#3432]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2887]) +19 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][46] ([Intel XE#787]) +104 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html

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

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-adlp:         NOTRUN -> [SKIP][49] ([Intel XE#4418])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2724]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#4418])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#4418])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_cdclk@mode-transition-all-outputs.html

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

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#4417]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#306]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2325]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_chamelium_color@degamma.html
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#306]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_chamelium_color@degamma.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#306]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#373]) +18 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2252]) +16 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#373]) +13 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#373]) +20 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_colorop@plane-xr24-xr24-bt2020_oetf:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#6704]) +14 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html

  * igt@kms_colorop@plane-xr24-xr24-multiply_125:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#6704]) +23 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_colorop@plane-xr24-xr24-multiply_125.html

  * igt@kms_colorop@plane-xr24-xr24-pq_125_eotf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#6704]) +14 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_colorop@plane-xr24-xr24-pq_125_eotf.html

  * igt@kms_colorop@plane-xr30-xr30-pq_eotf:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#6704]) +14 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_colorop@plane-xr30-xr30-pq_eotf.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2390])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html
    - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#307])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_content_protection@dp-mst-type-1.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#307])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#307])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][71] ([Intel XE#1178]) +5 other tests fail
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][72] ([Intel XE#3304])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html

  * igt@kms_content_protection@lic-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#3278]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@srm@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][74] ([Intel XE#1178]) +4 other tests fail
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2320]) +8 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#2321]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#2321]) +4 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#308])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html
    - shard-adlp:         NOTRUN -> [SKIP][79] ([Intel XE#308]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#1424]) +8 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#309]) +4 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#309]) +3 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#1508])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#1508])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_aux_dev:
    - shard-adlp:         NOTRUN -> [SKIP][85] ([Intel XE#3009])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#4354])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#4354])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#4354]) +2 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html
    - shard-adlp:         NOTRUN -> [SKIP][89] ([Intel XE#4356])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_dp_link_training@uhbr-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#4354])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_dp_link_training@uhbr-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#4356])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#4294])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_feature_discovery@display-2x:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#702])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#703])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_feature_discovery@display-3x.html
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#703])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#2373])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#703])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#1138])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#1137])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_feature_discovery@dp-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2375])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#1137])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
    - shard-lnl:          NOTRUN -> [SKIP][103] ([Intel XE#1137])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][104] -> [FAIL][105] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#1421]) +11 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-plain-flip:
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#310]) +9 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][108] -> [FAIL][109] ([Intel XE#301]) +1 other test fail
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2380]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#1397]) +2 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#1401] / [Intel XE#1745]) +8 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#1401]) +8 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

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

  * igt@kms_force_connector_basic@force-edid:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#352])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_force_connector_basic@force-edid.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][118] ([Intel XE#6312]) +7 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#651]) +20 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][120] ([Intel XE#656]) +72 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2311]) +44 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [FAIL][122] ([Intel XE#5671]) +1 other test fail
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#656]) +73 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][124] ([Intel XE#4141]) +17 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#1469])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][126] ([Intel XE#6312]) +4 other tests skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][127] ([Intel XE#651]) +19 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][129] ([Intel XE#653]) +37 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
    - shard-adlp:         NOTRUN -> [SKIP][130] ([Intel XE#1151])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][131] ([Intel XE#6312]) +5 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][132] ([Intel XE#653]) +21 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][133] ([Intel XE#2313]) +41 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#1470])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#3374] / [Intel XE#3544])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-bmg:          NOTRUN -> [SKIP][136] ([Intel XE#3374] / [Intel XE#3544])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][137] ([Intel XE#1503]) +1 other test skip
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][138] ([Intel XE#1450]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][140] ([Intel XE#2925] / [Intel XE#2927])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][141] ([Intel XE#2925] / [Intel XE#3012]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][142] ([Intel XE#2934] / [Intel XE#6590])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#2925])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#2925])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-adlp:         NOTRUN -> [SKIP][145] ([Intel XE#356])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#2501])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][147] ([Intel XE#356])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-lnl:          NOTRUN -> [SKIP][148] ([Intel XE#356])
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          NOTRUN -> [SKIP][149] ([Intel XE#2486])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [FAIL][150] ([Intel XE#5195]) +2 other tests fail
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html

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

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][152] ([Intel XE#599]) +4 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][153] ([Intel XE#2393])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2-set2:     NOTRUN -> [SKIP][154] ([Intel XE#5021])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-adlp:         NOTRUN -> [SKIP][155] ([Intel XE#5020]) +1 other test skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          NOTRUN -> [SKIP][156] ([Intel XE#5020])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#5020])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
    - shard-lnl:          NOTRUN -> [SKIP][158] ([Intel XE#5020])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html

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

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][160] ([Intel XE#5825]) +7 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#870])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
    - shard-adlp:         NOTRUN -> [SKIP][162] ([Intel XE#870])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_pm_backlight@bad-brightness.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#870])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-lnl:          [PASS][164] -> [ABORT][165] ([Intel XE#6675]) +1 other test abort
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@kms_pm_backlight@fade-with-suspend.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          NOTRUN -> [FAIL][166] ([Intel XE#718])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-adlp:         NOTRUN -> [SKIP][167] ([Intel XE#1129])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][168] ([Intel XE#2007])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_pm_dc@deep-pkgc.html
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#2505])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_pm_dc@deep-pkgc.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#908])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
    - shard-lnl:          NOTRUN -> [FAIL][171] ([Intel XE#2029])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][172] ([Intel XE#836])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-lnl:          NOTRUN -> [SKIP][173] ([Intel XE#1439] / [Intel XE#3141])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][174] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][175] ([Intel XE#1406] / [Intel XE#1489]) +14 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

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

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][178] ([Intel XE#1406] / [Intel XE#4608]) +9 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1406] / [Intel XE#2893]) +5 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][180] ([Intel XE#1406] / [Intel XE#1489]) +16 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][182] ([Intel XE#1406]) +8 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-primary-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][183] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html

  * igt@kms_psr@psr-basic:
    - shard-adlp:         NOTRUN -> [SKIP][184] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +23 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_psr@psr-basic.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][185] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +19 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr@psr2-suspend@edp-1:
    - shard-lnl:          NOTRUN -> [ABORT][186] ([Intel XE#2625] / [Intel XE#6675]) +3 other tests abort
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_psr@psr2-suspend@edp-1.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][187] ([Intel XE#1406] / [Intel XE#2414])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-adlp:         NOTRUN -> [SKIP][188] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][189] ([Intel XE#1406] / [Intel XE#2939])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][190] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][191] ([Intel XE#3414] / [Intel XE#3904])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [FAIL][192] ([Intel XE#4689])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][194] ([Intel XE#1127])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][195] ([Intel XE#1127])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
    - shard-lnl:          NOTRUN -> [SKIP][196] ([Intel XE#1127])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][197] ([Intel XE#3414])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

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

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][199] ([Intel XE#1435])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_sharpness_filter@filter-modifiers:
    - shard-bmg:          NOTRUN -> [SKIP][200] ([Intel XE#6503]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_sharpness_filter@filter-modifiers.html

  * igt@kms_sharpness_filter@filter-strength:
    - shard-adlp:         NOTRUN -> [SKIP][201] ([Intel XE#455]) +46 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@kms_sharpness_filter@filter-strength.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#330])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
    - shard-lnl:          NOTRUN -> [SKIP][203] ([Intel XE#330])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html
    - shard-adlp:         NOTRUN -> [SKIP][204] ([Intel XE#330])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@cmrr:
    - shard-adlp:         NOTRUN -> [SKIP][205] ([Intel XE#2168])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_vrr@cmrr.html
    - shard-bmg:          NOTRUN -> [SKIP][206] ([Intel XE#2168])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@kms_vrr@cmrr.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][207] ([Intel XE#2168])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][208] ([Intel XE#4459]) +1 other test fail
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     NOTRUN -> [SKIP][209] ([Intel XE#455]) +26 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@kms_vrr@flipline.html
    - shard-bmg:          NOTRUN -> [SKIP][210] ([Intel XE#1499])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_vrr@flipline.html

  * igt@kms_vrr@negative-basic:
    - shard-lnl:          NOTRUN -> [SKIP][211] ([Intel XE#1499]) +1 other test skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@kms_vrr@negative-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][212] ([Intel XE#1091] / [Intel XE#2849])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
    - shard-lnl:          NOTRUN -> [SKIP][213] ([Intel XE#1091] / [Intel XE#2849])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@testdisplay:
    - shard-bmg:          NOTRUN -> [ABORT][214] ([Intel XE#6740])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@testdisplay.html

  * igt@xe_ccs@ctrl-surf-copy:
    - shard-adlp:         NOTRUN -> [SKIP][215] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_ccs@ctrl-surf-copy.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-adlp:         NOTRUN -> [SKIP][216] ([Intel XE#6599])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-adlp:         NOTRUN -> [SKIP][217] ([Intel XE#6360]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][218] ([Intel XE#6360]) +3 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_compute_preempt@compute-preempt-many-vram:
    - shard-adlp:         NOTRUN -> [SKIP][219] ([Intel XE#5191]) +1 other test skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@xe_compute_preempt@compute-preempt-many-vram.html
    - shard-lnl:          NOTRUN -> [SKIP][220] ([Intel XE#5191])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_compute_preempt@compute-preempt-many-vram.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
    - shard-bmg:          [PASS][221] -> [ABORT][222] ([Intel XE#3970]) +1 other test abort
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

  * igt@xe_configfs@survivability-mode:
    - shard-lnl:          NOTRUN -> [SKIP][223] ([Intel XE#6010])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-copy-linear-0x369:
    - shard-adlp:         NOTRUN -> [SKIP][224] ([Intel XE#1123]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_copy_basic@mem-copy-linear-0x369.html

  * igt@xe_create@create-big-vram:
    - shard-adlp:         NOTRUN -> [SKIP][225] ([Intel XE#1062])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_create@create-big-vram.html
    - shard-lnl:          NOTRUN -> [SKIP][226] ([Intel XE#1062])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_create@create-big-vram.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][227] ([Intel XE#2504])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][228] ([Intel XE#5626]) +1 other test skip
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_eu_stall@blocking-re-enable.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][229] ([Intel XE#5626])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eudebug@basic-client:
    - shard-lnl:          NOTRUN -> [SKIP][230] ([Intel XE#4837]) +13 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_eudebug@basic-client.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-dg2-set2:     NOTRUN -> [SKIP][231] ([Intel XE#4837]) +11 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_eudebug@discovery-empty:
    - shard-adlp:         NOTRUN -> [SKIP][232] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_eudebug@discovery-empty.html
    - shard-bmg:          NOTRUN -> [SKIP][233] ([Intel XE#4837]) +12 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug_online@interrupt-all-set-breakpoint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][234] ([Intel XE#4837] / [Intel XE#6665]) +7 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
    - shard-lnl:          NOTRUN -> [SKIP][235] ([Intel XE#4837] / [Intel XE#6665]) +8 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          NOTRUN -> [SKIP][236] ([Intel XE#4837] / [Intel XE#6665]) +6 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-adlp:         NOTRUN -> [SKIP][237] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665]) +8 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_evict@evict-beng-large-external:
    - shard-adlp:         NOTRUN -> [SKIP][238] ([Intel XE#261] / [Intel XE#5564])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_evict@evict-beng-large-external.html

  * igt@xe_evict@evict-beng-mixed-threads-large:
    - shard-adlp:         NOTRUN -> [SKIP][239] ([Intel XE#261]) +8 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_evict@evict-beng-mixed-threads-large.html

  * igt@xe_evict@evict-beng-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][240] ([Intel XE#688]) +17 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_evict@evict-beng-threads-large-multi-vm.html

  * igt@xe_evict@evict-small-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][241] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +4 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
    - shard-adlp:         NOTRUN -> [SKIP][242] ([Intel XE#688]) +3 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-adlp:         NOTRUN -> [SKIP][243] ([Intel XE#1392] / [Intel XE#5575]) +12 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][244] ([Intel XE#1392]) +9 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][245] ([Intel XE#2322]) +14 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
    - shard-adlp:         NOTRUN -> [SKIP][246] ([Intel XE#288] / [Intel XE#5561]) +42 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html

  * igt@xe_exec_fault_mode@once-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][247] ([Intel XE#288]) +30 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-adlp:         NOTRUN -> [SKIP][248] ([Intel XE#2360]) +1 other test skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

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

  * igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][250] ([Intel XE#5007]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][251] ([Intel XE#5007]) +2 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

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

  * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge:
    - shard-dg2-set2:     NOTRUN -> [SKIP][253] ([Intel XE#4915]) +400 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-malloc-prefetch-madvise:
    - shard-lnl:          NOTRUN -> [WARN][254] ([Intel XE#5786]) +8 other tests warn
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_exec_system_allocator@many-malloc-prefetch-madvise.html

  * igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
    - shard-bmg:          [PASS][255] -> [WARN][256] ([Intel XE#5786])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
    - shard-lnl:          NOTRUN -> [SKIP][257] ([Intel XE#4943]) +51 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html

  * igt@xe_exec_system_allocator@twice-large-new-race:
    - shard-adlp:         NOTRUN -> [SKIP][258] ([Intel XE#4915]) +537 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_exec_system_allocator@twice-large-new-race.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     NOTRUN -> [ABORT][259] ([Intel XE#5466])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-lnl:          NOTRUN -> [ABORT][260] ([Intel XE#5466])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-adlp:         NOTRUN -> [ABORT][261] ([Intel XE#5466] / [Intel XE#5530])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          NOTRUN -> [ABORT][262] ([Intel XE#5466] / [Intel XE#5530])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/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-lnl:          NOTRUN -> [ABORT][263] ([Intel XE#4757])
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][264] ([Intel XE#2229])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_mmap@pci-membarrier:
    - shard-lnl:          NOTRUN -> [SKIP][265] ([Intel XE#5100]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_mmap@pci-membarrier.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-adlp:         NOTRUN -> [SKIP][266] ([Intel XE#5100]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_oa@buffer-fill:
    - shard-adlp:         NOTRUN -> [SKIP][267] ([Intel XE#3573]) +13 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_oa@buffer-fill.html

  * igt@xe_oa@non-zero-reason-all:
    - shard-dg2-set2:     NOTRUN -> [SKIP][268] ([Intel XE#6377])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_oa@non-zero-reason-all.html

  * igt@xe_oa@whitelisted-registers-userspace-config:
    - shard-dg2-set2:     NOTRUN -> [SKIP][269] ([Intel XE#3573]) +7 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_oa@whitelisted-registers-userspace-config.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][270] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
    - shard-lnl:          NOTRUN -> [SKIP][271] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-mocs:
    - shard-adlp:         NOTRUN -> [SKIP][272] ([Intel XE#2284])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_pm@d3cold-mocs.html
    - shard-bmg:          NOTRUN -> [SKIP][273] ([Intel XE#2284]) +2 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_pm@d3cold-mocs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][274] ([Intel XE#2284])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][275] ([Intel XE#5742])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][276] ([Intel XE#5742])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_pm@d3hot-i2c.html
    - shard-adlp:         NOTRUN -> [SKIP][277] ([Intel XE#5742])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          NOTRUN -> [SKIP][278] ([Intel XE#5742])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         [PASS][279] -> [ABORT][280] ([Intel XE#6675]) +1 other test abort
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][281] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][282] ([Intel XE#584]) +3 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-dg2-set2:     [PASS][283] -> [ABORT][284] ([Intel XE#6675]) +1 other test abort
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pm@s3-vm-bind-unbind-all:
    - shard-dg2-set2:     NOTRUN -> [ABORT][285] ([Intel XE#6675]) +9 other tests abort
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-lnl:          NOTRUN -> [ABORT][286] ([Intel XE#6675]) +8 other tests abort
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-adlp:         NOTRUN -> [ABORT][287] ([Intel XE#6675]) +8 other tests abort
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_pm@s4-vm-bind-unbind-all.html
    - shard-bmg:          NOTRUN -> [ABORT][288] ([Intel XE#6675]) +7 other tests abort
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][289] ([Intel XE#4650]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pmu@engine-activity-accuracy-90:
    - shard-lnl:          NOTRUN -> [FAIL][290] ([Intel XE#6251]) +2 other tests fail
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-lnl:          NOTRUN -> [SKIP][291] ([Intel XE#4650]) +1 other test skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pmu@gt-c6-idle:
    - shard-dg2-set2:     NOTRUN -> [FAIL][292] ([Intel XE#6366])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_pmu@gt-c6-idle.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][293] ([Intel XE#4733]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][294] ([Intel XE#4733] / [Intel XE#5594]) +2 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][295] ([Intel XE#4733])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          NOTRUN -> [SKIP][296] ([Intel XE#944]) +4 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html
    - shard-adlp:         NOTRUN -> [SKIP][297] ([Intel XE#944]) +5 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][298] ([Intel XE#944]) +4 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][299] ([Intel XE#944]) +4 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-adlp:         NOTRUN -> [SKIP][300] ([Intel XE#4814] / [Intel XE#5614])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_render_copy@render-stress-0-copies.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][301] ([Intel XE#4814])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html

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

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-lnl:          NOTRUN -> [SKIP][304] ([Intel XE#4130]) +2 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@fair-allocation.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][305] ([Intel XE#4130]) +1 other test skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][306] ([Intel XE#3342])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_sriov_flr@flr-each-isolation.html
    - shard-lnl:          NOTRUN -> [SKIP][307] ([Intel XE#3342])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][308] ([Intel XE#4273])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html
    - shard-lnl:          NOTRUN -> [SKIP][309] ([Intel XE#4273])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-adlp:         NOTRUN -> [SKIP][310] ([Intel XE#6376])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_sriov_vram@vf-access-beyond.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-adlp:         [PASS][311] -> [DMESG-WARN][312] ([Intel XE#2953] / [Intel XE#4173])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][313] ([Intel XE#6054]) -> [PASS][314]
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [FAIL][315] ([Intel XE#3884]) -> [PASS][316] +3 other tests pass
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [FAIL][317] ([Intel XE#1231] / [Intel XE#6699]) -> [PASS][318] +1 other test pass
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-0:
    - shard-adlp:         [FAIL][319] ([Intel XE#1874]) -> [PASS][320]
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          [ABORT][321] ([Intel XE#6740]) -> [PASS][322] +1 other test pass
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [FAIL][323] ([Intel XE#5099]) -> [PASS][324]
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@kms_pm_rpm@i2c.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@kms_pm_rpm@i2c.html

  * igt@kms_setmode@basic:
    - shard-adlp:         [FAIL][325] ([Intel XE#6361]) -> [PASS][326] +2 other tests pass
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@kms_setmode@basic.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][327] ([Intel XE#6361]) -> [PASS][328] +3 other tests pass
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][329], [SKIP][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354]) ([Intel XE#378]) -> ([PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379])
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-8/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-3/igt@xe_module_load@load.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-5/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-3/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-5/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-4/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-2/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [SKIP][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405]) ([Intel XE#2457]) -> ([PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429])
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-2/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-3/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-6/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-4/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-1/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-8/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-2/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-5/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-3/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_module_load@load.html
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_module_load@load.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-5/igt@xe_module_load@load.html
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-6/igt@xe_module_load@load.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@xe_module_load@load.html
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@xe_module_load@load.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@xe_module_load@load.html
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_module_load@load.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_module_load@load.html
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@xe_module_load@load.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-4/igt@xe_module_load@load.html
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-7/igt@xe_module_load@load.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-8/igt@xe_module_load@load.html
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-1/igt@xe_module_load@load.html
    - shard-adlp:         ([PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [SKIP][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][456], [PASS][457], [PASS][458], [PASS][459], [PASS][460], [PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479])
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-1/igt@xe_module_load@load.html
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-8/igt@xe_module_load@load.html
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_module_load@load.html
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-6/igt@xe_module_load@load.html
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-3/igt@xe_module_load@load.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-9/igt@xe_module_load@load.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_module_load@load.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_module_load@load.html
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_module_load@load.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_module_load@load.html
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_module_load@load.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_module_load@load.html
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_module_load@load.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_module_load@load.html
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_module_load@load.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@xe_module_load@load.html
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@xe_module_load@load.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_module_load@load.html
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_module_load@load.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-4/igt@xe_module_load@load.html
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_module_load@load.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_module_load@load.html
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-9/igt@xe_module_load@load.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_module_load@load.html
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-1/igt@xe_module_load@load.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_module_load@load.html
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_module_load@load.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_module_load@load.html
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_module_load@load.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-8/igt@xe_module_load@load.html
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-2/igt@xe_module_load@load.html
    - shard-dg2-set2:     ([PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501], [SKIP][502], [PASS][503], [PASS][504], [PASS][505]) ([Intel XE#378]) -> ([PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527], [PASS][528], [PASS][529], [PASS][530])
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_module_load@load.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-434/igt@xe_module_load@load.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-463/igt@xe_module_load@load.html
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-432/igt@xe_module_load@load.html
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-433/igt@xe_module_load@load.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-435/igt@xe_module_load@load.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_module_load@load.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@xe_module_load@load.html
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_module_load@load.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_module_load@load.html
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_module_load@load.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_module_load@load.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_module_load@load.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@xe_module_load@load.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@xe_module_load@load.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_module_load@load.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-432/igt@xe_module_load@load.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_module_load@load.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_module_load@load.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_module_load@load.html
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_module_load@load.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_module_load@load.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_module_load@load.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_module_load@load.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_module_load@load.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@xe_module_load@load.html
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-436/igt@xe_module_load@load.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_module_load@load.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-433/igt@xe_module_load@load.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-463/igt@xe_module_load@load.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_module_load@load.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-435/igt@xe_module_load@load.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-dg2-set2:     [ABORT][531] ([Intel XE#6675]) -> [PASS][532]
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-adlp:         [ABORT][533] ([Intel XE#6675]) -> [PASS][534] +1 other test pass
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-2/igt@xe_pm@s3-multiple-execs.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-6/igt@xe_pm@s3-multiple-execs.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-lnl:          [ABORT][535] ([Intel XE#6675]) -> [PASS][536]
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
    - shard-lnl:          [FAIL][537] ([Intel XE#6054] / [Intel XE#6676]) -> [FAIL][538] ([Intel XE#6676])
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          [SKIP][539] ([Intel XE#4837]) -> [SKIP][540] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint.html
    - shard-lnl:          [SKIP][541] ([Intel XE#4837]) -> [SKIP][542] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-lnl-4/igt@xe_eudebug_online@set-breakpoint.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-lnl-8/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-adlp:         [SKIP][543] ([Intel XE#4837] / [Intel XE#5565]) -> [SKIP][544] ([Intel XE#4837] / [Intel XE#5565] / [Intel XE#6665]) +7 other tests skip
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-adlp-4/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-adlp-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
    - shard-dg2-set2:     [SKIP][545] ([Intel XE#4837]) -> [SKIP][546] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813/shard-dg2-436/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158478v1/shard-dg2-464/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

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

  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [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#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [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#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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [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#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [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#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [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#5099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5099
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [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#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
  [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
  [Intel XE#6678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6678
  [Intel XE#6699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6699
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6775
  [Intel XE#6778]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6778
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [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
-------------

  * IGT: IGT_8653 -> IGT_8654
  * Linux: xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813 -> xe-pw-158478v1

  IGT_8653: c13e142a52b1654cbfb42b80985d6da656033ff4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8654: 38d9fde0432aa6f2bf6add062f1d4334ad467fbc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4193-2d16d4e1aef3cb501fcd37c8558dafeb579be813: 2d16d4e1aef3cb501fcd37c8558dafeb579be813
  xe-pw-158478v1: 158478v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/pf: fix VFIO link error
  2025-12-04 12:19 ` Thomas Hellström
@ 2025-12-04 13:43   ` Arnd Bergmann
  2025-12-04 13:44     ` Thomas Hellström
  0 siblings, 1 reply; 9+ messages in thread
From: Arnd Bergmann @ 2025-12-04 13:43 UTC (permalink / raw)
  To: Thomas Hellström, Arnd Bergmann, Rodrigo Vivi, Dave Airlie,
	Simona Vetter, Michał Winiarski, Michal Wajdeczko
  Cc: Matthew Brost, Lucas De Marchi, Jani Nikula, Riana Tauro,
	intel-xe, dri-devel, linux-kernel

On Thu, Dec 4, 2025, at 13:19, Thomas Hellström wrote:
> On Thu, 2025-12-04 at 10:41 +0100, Arnd Bergmann wrote:
>> 
>> Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to decide
>> whether to
>> include the the object instead.
>
> s/the the/the/ found by CI.
> Same question here, Do you want to resent or should I fix up when
> commiting?
>

I'd prefer if you can fix up both so I don't have to send it again.

     Arnd

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

* Re: [PATCH] drm/xe/pf: fix VFIO link error
  2025-12-04 13:43   ` Arnd Bergmann
@ 2025-12-04 13:44     ` Thomas Hellström
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Hellström @ 2025-12-04 13:44 UTC (permalink / raw)
  To: Arnd Bergmann, Arnd Bergmann, Rodrigo Vivi, Dave Airlie,
	Simona Vetter, Michał Winiarski, Michal Wajdeczko
  Cc: Matthew Brost, Lucas De Marchi, Jani Nikula, Riana Tauro,
	intel-xe, dri-devel, linux-kernel

On Thu, 2025-12-04 at 14:43 +0100, Arnd Bergmann wrote:
> On Thu, Dec 4, 2025, at 13:19, Thomas Hellström wrote:
> > On Thu, 2025-12-04 at 10:41 +0100, Arnd Bergmann wrote:
> > > 
> > > Check for CONFIG_XE_VFIO_PCI being enabled in the Makefile to
> > > decide
> > > whether to
> > > include the the object instead.
> > 
> > s/the the/the/ found by CI.
> > Same question here, Do you want to resent or should I fix up when
> > commiting?
> > 
> 
> I'd prefer if you can fix up both so I don't have to send it again.
> 
>      Arnd

OK, I will.
Thanks,
Thomas



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

end of thread, other threads:[~2025-12-04 13:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-04  9:41 [PATCH] drm/xe/pf: fix VFIO link error Arnd Bergmann
2025-12-04  9:46 ` ✗ CI.checkpatch: warning for " Patchwork
2025-12-04  9:48 ` ✓ CI.KUnit: success " Patchwork
2025-12-04 11:08 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-04 12:10 ` [PATCH] " Michal Wajdeczko
2025-12-04 12:19 ` Thomas Hellström
2025-12-04 13:43   ` Arnd Bergmann
2025-12-04 13:44     ` Thomas Hellström
2025-12-04 12:22 ` ✓ Xe.CI.Full: success for " Patchwork

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