Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags
@ 2026-04-15 21:50 Shuicheng Lin
  2026-04-15 22:50 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Shuicheng Lin @ 2026-04-15 21:50 UTC (permalink / raw)
  To: linux-kernel, intel-xe; +Cc: Shuicheng Lin

Add validation in check_sections() to verify that inline member
documentation tags (/** @member: description */) match actual struct/union
member names. Previously, kernel-doc only validated section headers against
the parameter list, but inline doc tags stored in parameterdescs were never
cross-checked, allowing stale or mistyped member names to go undetected.

The new check iterates over parameterdescs keys and warns about any that
don't appear in the parameter list, catching issues like renamed struct
members where the documentation tag was not updated to match.

This catches real issues such as:
  - xe_bo_types.h: @atomic_access (missing struct prefix, should be
    @attr.atomic_access)
  - xe_device_types.h: @usm.asid (member is actually asid_to_vm)

Assisted-by: Claude:claude-opus-4.6
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
 tools/lib/python/kdoc/kdoc_parser.py | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/tools/lib/python/kdoc/kdoc_parser.py b/tools/lib/python/kdoc/kdoc_parser.py
index ca00695b47b3..f21f06c0a9b0 100644
--- a/tools/lib/python/kdoc/kdoc_parser.py
+++ b/tools/lib/python/kdoc/kdoc_parser.py
@@ -673,6 +673,31 @@ class KernelDoc:
                 self.emit_msg(ln,
                               f"Excess {dname} '{section}' description in '{decl_name}'")
 
+        #
+        # Check that documented parameter names (from doc comments, including
+        # inline ``/** @member: */`` tags) actually match real members in
+        # the declaration.  This catches mismatched or stale kernel-doc
+        # member tags that don't correspond to any actual struct/union
+        # member or function parameter.
+        #
+        for param_name, desc in self.entry.parameterdescs.items():
+            # Skip auto-generated entries from push_parameter()
+            if desc == self.undescribed:
+                continue
+            if desc in ("no arguments", "anonymous\n", "variable arguments"):
+                continue
+            if param_name.startswith("{unnamed_"):
+                continue
+            if param_name in self.entry.parameterlist:
+                continue
+
+            if decl_type == 'function':
+                dname = f"{decl_type} parameter"
+            else:
+                dname = f"{decl_type} member"
+            self.emit_msg(ln,
+                          f"Excess {dname} '{param_name}' description in '{decl_name}'")
+
     def check_return_section(self, ln, declaration_name, return_type):
         """
         If the function doesn't return void, warns about the lack of a
-- 
2.43.0


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

* ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
@ 2026-04-15 22:50 ` Patchwork
  2026-04-15 22:51 ` ✓ CI.KUnit: success " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-15 22:50 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags
URL   : https://patchwork.freedesktop.org/series/164948/
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
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit c6e7dd5b9455765a921542b5c4c27f417bd85bd7
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date:   Wed Apr 15 21:50:32 2026 +0000

    scripts/kernel-doc: Detect mismatched inline member documentation tags
    
    Add validation in check_sections() to verify that inline member
    documentation tags (/** @member: description */) match actual struct/union
    member names. Previously, kernel-doc only validated section headers against
    the parameter list, but inline doc tags stored in parameterdescs were never
    cross-checked, allowing stale or mistyped member names to go undetected.
    
    The new check iterates over parameterdescs keys and warns about any that
    don't appear in the parameter list, catching issues like renamed struct
    members where the documentation tag was not updated to match.
    
    This catches real issues such as:
      - xe_bo_types.h: @atomic_access (missing struct prefix, should be
        @attr.atomic_access)
      - xe_device_types.h: @usm.asid (member is actually asid_to_vm)
    
    Assisted-by: Claude:claude-opus-4.6
    Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9 drm-intel
c6e7dd5b9455 scripts/kernel-doc: Detect mismatched inline member documentation tags
-:22: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#22: 
Assisted-by: Claude:claude-opus-4.6

-:22: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#22: 
Assisted-by: Claude:claude-opus-4.6

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



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

* ✓ CI.KUnit: success for scripts/kernel-doc: Detect mismatched inline member documentation tags
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
  2026-04-15 22:50 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2026-04-15 22:51 ` Patchwork
  2026-04-16  1:01 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2) Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-15 22:51 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags
URL   : https://patchwork.freedesktop.org/series/164948/
State : success

== Summary ==

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

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

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

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



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

* ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
  2026-04-15 22:50 ` ✗ CI.checkpatch: warning for " Patchwork
  2026-04-15 22:51 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-16  1:01 ` Patchwork
  2026-04-16  1:02 ` ✓ CI.KUnit: success " Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  1:01 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2)
URL   : https://patchwork.freedesktop.org/series/164948/
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
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ec99d4fd6f13a2807e319026dcc1f73ddf604ec4
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date:   Wed Apr 15 21:50:32 2026 +0000

    scripts/kernel-doc: Detect mismatched inline member documentation tags
    
    Add validation in check_sections() to verify that inline member
    documentation tags (/** @member: description */) match actual struct/union
    member names. Previously, kernel-doc only validated section headers against
    the parameter list, but inline doc tags stored in parameterdescs were never
    cross-checked, allowing stale or mistyped member names to go undetected.
    
    The new check iterates over parameterdescs keys and warns about any that
    don't appear in the parameter list, catching issues like renamed struct
    members where the documentation tag was not updated to match.
    
    This catches real issues such as:
      - xe_bo_types.h: @atomic_access (missing struct prefix, should be
        @attr.atomic_access)
      - xe_device_types.h: @usm.asid (member is actually asid_to_vm)
    
    Assisted-by: Claude:claude-opus-4.6
    Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch 137513b61b4f187957d0c0f44c63c8549893f970 drm-intel
ec99d4fd6f13 scripts/kernel-doc: Detect mismatched inline member documentation tags
-:22: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#22: 
Assisted-by: Claude:claude-opus-4.6

-:22: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#22: 
Assisted-by: Claude:claude-opus-4.6

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



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

* ✓ CI.KUnit: success for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (2 preceding siblings ...)
  2026-04-16  1:01 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2) Patchwork
@ 2026-04-16  1:02 ` Patchwork
  2026-04-17  2:31 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3) Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  1:02 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2)
URL   : https://patchwork.freedesktop.org/series/164948/
State : success

== Summary ==

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

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

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

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



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

* ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (3 preceding siblings ...)
  2026-04-16  1:02 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-17  2:31 ` Patchwork
  2026-04-17  2:33 ` ✓ CI.KUnit: success " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-17  2:31 UTC (permalink / raw)
  To: Lin, Shuicheng; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
URL   : https://patchwork.freedesktop.org/series/164948/
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
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8be55a4c21787b0db8090bebf8f28aa0ba84d6f3
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date:   Wed Apr 15 21:50:32 2026 +0000

    scripts/kernel-doc: Detect mismatched inline member documentation tags
    
    Add validation in check_sections() to verify that inline member
    documentation tags (/** @member: description */) match actual struct/union
    member names. Previously, kernel-doc only validated section headers against
    the parameter list, but inline doc tags stored in parameterdescs were never
    cross-checked, allowing stale or mistyped member names to go undetected.
    
    The new check iterates over parameterdescs keys and warns about any that
    don't appear in the parameter list, catching issues like renamed struct
    members where the documentation tag was not updated to match.
    
    This catches real issues such as:
      - xe_bo_types.h: @atomic_access (missing struct prefix, should be
        @attr.atomic_access)
      - xe_device_types.h: @usm.asid (member is actually asid_to_vm)
    
    Assisted-by: Claude:claude-opus-4.6
    Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch 3b9ca4c40814c96c38986ae2ba6651e43757ca5f drm-intel
8be55a4c2178 scripts/kernel-doc: Detect mismatched inline member documentation tags
-:22: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#22: 
Assisted-by: Claude:claude-opus-4.6

-:22: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#22: 
Assisted-by: Claude:claude-opus-4.6

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



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

* ✓ CI.KUnit: success for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (4 preceding siblings ...)
  2026-04-17  2:31 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3) Patchwork
@ 2026-04-17  2:33 ` Patchwork
  2026-04-17  3:55 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-17  2:33 UTC (permalink / raw)
  To: Lin, Shuicheng; +Cc: intel-xe

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
URL   : https://patchwork.freedesktop.org/series/164948/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (5 preceding siblings ...)
  2026-04-17  2:33 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-17  3:55 ` Patchwork
  2026-04-17  6:21 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-04-28  8:12 ` [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Jani Nikula
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-17  3:55 UTC (permalink / raw)
  To: Lin, Shuicheng; +Cc: intel-xe

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

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
URL   : https://patchwork.freedesktop.org/series/164948/
State : success

== Summary ==

CI Bug Log - changes from xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f_BAT -> xe-pw-164948v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f -> xe-pw-164948v3

  IGT_8863: 5b279a8b71dc1672099205a1a9e8135c7c7fadb5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f: 3b9ca4c40814c96c38986ae2ba6651e43757ca5f
  xe-pw-164948v3: 164948v3

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (6 preceding siblings ...)
  2026-04-17  3:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-17  6:21 ` Patchwork
  2026-04-28  8:12 ` [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Jani Nikula
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-17  6:21 UTC (permalink / raw)
  To: Lin, Shuicheng; +Cc: intel-xe

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

== Series Details ==

Series: scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3)
URL   : https://patchwork.freedesktop.org/series/164948/
State : failure

== Summary ==

CI Bug Log - changes from xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f_FULL -> xe-pw-164948v3_FULL
====================================================

Summary
-------

  **FAILURE**

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [PASS][1] -> [FAIL][2] +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html

  
New tests
---------

  New tests have been introduced between xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f_FULL and xe-pw-164948v3_FULL:

### New IGT tests (4) ###

  * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb2101010:
    - Statuses : 1 pass(s)
    - Exec time: [0.00] s

  * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
    - Statuses : 1 pass(s)
    - Exec time: [1.07] s

  * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010:
    - Statuses : 1 pass(s)
    - Exec time: [1.31] s

  

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

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

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

  * igt@kms_bw@linear-tiling-1-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#367] / [Intel XE#7354])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2887]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2252]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2390] / [Intel XE#6974])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2320])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#1508])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#4141]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2311]) +10 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2313]) +8 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#7061] / [Intel XE#7356])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#6911] / [Intel XE#7378])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#7283]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2505] / [Intel XE#7447])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#1489]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr@pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2234] / [Intel XE#2850])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#1406] / [Intel XE#2414])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#3904] / [Intel XE#7342])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html

  * igt@xe_eudebug@basic-vm-bind-discovery:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7636])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-discovery.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][30] -> [INCOMPLETE][31] ([Intel XE#6321])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#7136]) +5 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6874]) +7 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_threads@threads-multi-queue-cm-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#7138]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#6964])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html

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

  
#### Possible fixes ####

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [SKIP][37] ([Intel XE#1340]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-bmg:          [FAIL][39] ([Intel XE#3149]) -> [PASS][40] +1 other test pass
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][41] -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html

  * igt@kms_vrr@flipline:
    - shard-lnl:          [FAIL][43] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][44] +1 other test pass
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-lnl-6/igt@kms_vrr@flipline.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-lnl-8/igt@kms_vrr@flipline.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
    - shard-bmg:          [ABORT][45] ([Intel XE#7200]) -> [PASS][46] +1 other test pass
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [FAIL][47] ([Intel XE#5625]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  
#### Warnings ####

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          [TIMEOUT][49] -> [FAIL][50] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [ABORT][51] ([Intel XE#5545]) -> [SKIP][52] ([Intel XE#4141])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][53] ([Intel XE#2313]) -> [SKIP][54] ([Intel XE#2312])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][55] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][56] ([Intel XE#3544])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][57] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][58] ([Intel XE#2426] / [Intel XE#5848])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][59] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][60] ([Intel XE#2426] / [Intel XE#5848])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164948v3/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [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#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
  [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636


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

  * Linux: xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f -> xe-pw-164948v3

  IGT_8863: 5b279a8b71dc1672099205a1a9e8135c7c7fadb5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4919-3b9ca4c40814c96c38986ae2ba6651e43757ca5f: 3b9ca4c40814c96c38986ae2ba6651e43757ca5f
  xe-pw-164948v3: 164948v3

== Logs ==

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

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

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

* Re: [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags
  2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
                   ` (7 preceding siblings ...)
  2026-04-17  6:21 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-28  8:12 ` Jani Nikula
  8 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2026-04-28  8:12 UTC (permalink / raw)
  To: Shuicheng Lin, linux-kernel, intel-xe; +Cc: Shuicheng Lin, linux-doc

On Wed, 15 Apr 2026, Shuicheng Lin <shuicheng.lin@intel.com> wrote:
> Add validation in check_sections() to verify that inline member
> documentation tags (/** @member: description */) match actual struct/union
> member names. Previously, kernel-doc only validated section headers against
> the parameter list, but inline doc tags stored in parameterdescs were never
> cross-checked, allowing stale or mistyped member names to go undetected.
>
> The new check iterates over parameterdescs keys and warns about any that
> don't appear in the parameter list, catching issues like renamed struct
> members where the documentation tag was not updated to match.
>
> This catches real issues such as:
>   - xe_bo_types.h: @atomic_access (missing struct prefix, should be
>     @attr.atomic_access)
>   - xe_device_types.h: @usm.asid (member is actually asid_to_vm)
>
> Assisted-by: Claude:claude-opus-4.6
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>

Cc: linux-doc@vger.kernel.org

> ---
>  tools/lib/python/kdoc/kdoc_parser.py | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
>
> diff --git a/tools/lib/python/kdoc/kdoc_parser.py b/tools/lib/python/kdoc/kdoc_parser.py
> index ca00695b47b3..f21f06c0a9b0 100644
> --- a/tools/lib/python/kdoc/kdoc_parser.py
> +++ b/tools/lib/python/kdoc/kdoc_parser.py
> @@ -673,6 +673,31 @@ class KernelDoc:
>                  self.emit_msg(ln,
>                                f"Excess {dname} '{section}' description in '{decl_name}'")
>  
> +        #
> +        # Check that documented parameter names (from doc comments, including
> +        # inline ``/** @member: */`` tags) actually match real members in
> +        # the declaration.  This catches mismatched or stale kernel-doc
> +        # member tags that don't correspond to any actual struct/union
> +        # member or function parameter.
> +        #
> +        for param_name, desc in self.entry.parameterdescs.items():
> +            # Skip auto-generated entries from push_parameter()
> +            if desc == self.undescribed:
> +                continue
> +            if desc in ("no arguments", "anonymous\n", "variable arguments"):
> +                continue
> +            if param_name.startswith("{unnamed_"):
> +                continue
> +            if param_name in self.entry.parameterlist:
> +                continue
> +
> +            if decl_type == 'function':
> +                dname = f"{decl_type} parameter"
> +            else:
> +                dname = f"{decl_type} member"
> +            self.emit_msg(ln,
> +                          f"Excess {dname} '{param_name}' description in '{decl_name}'")
> +
>      def check_return_section(self, ln, declaration_name, return_type):
>          """
>          If the function doesn't return void, warns about the lack of a

-- 
Jani Nikula, Intel

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

end of thread, other threads:[~2026-04-28  8:12 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-15 21:50 [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Shuicheng Lin
2026-04-15 22:50 ` ✗ CI.checkpatch: warning for " Patchwork
2026-04-15 22:51 ` ✓ CI.KUnit: success " Patchwork
2026-04-16  1:01 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev2) Patchwork
2026-04-16  1:02 ` ✓ CI.KUnit: success " Patchwork
2026-04-17  2:31 ` ✗ CI.checkpatch: warning for scripts/kernel-doc: Detect mismatched inline member documentation tags (rev3) Patchwork
2026-04-17  2:33 ` ✓ CI.KUnit: success " Patchwork
2026-04-17  3:55 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-17  6:21 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-28  8:12 ` [PATCH] scripts/kernel-doc: Detect mismatched inline member documentation tags Jani Nikula

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