Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init
@ 2025-09-10 18:32 Zongyao Bai
  2025-09-10 18:38 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2) Patchwork
                   ` (9 more replies)
  0 siblings, 10 replies; 19+ messages in thread
From: Zongyao Bai @ 2025-09-10 18:32 UTC (permalink / raw)
  To: intel-xe; +Cc: Zongyao Bai, Stuart Summers, Shuicheng Lin, Lucas De Marchi

xe_device_sysfs_fini(): switch the order of late_bind_remove_files
and sysfs_remove_files to follow the rule that files create latest
deleted first.(LIFO)

xe_device_sysfs_init(): on partial failure, any sysfs files created
before the failure will be cleaned up via xe_device_sysfs_fini,
ensuring no leaked sysfs entries
Add function description comments for xe_device_sysfs_init().

v2:
- Refine code using "goto cleanup" to reduced code duplication and
  improve clarity and scalability. (Stuart)

- Change remove order in late_bind_remove_files(). (Stuart)

- In xe_device_sysfs_fini() and late_bind_remove_files(), cancle the
  capable, platform and pcode/runtime check. And just remove in reverse
  order of creation(LIFO). sysfs_remove_file is safe even the attribute
  doesn't exist, so it avoids extra overhead or error paths during cleanup.

Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
Fixes: cdc36b66cd41 (drm/xe: Expose fan control and voltage regulator version)
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
 drivers/gpu/drm/xe/xe_device_sysfs.c | 61 +++++++++++++++-------------
 1 file changed, 33 insertions(+), 28 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
index 6ee422594b56..44ee008ea3ce 100644
--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
@@ -184,25 +184,13 @@ static int late_bind_create_files(struct device *dev)
 
 static void late_bind_remove_files(struct device *dev)
 {
-	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
-	struct xe_tile *root = xe_device_get_root_tile(xe);
-	u32 cap = 0;
-	int ret;
-
-	xe_pm_runtime_get(xe);
-
-	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
-			    &cap, NULL);
-	if (ret)
-		goto out;
-
-	if (REG_FIELD_GET(V1_FAN_SUPPORTED, cap))
-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
-
-	if (REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap))
-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
-out:
-	xe_pm_runtime_put(xe);
+	/* Remove in reverse order of creation (LIFO).
+	* Avoid querying pcode/runtime pm here — sysfs_remove_file is safe
+	* when the attribute doesn't exist, and this avoids extra overhead
+	* or error paths during cleanup.
+	*/
+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
 }
 
 /**
@@ -287,16 +275,28 @@ static const struct attribute *auto_link_downgrade_attrs[] = {
 static void xe_device_sysfs_fini(void *arg)
 {
 	struct xe_device *xe = arg;
+	struct device *dev = xe->drm.dev;
 
-	if (xe->d3cold.capable)
-		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
-
-	if (xe->info.platform == XE_BATTLEMAGE) {
-		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
-		late_bind_remove_files(xe->drm.dev);
-	}
+	/* Remove in reverse order of creation (LIFO).
+	 * Avoid attrs check here — sysfs_remove_file is safe
+	 */
+	late_bind_remove_files(dev);
+	sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);
+	sysfs_remove_file(&dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
 }
 
+/**
+ * xe_device_sysfs_init - Initialize sysfs attributes for the Xe device
+ * @xe: Pointer to the Xe device structure
+ *
+ * Creates and registers sysfs attributes for device-specific controls and status,
+ * including VRAM D3cold threshold and PCIe link downgrade capabilities, depending
+ * on device capabilities and platform type.
+ *
+ * On partial failure, any sysfs files created before the failure will be cleaned up
+ * via xe_device_sysfs_fini.
+ */
+
 int xe_device_sysfs_init(struct xe_device *xe)
 {
 	struct device *dev = xe->drm.dev;
@@ -311,12 +311,17 @@ int xe_device_sysfs_init(struct xe_device *xe)
 	if (xe->info.platform == XE_BATTLEMAGE) {
 		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
 		if (ret)
-			return ret;
+			goto cleanup;
 
 		ret = late_bind_create_files(dev);
 		if (ret)
-			return ret;
+			goto cleanup;
 	}
 
 	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
+
+cleanup:
+	xe_device_sysfs_fini(xe);
+	return ret;
+
 }
-- 
2.34.1


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

* ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
@ 2025-09-10 18:38 ` Patchwork
  2025-09-10 18:39 ` ✓ CI.KUnit: success " Patchwork
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-10 18:38 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
URL   : https://patchwork.freedesktop.org/series/154116/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 9a93fa4eca4f144c5661b760d8e1ccb7cc07f0a2
Author: Zongyao Bai <zongyao.bai@intel.com>
Date:   Thu Sep 11 02:32:33 2025 +0800

    drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init
    
    xe_device_sysfs_fini(): switch the order of late_bind_remove_files
    and sysfs_remove_files to follow the rule that files create latest
    deleted first.(LIFO)
    
    xe_device_sysfs_init(): on partial failure, any sysfs files created
    before the failure will be cleaned up via xe_device_sysfs_fini,
    ensuring no leaked sysfs entries
    Add function description comments for xe_device_sysfs_init().
    
    v2:
    - Refine code using "goto cleanup" to reduced code duplication and
      improve clarity and scalability. (Stuart)
    
    - Change remove order in late_bind_remove_files(). (Stuart)
    
    - In xe_device_sysfs_fini() and late_bind_remove_files(), cancle the
      capable, platform and pcode/runtime check. And just remove in reverse
      order of creation(LIFO). sysfs_remove_file is safe even the attribute
      doesn't exist, so it avoids extra overhead or error paths during cleanup.
    
    Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
    Fixes: cdc36b66cd41 (drm/xe: Expose fan control and voltage regulator version)
    Cc: Stuart Summers <stuart.summers@intel.com>
    Cc: Shuicheng Lin <shuicheng.lin@intel.com>
    Cc: Lucas De Marchi <lucas.demarchi@intel.com>
    Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
+ /mt/dim checkpatch f8ab4be9461e5155e0b3b8b7c4fd6d68bbb811ac drm-intel
9a93fa4eca4f drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init
-:22: WARNING:TYPO_SPELLING: 'cancle' may be misspelled - perhaps 'cancel'?
#22: 
- In xe_device_sysfs_fini() and late_bind_remove_files(), cancle the
                                                          ^^^^^^

-:28: WARNING:BAD_FIXES_TAG: Please use correct Fixes: style 'Fixes: <12+ chars of sha1> ("<title line>")' - ie: 'Fixes: cdc36b66cd41 ("drm/xe: Expose fan control and voltage regulator version")'
#28: 
Fixes: cdc36b66cd41 (drm/xe: Expose fan control and voltage regulator version)

-:62: WARNING:BLOCK_COMMENT_STYLE: Block comments should align the * on each line
#62: FILE: drivers/gpu/drm/xe/xe_device_sysfs.c:188:
+	/* Remove in reverse order of creation (LIFO).
+	* Avoid querying pcode/runtime pm here — sysfs_remove_file is safe

total: 0 errors, 3 warnings, 0 checks, 86 lines checked



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

* ✓ CI.KUnit: success for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
  2025-09-10 18:38 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2) Patchwork
@ 2025-09-10 18:39 ` Patchwork
  2025-09-10 19:12 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-10 18:39 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
URL   : https://patchwork.freedesktop.org/series/154116/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
  2025-09-10 18:38 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2) Patchwork
  2025-09-10 18:39 ` ✓ CI.KUnit: success " Patchwork
@ 2025-09-10 19:12 ` Patchwork
  2025-09-11  2:24 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-10 19:12 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
URL   : https://patchwork.freedesktop.org/series/154116/
State : success

== Summary ==

CI Bug Log - changes from xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6_BAT -> xe-pw-154116v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

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

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


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

  * Linux: xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6 -> xe-pw-154116v2

  IGT_8532: 3b9f234d6efe0529a233b81bb0d5ffee5adddb01 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6: 85cfc47b2b83d80db129438ad20d86008bb36ff6
  xe-pw-154116v2: 154116v2

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (2 preceding siblings ...)
  2025-09-10 19:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-11  2:24 ` Patchwork
  2025-09-11  4:11 ` [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Lucas De Marchi
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-11  2:24 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2)
URL   : https://patchwork.freedesktop.org/series/154116/
State : failure

== Summary ==

CI Bug Log - changes from xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6_FULL -> xe-pw-154116v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-154116v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-154116v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-154116v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-edp-1:
    - shard-lnl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-edp-1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-lnl:          [PASS][3] -> [FAIL][4] ([Intel XE#3718])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#316])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

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

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#1124])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2328])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#2191])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#367])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#787]) +132 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +8 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) +1 other test incomplete
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

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

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2325]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2252]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#373]) +2 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-dg2-set2:     NOTRUN -> [FAIL][22] ([Intel XE#1178]) +2 other tests fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][23] ([Intel XE#1188]) +1 other test fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2321])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#5428])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

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

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#4331])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#703])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2316])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][31] -> [FAIL][32] ([Intel XE#301]) +3 other tests fail
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][33] -> [DMESG-WARN][34] ([Intel XE#4543]) +2 other tests dmesg-warn
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#651]) +6 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#5390]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2311]) +7 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2313]) +5 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#653]) +5 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html

  * igt@kms_invalid_mode@bad-vsync-start:
    - shard-adlp:         [PASS][42] -> [DMESG-WARN][43] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-6/igt@kms_invalid_mode@bad-vsync-start.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-2/igt@kms_invalid_mode@bad-vsync-start.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][44] ([Intel XE#346])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#4359])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][46] ([Intel XE#616]) +3 other tests fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-466/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][47] -> [SKIP][48] ([Intel XE#4596])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#5021])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2387])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr-sprite-blt:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@kms_psr@fbc-psr-sprite-blt.html

  * igt@kms_psr@pr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_psr@pr-sprite-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#3414]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#455]) +2 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_vrr@flip-basic-fastset.html

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

  * igt@xe_eudebug@vma-ufence-faultable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#4837]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@xe_eudebug@vma-ufence-faultable.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#5793])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2322]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-dg2-set2:     [PASS][62] -> [SKIP][63] ([Intel XE#1392]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#288]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#4943]) +8 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@twice-mmap-new-huge:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#4915]) +54 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-466/igt@xe_exec_system_allocator@twice-mmap-new-huge.html

  * igt@xe_oa@map-oa-buffer:
    - shard-dg2-set2:     NOTRUN -> [SKIP][67] ([Intel XE#3573]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-466/igt@xe_oa@map-oa-buffer.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2284])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-adlp:         [PASS][69] -> [DMESG-WARN][70] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-3/igt@xe_pm@s2idle-exec-after.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-9/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#4733]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#944])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#3342])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][74] ([Intel XE#3908]) -> [PASS][75] +1 other test pass
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][76] ([Intel XE#3862]) -> [PASS][77] +1 other test pass
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][78] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][80] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][82] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][84] ([Intel XE#2291]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4:
    - shard-dg2-set2:     [INCOMPLETE][86] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][87] +1 other test pass
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-bmg:          [SKIP][88] ([Intel XE#2316]) -> [PASS][89] +2 other tests pass
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
    - shard-bmg:          [FAIL][90] ([Intel XE#3321]) -> [PASS][91] +1 other test pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [FAIL][92] -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][94] ([Intel XE#4543]) -> [PASS][95] +1 other test pass
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-2/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a1.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][96] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][97] +4 other tests pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-adlp-6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-adlp-2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][98] ([Intel XE#2571]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][100] ([Intel XE#1435]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-dg2-set2:     [INCOMPLETE][102] ([Intel XE#4488]) -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
    - shard-dg2-set2:     [SKIP][104] ([Intel XE#1392]) -> [PASS][105] +7 other tests pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][106] ([Intel XE#6085]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][108] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][109] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][110] ([Intel XE#3124]) -> [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][112] ([Intel XE#2311]) -> [SKIP][113] ([Intel XE#2312]) +2 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][114] ([Intel XE#2312]) -> [SKIP][115] ([Intel XE#2311]) +8 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][116] ([Intel XE#5390]) -> [SKIP][117] ([Intel XE#2312]) +2 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][118] ([Intel XE#2312]) -> [SKIP][119] ([Intel XE#5390]) +3 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][120] ([Intel XE#2313]) -> [SKIP][121] ([Intel XE#2312]) +3 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][122] ([Intel XE#2312]) -> [SKIP][123] ([Intel XE#2313]) +4 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][124] ([Intel XE#1729]) -> [SKIP][125] ([Intel XE#2426])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v2/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5428
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#6085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6085
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6 -> xe-pw-154116v2

  IGT_8532: 3b9f234d6efe0529a233b81bb0d5ffee5adddb01 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3718-85cfc47b2b83d80db129438ad20d86008bb36ff6: 85cfc47b2b83d80db129438ad20d86008bb36ff6
  xe-pw-154116v2: 154116v2

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (3 preceding siblings ...)
  2025-09-11  2:24 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-11  4:11 ` Lucas De Marchi
  2025-09-15 21:47 ` [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process Zongyao Bai
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Lucas De Marchi @ 2025-09-11  4:11 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe, Stuart Summers, Shuicheng Lin

On Thu, Sep 11, 2025 at 02:32:33AM +0800, Zongyao Bai wrote:
>xe_device_sysfs_fini(): switch the order of late_bind_remove_files
>and sysfs_remove_files to follow the rule that files create latest
>deleted first.(LIFO)
>
>xe_device_sysfs_init(): on partial failure, any sysfs files created
>before the failure will be cleaned up via xe_device_sysfs_fini,
>ensuring no leaked sysfs entries
>Add function description comments for xe_device_sysfs_init().
>
>v2:
>- Refine code using "goto cleanup" to reduced code duplication and
>  improve clarity and scalability. (Stuart)
>
>- Change remove order in late_bind_remove_files(). (Stuart)
>
>- In xe_device_sysfs_fini() and late_bind_remove_files(), cancle the
>  capable, platform and pcode/runtime check. And just remove in reverse
>  order of creation(LIFO). sysfs_remove_file is safe even the attribute
>  doesn't exist, so it avoids extra overhead or error paths during cleanup.
>
>Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
>Fixes: cdc36b66cd41 (drm/xe: Expose fan control and voltage regulator version)
>Cc: Stuart Summers <stuart.summers@intel.com>
>Cc: Shuicheng Lin <shuicheng.lin@intel.com>
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
>---
> drivers/gpu/drm/xe/xe_device_sysfs.c | 61 +++++++++++++++-------------
> 1 file changed, 33 insertions(+), 28 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
>index 6ee422594b56..44ee008ea3ce 100644
>--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
>+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
>@@ -184,25 +184,13 @@ static int late_bind_create_files(struct device *dev)
>
> static void late_bind_remove_files(struct device *dev)
> {
>-	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
>-	struct xe_tile *root = xe_device_get_root_tile(xe);
>-	u32 cap = 0;
>-	int ret;
>-
>-	xe_pm_runtime_get(xe);
>-
>-	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
>-			    &cap, NULL);

ugh, thanks. This pcode read shouldn't be in the remove_files path
indeed.

>-	if (ret)
>-		goto out;
>-
>-	if (REG_FIELD_GET(V1_FAN_SUPPORTED, cap))
>-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
>-
>-	if (REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap))
>-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
>-out:
>-	xe_pm_runtime_put(xe);
>+	/* Remove in reverse order of creation (LIFO).
>+	* Avoid querying pcode/runtime pm here — sysfs_remove_file is safe
>+	* when the attribute doesn't exist, and this avoids extra overhead
>+	* or error paths during cleanup.

no need for comment here, and in case you need comment, please follow
the style of other comments in xe:

/*
  * ....
  */

  
>+	*/
>+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
>+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
> }
>
> /**
>@@ -287,16 +275,28 @@ static const struct attribute *auto_link_downgrade_attrs[] = {
> static void xe_device_sysfs_fini(void *arg)
> {
> 	struct xe_device *xe = arg;
>+	struct device *dev = xe->drm.dev;
>
>-	if (xe->d3cold.capable)
>-		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
>-
>-	if (xe->info.platform == XE_BATTLEMAGE) {
>-		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
>-		late_bind_remove_files(xe->drm.dev);
>-	}
>+	/* Remove in reverse order of creation (LIFO).
>+	 * Avoid attrs check here — sysfs_remove_file is safe
>+	 */
>+	late_bind_remove_files(dev);
>+	sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);
>+	sysfs_remove_file(&dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
> }
>
>+/**
>+ * xe_device_sysfs_init - Initialize sysfs attributes for the Xe device
>+ * @xe: Pointer to the Xe device structure
>+ *
>+ * Creates and registers sysfs attributes for device-specific controls and status,

up to here is good

>+ * including VRAM D3cold threshold and PCIe link downgrade capabilities, depending
>+ * on device capabilities and platform type.

don't mention this. We don't want to keep adding each of them to this
doc

>+ *
>+ * On partial failure, any sysfs files created before the failure will be cleaned up
>+ * via xe_device_sysfs_fini.

no need for this too.

>+ */
>+
> int xe_device_sysfs_init(struct xe_device *xe)
> {
> 	struct device *dev = xe->drm.dev;
>@@ -311,12 +311,17 @@ int xe_device_sysfs_init(struct xe_device *xe)
> 	if (xe->info.platform == XE_BATTLEMAGE) {
> 		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
> 		if (ret)
>-			return ret;
>+			goto cleanup;
>
> 		ret = late_bind_create_files(dev);
> 		if (ret)
>-			return ret;
>+			goto cleanup;

please split this patch like below:

1) the one using `goto cleanup`. This fixes one bug
2) remove the hw read and call the sysfs removal unconditionally
3) Add the documentation

thanks
Lucas De Marchi

> 	}
>
> 	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
>+
>+cleanup:
>+	xe_device_sysfs_fini(xe);
>+	return ret;
>+
> }
>-- 
>2.34.1
>

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

* [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process.
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (4 preceding siblings ...)
  2025-09-11  4:11 ` [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Lucas De Marchi
@ 2025-09-15 21:47 ` Zongyao Bai
  2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
  2025-09-15 21:47   ` [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries Zongyao Bai
  2025-09-15 21:55 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3) Patchwork
                   ` (3 subsequent siblings)
  9 siblings, 2 replies; 19+ messages in thread
From: Zongyao Bai @ 2025-09-15 21:47 UTC (permalink / raw)
  To: intel-xe; +Cc: Zongyao Bai

xe_device_sysfs_init(): 
    on partial failure, any sysfs files created before the failure will be 
    cleaned up via xe_device_sysfs_fini, ensuring no leaked sysfs entries.

late_bind_remove_files() and late_bind_remove_files():
    Adjust remove order to follow the rule LIFO(Last In, First Out).	
    Remove configuration and status checking, 
    call the sysfs removal unconditionally.

Zongyao Bai (2):
  drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
  drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs
    entries

 drivers/gpu/drm/xe/xe_device_sysfs.c | 41 +++++++++-------------------
 1 file changed, 13 insertions(+), 28 deletions(-)

-- 
2.34.1


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

* [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
  2025-09-15 21:47 ` [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process Zongyao Bai
@ 2025-09-15 21:47   ` Zongyao Bai
  2025-09-15 22:34     ` Lin, Shuicheng
                       ` (2 more replies)
  2025-09-15 21:47   ` [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries Zongyao Bai
  1 sibling, 3 replies; 19+ messages in thread
From: Zongyao Bai @ 2025-09-15 21:47 UTC (permalink / raw)
  To: intel-xe
  Cc: Zongyao Bai, Lucas De Marchi, Stuart Summers, Shuicheng Lin,
	Michal Wajdeczko

xe_device_sysfs_init(): on partial failure, any sysfs files created
before the failure will be cleaned up via xe_device_sysfs_fini,
ensuring no leaked sysfs entries.

v2: Using "goto cleanup" to reduced code duplication.(Stuart)

v3: Split patch & remove unnecessary notes (Lucas)
    Adjust the comments accordingly.

Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
 drivers/gpu/drm/xe/xe_device_sysfs.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
index 6ee422594b56..e5e3c56ea53c 100644
--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
@@ -311,12 +311,17 @@ int xe_device_sysfs_init(struct xe_device *xe)
 	if (xe->info.platform == XE_BATTLEMAGE) {
 		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
 		if (ret)
-			return ret;
+			goto cleanup;
 
 		ret = late_bind_create_files(dev);
 		if (ret)
-			return ret;
+			goto cleanup;
 	}
 
 	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
+
+cleanup:
+	xe_device_sysfs_fini(xe);
+	return ret;
+
 }
-- 
2.34.1


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

* [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
  2025-09-15 21:47 ` [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process Zongyao Bai
  2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
@ 2025-09-15 21:47   ` Zongyao Bai
  2025-09-15 22:46     ` Lin, Shuicheng
  2025-09-16 14:39     ` Michal Wajdeczko
  1 sibling, 2 replies; 19+ messages in thread
From: Zongyao Bai @ 2025-09-15 21:47 UTC (permalink / raw)
  To: intel-xe
  Cc: Zongyao Bai, Lucas De Marchi, Stuart Summers, Shuicheng Lin,
	Michal Wajdeczko

xe_device_sysfs_fini() and late_bind_remove_files():
  Adjust the remove order of sysfs entries to follow LIFO.
  Remove configuration and status checking,
  call the sysfs removal unconditionally.

Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
 drivers/gpu/drm/xe/xe_device_sysfs.c | 32 ++++++----------------------
 1 file changed, 6 insertions(+), 26 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
index e5e3c56ea53c..693bfda1cfa6 100644
--- a/drivers/gpu/drm/xe/xe_device_sysfs.c
+++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
@@ -184,25 +184,8 @@ static int late_bind_create_files(struct device *dev)
 
 static void late_bind_remove_files(struct device *dev)
 {
-	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
-	struct xe_tile *root = xe_device_get_root_tile(xe);
-	u32 cap = 0;
-	int ret;
-
-	xe_pm_runtime_get(xe);
-
-	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
-			    &cap, NULL);
-	if (ret)
-		goto out;
-
-	if (REG_FIELD_GET(V1_FAN_SUPPORTED, cap))
-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
-
-	if (REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap))
-		sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
-out:
-	xe_pm_runtime_put(xe);
+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
+	sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
 }
 
 /**
@@ -287,14 +270,11 @@ static const struct attribute *auto_link_downgrade_attrs[] = {
 static void xe_device_sysfs_fini(void *arg)
 {
 	struct xe_device *xe = arg;
+	struct device *dev = xe->drm.dev;
 
-	if (xe->d3cold.capable)
-		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
-
-	if (xe->info.platform == XE_BATTLEMAGE) {
-		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
-		late_bind_remove_files(xe->drm.dev);
-	}
+    late_bind_remove_files(dev);
+    sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);
+    sysfs_remove_file(&dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
 }
 
 int xe_device_sysfs_init(struct xe_device *xe)
-- 
2.34.1


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

* ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (5 preceding siblings ...)
  2025-09-15 21:47 ` [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process Zongyao Bai
@ 2025-09-15 21:55 ` Patchwork
  2025-09-15 21:56 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-15 21:55 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
URL   : https://patchwork.freedesktop.org/series/154116/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 7e6fcc955b0ee1fe18067a613972343bf57acd40
Author: Zongyao Bai <zongyao.bai@intel.com>
Date:   Tue Sep 16 05:47:16 2025 +0800

    drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
    
    xe_device_sysfs_fini() and late_bind_remove_files():
      Adjust the remove order of sysfs entries to follow LIFO.
      Remove configuration and status checking,
      call the sysfs removal unconditionally.
    
    Cc: Lucas De Marchi <lucas.demarchi@intel.com>
    Cc: Stuart Summers <stuart.summers@intel.com>
    Cc: Shuicheng Lin <shuicheng.lin@intel.com>
    Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
    Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
+ /mt/dim checkpatch 4b2a554c1553f8de414acede44c326055ae2833c drm-intel
f2405801c359 drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
7e6fcc955b0e drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
-:63: WARNING:LEADING_SPACE: please, no spaces at the start of a line
#63: FILE: drivers/gpu/drm/xe/xe_device_sysfs.c:275:
+    late_bind_remove_files(dev);$

-:64: WARNING:LEADING_SPACE: please, no spaces at the start of a line
#64: FILE: drivers/gpu/drm/xe/xe_device_sysfs.c:276:
+    sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);$

-:65: WARNING:LEADING_SPACE: please, no spaces at the start of a line
#65: FILE: drivers/gpu/drm/xe/xe_device_sysfs.c:277:
+    sysfs_remove_file(&dev->kobj, &dev_attr_vram_d3cold_threshold.attr);$

total: 0 errors, 3 warnings, 0 checks, 45 lines checked



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

* ✓ CI.KUnit: success for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (6 preceding siblings ...)
  2025-09-15 21:55 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3) Patchwork
@ 2025-09-15 21:56 ` Patchwork
  2025-09-15 22:34 ` ✓ Xe.CI.BAT: " Patchwork
  2025-09-16  3:29 ` ✗ Xe.CI.Full: failure " Patchwork
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-15 21:56 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
URL   : https://patchwork.freedesktop.org/series/154116/
State : success

== Summary ==

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

[21:56:09] [PASSED] ALDERLAKE_S RPLS D0
[21:56:09] [PASSED] ALDERLAKE_P RPLU E0
[21:56:09] [PASSED] DG2 G10 C0
[21:56:09] [PASSED] DG2 G11 B1
[21:56:09] [PASSED] DG2 G12 A1
[21:56:09] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:56:09] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:56:09] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:56:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:56:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:56:09] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:56:09] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:56:09] ==================== [PASSED] xe_wa_gt =====================
[21:56:09] ====================== [PASSED] xe_wa ======================
[21:56:09] ============================================================
[21:56:09] Testing complete. Ran 300 tests: passed: 282, skipped: 18
[21:56:09] Elapsed time: 40.461s total, 4.356s configuring, 35.739s building, 0.320s running

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

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

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



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

* RE: [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
  2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
@ 2025-09-15 22:34     ` Lin, Shuicheng
  2025-09-16 14:29     ` Michal Wajdeczko
  2025-09-16 15:06     ` (subset) " Lucas De Marchi
  2 siblings, 0 replies; 19+ messages in thread
From: Lin, Shuicheng @ 2025-09-15 22:34 UTC (permalink / raw)
  To: Bai, Zongyao, intel-xe@lists.freedesktop.org
  Cc: De Marchi, Lucas, Summers, Stuart, Wajdeczko, Michal

On Mon, Sep 15, 2025 2:47 PM Zongyao Bai wrote:
> xe_device_sysfs_init(): on partial failure, any sysfs files created before the
> failure will be cleaned up via xe_device_sysfs_fini, ensuring no leaked sysfs
> entries.
> 
> v2: Using "goto cleanup" to reduced code duplication.(Stuart)
> 
> v3: Split patch & remove unnecessary notes (Lucas)
>     Adjust the comments accordingly.
> 
> Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>

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

> ---
>  drivers/gpu/drm/xe/xe_device_sysfs.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c
> b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index 6ee422594b56..e5e3c56ea53c 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -311,12 +311,17 @@ int xe_device_sysfs_init(struct xe_device *xe)
>  	if (xe->info.platform == XE_BATTLEMAGE) {
>  		ret = sysfs_create_files(&dev->kobj,
> auto_link_downgrade_attrs);
>  		if (ret)
> -			return ret;
> +			goto cleanup;
> 
>  		ret = late_bind_create_files(dev);
>  		if (ret)
> -			return ret;
> +			goto cleanup;
>  	}
> 
>  	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
> +
> +cleanup:
> +	xe_device_sysfs_fini(xe);
> +	return ret;
> +
>  }
> --
> 2.34.1


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

* ✓ Xe.CI.BAT: success for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (7 preceding siblings ...)
  2025-09-15 21:56 ` ✓ CI.KUnit: success " Patchwork
@ 2025-09-15 22:34 ` Patchwork
  2025-09-16  3:29 ` ✗ Xe.CI.Full: failure " Patchwork
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-15 22:34 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
URL   : https://patchwork.freedesktop.org/series/154116/
State : success

== Summary ==

CI Bug Log - changes from xe-3765-4b2a554c1553f8de414acede44c326055ae2833c_BAT -> xe-pw-154116v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3765-4b2a554c1553f8de414acede44c326055ae2833c -> xe-pw-154116v3

  IGT_8540: 8540
  xe-3765-4b2a554c1553f8de414acede44c326055ae2833c: 4b2a554c1553f8de414acede44c326055ae2833c
  xe-pw-154116v3: 154116v3

== Logs ==

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

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

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

* RE: [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
  2025-09-15 21:47   ` [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries Zongyao Bai
@ 2025-09-15 22:46     ` Lin, Shuicheng
  2025-09-16 14:39     ` Michal Wajdeczko
  1 sibling, 0 replies; 19+ messages in thread
From: Lin, Shuicheng @ 2025-09-15 22:46 UTC (permalink / raw)
  To: Bai, Zongyao, intel-xe@lists.freedesktop.org
  Cc: De Marchi, Lucas, Summers, Stuart, Wajdeczko, Michal

On Mon, Sep 15, 2025 2:47 PM Zongyao Bai wrote:
> xe_device_sysfs_fini() and late_bind_remove_files():
>   Adjust the remove order of sysfs entries to follow LIFO.
>   Remove configuration and status checking,
>   call the sysfs removal unconditionally.
> 
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_device_sysfs.c | 32 ++++++----------------------
>  1 file changed, 6 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c
> b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index e5e3c56ea53c..693bfda1cfa6 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -184,25 +184,8 @@ static int late_bind_create_files(struct device *dev)
> 
>  static void late_bind_remove_files(struct device *dev)  {
> -	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> -	struct xe_tile *root = xe_device_get_root_tile(xe);
> -	u32 cap = 0;
> -	int ret;
> -
> -	xe_pm_runtime_get(xe);
> -
> -	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING,
> GET_CAPABILITY_STATUS, 0),
> -			    &cap, NULL);
> -	if (ret)
> -		goto out;
> -
> -	if (REG_FIELD_GET(V1_FAN_SUPPORTED, cap))
> -		sysfs_remove_file(&dev->kobj,
> &dev_attr_lb_fan_control_version.attr);
> -
> -	if (REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap))
> -		sysfs_remove_file(&dev->kobj,
> &dev_attr_lb_voltage_regulator_version.attr);
> -out:
> -	xe_pm_runtime_put(xe);
> +	sysfs_remove_file(&dev->kobj,
> &dev_attr_lb_voltage_regulator_version.attr);
> +	sysfs_remove_file(&dev->kobj,
> &dev_attr_lb_fan_control_version.attr);
>  }
> 
>  /**
> @@ -287,14 +270,11 @@ static const struct attribute
> *auto_link_downgrade_attrs[] = {  static void xe_device_sysfs_fini(void *arg)  {
>  	struct xe_device *xe = arg;
> +	struct device *dev = xe->drm.dev;
> 
> -	if (xe->d3cold.capable)
> -		sysfs_remove_file(&xe->drm.dev->kobj,
> &dev_attr_vram_d3cold_threshold.attr);
> -
> -	if (xe->info.platform == XE_BATTLEMAGE) {
> -		sysfs_remove_files(&xe->drm.dev->kobj,
> auto_link_downgrade_attrs);
> -		late_bind_remove_files(xe->drm.dev);
> -	}
> +    late_bind_remove_files(dev);
> +    sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);
> +    sysfs_remove_file(&dev->kobj,
> + &dev_attr_vram_d3cold_threshold.attr);

It seems there is alignment problem here. Maybe due to tab is replaced with space?
With this fix, LGTM.

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

>  }
> 
>  int xe_device_sysfs_init(struct xe_device *xe)
> --
> 2.34.1


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

* ✗ Xe.CI.Full: failure for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
  2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
                   ` (8 preceding siblings ...)
  2025-09-15 22:34 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-16  3:29 ` Patchwork
  9 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-09-16  3:29 UTC (permalink / raw)
  To: Zongyao Bai; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3)
URL   : https://patchwork.freedesktop.org/series/154116/
State : failure

== Summary ==

CI Bug Log - changes from xe-3765-4b2a554c1553f8de414acede44c326055ae2833c_FULL -> xe-pw-154116v3_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-154116v3_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-154116v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-154116v3_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
    - shard-dg2-set2:     [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          NOTRUN -> [FAIL][5] ([Intel XE#4665])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@intel_hwmon@hwmon-write.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-adlp:         [PASS][6] -> [FAIL][7] ([Intel XE#3908]) +1 other test fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

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

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

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#4543])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#1124]) +5 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#2191])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#367])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +6 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#2887]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-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][21] ([Intel XE#787]) +265 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][22] ([Intel XE#4345])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][23] ([Intel XE#1727] / [Intel XE#3113])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html

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

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#306])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2325])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#306]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_frames@hdmi-crc-planes-random:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#373]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_chamelium_frames@hdmi-crc-planes-random.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][29] ([Intel XE#373]) +6 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

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

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

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][32] ([Intel XE#308])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2321])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1424])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2291])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][38] -> [SKIP][39] ([Intel XE#4294])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html

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

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#4422])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][42] ([Intel XE#776])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [PASS][43] -> [SKIP][44] ([Intel XE#2316])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#1421]) +2 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][46] -> [FAIL][47] ([Intel XE#301]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-rmfb:
    - shard-adlp:         [PASS][48] -> [DMESG-WARN][49] ([Intel XE#5208])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-4/igt@kms_flip@flip-vs-rmfb.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-1/igt@kms_flip@flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [PASS][50] -> [DMESG-WARN][51] ([Intel XE#4543]) +3 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#1401] / [Intel XE#1745])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#1401])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2293]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#5390]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][58] ([Intel XE#651]) +23 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2311]) +10 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#651])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#653]) +23 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#656]) +5 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2313]) +14 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#1503])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#4359])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
    - shard-dg2-set2:     NOTRUN -> [FAIL][66] ([Intel XE#616]) +3 other tests fail
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html

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

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#5021])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#5021])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-yf.html
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#4596])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#2763]) +3 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     NOTRUN -> [SKIP][72] ([Intel XE#3309])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#3309])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#2893])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

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

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

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +5 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-onoff.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#3414])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2330])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#1127])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1127])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][88] -> [SKIP][89] ([Intel XE#1435])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#2426])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#1500])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#1499])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_vrr@max-min.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][93] ([Intel XE#1126])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@invalid-gt-id:
    - shard-dg2-set2:     NOTRUN -> [SKIP][94] ([Intel XE#5626]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_eu_stall@invalid-gt-id.html

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

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

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#4837]) +3 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_eudebug_online@basic-breakpoint.html

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

  * igt@xe_evict@evict-beng-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#688])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_evict@evict-beng-large-multi-vm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#1392])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
    - shard-dg2-set2:     [PASS][101] -> [SKIP][102] ([Intel XE#1392]) +6 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2322]) +2 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#1392]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

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

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

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-adlp:         [PASS][107] -> [DMESG-WARN][108] ([Intel XE#3876])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-3/igt@xe_exec_reset@parallel-gt-reset.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-8/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#4943]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-stride-new-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#4915]) +181 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html

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

  * igt@xe_module_load@load:
    - shard-dg2-set2:     ([PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135]) -> ([PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [SKIP][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161]) ([Intel XE#378])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-463/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-433/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-436/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-433/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-466/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-435/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-436/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-466/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-433/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-463/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-463/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-435/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-435/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-432/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-432/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-432/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-432/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-463/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-435/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-435/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-435/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-464/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-464/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-464/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-464/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-433/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-433/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-433/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-466/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_module_load@load.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][162] ([Intel XE#3573]) +3 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-dg2-set2:     NOTRUN -> [SKIP][163] ([Intel XE#979])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-bmg:          NOTRUN -> [SKIP][164] ([Intel XE#2284]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][165] ([Intel XE#5742])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#5742])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#5742])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         [PASS][168] -> [DMESG-WARN][169] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-9/igt@xe_pm@s2idle-basic-exec.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-4/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][170] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][171] ([Intel XE#4733]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][172] ([Intel XE#4733]) +1 other test skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#944])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     NOTRUN -> [SKIP][174] ([Intel XE#944]) +3 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#4814])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][176] ([Intel XE#4130])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-436/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#4130])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-lnl-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2:
    - shard-bmg:          [INCOMPLETE][178] ([Intel XE#4912]) -> [PASS][179] +1 other test pass
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-dp-2.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-FAIL][180] ([Intel XE#4543]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][182] ([Intel XE#3862]) -> [PASS][183] +1 other test pass
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][184] ([Intel XE#3862]) -> [PASS][185] +1 other test pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][186] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][187]
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][188] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][189] +1 other test pass
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][190] -> [PASS][191]
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][192] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][193]
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][194] ([Intel XE#2291]) -> [PASS][195]
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-bmg:          [SKIP][196] ([Intel XE#2316]) -> [PASS][197] +4 other tests pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-7/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][198] ([Intel XE#4543]) -> [PASS][199] +5 other tests pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-2/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][200] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][201] +1 other test pass
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [SKIP][202] ([Intel XE#1503]) -> [PASS][203] +1 other test pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_hdr@static-toggle.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-7/igt@kms_hdr@static-toggle.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [FAIL][204] ([Intel XE#2883]) -> [PASS][205] +2 other tests pass
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-5/igt@kms_setmode@basic.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3:
    - shard-bmg:          [FAIL][206] -> [PASS][207]
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-5/igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-2/igt@kms_setmode@basic@pipe-a-dp-2-pipe-b-hdmi-a-3.html

  * igt@xe_exec_basic@multigpu-once-rebind:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#1392]) -> [PASS][209] +7 other tests pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-435/igt@xe_exec_basic@multigpu-once-rebind.html

  * igt@xe_wedged@basic-wedged:
    - shard-adlp:         [DMESG-WARN][210] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][211] +6 other tests pass
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-adlp-8/igt@xe_wedged@basic-wedged.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-adlp-1/igt@xe_wedged@basic-wedged.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][212] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][213] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][214] ([Intel XE#1178]) -> [SKIP][215] ([Intel XE#2341])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_content_protection@legacy.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][216] ([Intel XE#2311]) -> [SKIP][217] ([Intel XE#2312]) +4 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][218] ([Intel XE#2312]) -> [SKIP][219] ([Intel XE#5390]) +2 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][220] ([Intel XE#5390]) -> [SKIP][221] ([Intel XE#2312])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][222] ([Intel XE#2312]) -> [SKIP][223] ([Intel XE#2311]) +5 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][224] ([Intel XE#2313]) -> [SKIP][225] ([Intel XE#2312]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][226] ([Intel XE#2312]) -> [SKIP][227] ([Intel XE#2313]) +8 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][228] ([Intel XE#1729]) -> [SKIP][229] ([Intel XE#362])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][230] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][231] ([Intel XE#5466] / [Intel XE#5530])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3765-4b2a554c1553f8de414acede44c326055ae2833c/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-154116v3/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * Linux: xe-3765-4b2a554c1553f8de414acede44c326055ae2833c -> xe-pw-154116v3

  IGT_8540: 8540
  xe-3765-4b2a554c1553f8de414acede44c326055ae2833c: 4b2a554c1553f8de414acede44c326055ae2833c
  xe-pw-154116v3: 154116v3

== Logs ==

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

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

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

* Re: [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
  2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
  2025-09-15 22:34     ` Lin, Shuicheng
@ 2025-09-16 14:29     ` Michal Wajdeczko
  2025-09-16 15:06     ` (subset) " Lucas De Marchi
  2 siblings, 0 replies; 19+ messages in thread
From: Michal Wajdeczko @ 2025-09-16 14:29 UTC (permalink / raw)
  To: Zongyao Bai, intel-xe; +Cc: Lucas De Marchi, Stuart Summers, Shuicheng Lin

Hi,

I guess you need to modify the subject to something like:

"drm/xe/sysfs: ..."

On 9/15/2025 11:47 PM, Zongyao Bai wrote:
> xe_device_sysfs_init(): on partial failure, any sysfs files created
> before the failure will be cleaned up via xe_device_sysfs_fini,
> ensuring no leaked sysfs entries.

IMO this should be rephrased into something like:

"On partial failure, some sysfs files created before the failure might
not be removed. Add common cleanup step to remove them all immediately,
as is should be harmless to attempt to remove non-existing files."

see https://docs.kernel.org/process/submitting-patches.html#describe-your-changes

> 
> v2: Using "goto cleanup" to reduced code duplication.(Stuart)
> 
> v3: Split patch & remove unnecessary notes (Lucas)
>     Adjust the comments accordingly.
> 
> Fixes: 0e414bf7ad01 ("drm/xe: Expose PCIe link downgrade attributes")
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_device_sysfs.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index 6ee422594b56..e5e3c56ea53c 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -311,12 +311,17 @@ int xe_device_sysfs_init(struct xe_device *xe)
>  	if (xe->info.platform == XE_BATTLEMAGE) {
>  		ret = sysfs_create_files(&dev->kobj, auto_link_downgrade_attrs);
>  		if (ret)
> -			return ret;
> +			goto cleanup;
>  
>  		ret = late_bind_create_files(dev);
>  		if (ret)
> -			return ret;
> +			goto cleanup;
>  	}
>  
>  	return devm_add_action_or_reset(dev, xe_device_sysfs_fini, xe);
> +
> +cleanup:
> +	xe_device_sysfs_fini(xe);
> +	return ret;
> +
>  }


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

* Re: [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
  2025-09-15 21:47   ` [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries Zongyao Bai
  2025-09-15 22:46     ` Lin, Shuicheng
@ 2025-09-16 14:39     ` Michal Wajdeczko
  2025-09-16 15:03       ` Lucas De Marchi
  1 sibling, 1 reply; 19+ messages in thread
From: Michal Wajdeczko @ 2025-09-16 14:39 UTC (permalink / raw)
  To: Zongyao Bai, intel-xe; +Cc: Lucas De Marchi, Stuart Summers, Shuicheng Lin


please use correct subject prefix

On 9/15/2025 11:47 PM, Zongyao Bai wrote:
> xe_device_sysfs_fini() and late_bind_remove_files():

above line could be dropped,
below lines don't need to be indented 
>   Adjust the remove order of sysfs entries to follow LIFO.
>   Remove configuration and status checking,
>   call the sysfs removal unconditionally.
> 
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_device_sysfs.c | 32 ++++++----------------------
>  1 file changed, 6 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_device_sysfs.c b/drivers/gpu/drm/xe/xe_device_sysfs.c
> index e5e3c56ea53c..693bfda1cfa6 100644
> --- a/drivers/gpu/drm/xe/xe_device_sysfs.c
> +++ b/drivers/gpu/drm/xe/xe_device_sysfs.c
> @@ -184,25 +184,8 @@ static int late_bind_create_files(struct device *dev)
>  
>  static void late_bind_remove_files(struct device *dev)
>  {
> -	struct xe_device *xe = pdev_to_xe_device(to_pci_dev(dev));
> -	struct xe_tile *root = xe_device_get_root_tile(xe);
> -	u32 cap = 0;
> -	int ret;
> -
> -	xe_pm_runtime_get(xe);
> -
> -	ret = xe_pcode_read(root, PCODE_MBOX(PCODE_LATE_BINDING, GET_CAPABILITY_STATUS, 0),
> -			    &cap, NULL);
> -	if (ret)
> -		goto out;
> -
> -	if (REG_FIELD_GET(V1_FAN_SUPPORTED, cap))
> -		sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
> -
> -	if (REG_FIELD_GET(VR_PARAMS_SUPPORTED, cap))
> -		sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
> -out:
> -	xe_pm_runtime_put(xe);
> +	sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
> +	sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);
>  }
>  
>  /**
> @@ -287,14 +270,11 @@ static const struct attribute *auto_link_downgrade_attrs[] = {
>  static void xe_device_sysfs_fini(void *arg)
>  {
>  	struct xe_device *xe = arg;
> +	struct device *dev = xe->drm.dev;

if you only need "dev" here then maybe pass it as "arg" instead of "xe" ?

>  
> -	if (xe->d3cold.capable)
> -		sysfs_remove_file(&xe->drm.dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
> -
> -	if (xe->info.platform == XE_BATTLEMAGE) {
> -		sysfs_remove_files(&xe->drm.dev->kobj, auto_link_downgrade_attrs);
> -		late_bind_remove_files(xe->drm.dev);
> -	}
> +    late_bind_remove_files(dev);

as you remove files unconditionally, does it make sense to keep this helper function?
maybe just move here:

  +	sysfs_remove_file(&dev->kobj, &dev_attr_lb_voltage_regulator_version.attr);
  +	sysfs_remove_file(&dev->kobj, &dev_attr_lb_fan_control_version.attr);

> +    sysfs_remove_files(&dev->kobj, auto_link_downgrade_attrs);
> +    sysfs_remove_file(&dev->kobj, &dev_attr_vram_d3cold_threshold.attr);
>  }
>  
>  int xe_device_sysfs_init(struct xe_device *xe)


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

* Re: [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries
  2025-09-16 14:39     ` Michal Wajdeczko
@ 2025-09-16 15:03       ` Lucas De Marchi
  0 siblings, 0 replies; 19+ messages in thread
From: Lucas De Marchi @ 2025-09-16 15:03 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: Zongyao Bai, intel-xe, Stuart Summers, Shuicheng Lin

On Tue, Sep 16, 2025 at 04:39:06PM +0200, Michal Wajdeczko wrote:
>
>please use correct subject prefix
>
>On 9/15/2025 11:47 PM, Zongyao Bai wrote:
>> xe_device_sysfs_fini() and late_bind_remove_files():
>
>above line could be dropped,
>below lines don't need to be indented
>>   Adjust the remove order of sysfs entries to follow LIFO.
>>   Remove configuration and status checking,
>>   call the sysfs removal unconditionally.
>>
>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> Cc: Stuart Summers <stuart.summers@intel.com>
>> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>

FWIW, with the first patch applied and bug fixed, we can
leave the improvement to be done by the other series by Michal
(https://lore.kernel.org/intel-xe/20250915140614.2076-1-michal.wajdeczko@intel.com/T/#me67e87de8efb34a980cd65be3d79c93bc5422230)
IMO the end result is nicer there. So I don't think this second patch
will be needed, let's just drop it.

Zongyao, thanks for following up with the feedback and Michal's feedback
here is also good for next patches.

Lucas De Marchi

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

* Re: (subset) [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init
  2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
  2025-09-15 22:34     ` Lin, Shuicheng
  2025-09-16 14:29     ` Michal Wajdeczko
@ 2025-09-16 15:06     ` Lucas De Marchi
  2 siblings, 0 replies; 19+ messages in thread
From: Lucas De Marchi @ 2025-09-16 15:06 UTC (permalink / raw)
  To: intel-xe, Zongyao Bai
  Cc: Lucas De Marchi, Stuart Summers, Shuicheng Lin, Michal Wajdeczko

On Tue, 16 Sep 2025 05:47:15 +0800, Zongyao Bai wrote:
> xe_device_sysfs_init(): on partial failure, any sysfs files created
> before the failure will be cleaned up via xe_device_sysfs_fini,
> ensuring no leaked sysfs entries.
> 
> v2: Using "goto cleanup" to reduced code duplication.(Stuart)
> 
> v3: Split patch & remove unnecessary notes (Lucas)
>     Adjust the comments accordingly.
> 
> [...]

I reworded the commit message as pointed by Michal, removed a spurious newline
at the end of the function and merged to drm-xe-next, thanks!

[1/2] drm/xe/sysfs: Add cleanup action in xe_device_sysfs_init
      commit: 1a869168d91f1a1a2b0db22cea0295c67908e5d8

--
Lucas De Marchi


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

end of thread, other threads:[~2025-09-16 15:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-10 18:32 [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Zongyao Bai
2025-09-10 18:38 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev2) Patchwork
2025-09-10 18:39 ` ✓ CI.KUnit: success " Patchwork
2025-09-10 19:12 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-11  2:24 ` ✗ Xe.CI.Full: failure " Patchwork
2025-09-11  4:11 ` [PATCH] drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init Lucas De Marchi
2025-09-15 21:47 ` [PATCH v3 0/2] drm/xe/xe_device_sysfs: modify sysfs clean up process Zongyao Bai
2025-09-15 21:47   ` [PATCH v3 1/2] drm/xe/xe_device_sysfs: Add cleanup action in xe_device_sysfs_init Zongyao Bai
2025-09-15 22:34     ` Lin, Shuicheng
2025-09-16 14:29     ` Michal Wajdeczko
2025-09-16 15:06     ` (subset) " Lucas De Marchi
2025-09-15 21:47   ` [PATCH v3 2/2] drm/xe/xe_device_sysfs: Remove sysfs unconditionally while clean sysfs entries Zongyao Bai
2025-09-15 22:46     ` Lin, Shuicheng
2025-09-16 14:39     ` Michal Wajdeczko
2025-09-16 15:03       ` Lucas De Marchi
2025-09-15 21:55 ` ✗ CI.checkpatch: warning for drm/xe/xe_device_sysfs: add cleanup action in xe_device_sysfs_init (rev3) Patchwork
2025-09-15 21:56 ` ✓ CI.KUnit: success " Patchwork
2025-09-15 22:34 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-16  3:29 ` ✗ Xe.CI.Full: failure " Patchwork

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