Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Page Reclamation Fixes
@ 2026-03-05 17:15 Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 1/3] drm/xe: Skip over non leaf pte for PRL generation Brian Nguyen
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Brian Nguyen @ 2026-03-05 17:15 UTC (permalink / raw)
  To: intel-xe; +Cc: Brian Nguyen

A few changes to the page reclamation code. Fix up the PRL generation and
move the page reclaim done handler to its own function.

Thanks,
Brian

v2:
 - Update non-leaf handling.
 - Re-add assert for non-leaf.git 

v3:
 - Modify secondary PRL abort to check non-leaf levels. (Matthew B)
 - In the case of NULL VMA, there should be no corresponding
   PRL entry, so leverage existing skip logic to skip over.

v4:
 - Rebase to get CI results.

Brian Nguyen (3):
  drm/xe: Skip over non leaf pte for PRL generation
  drm/xe: Move page reclaim done_handler to own func
  drm/xe: Skip adding PRL entry to NULL VMA

 drivers/gpu/drm/xe/xe_guc_ct.c       | 23 ++++++-----------
 drivers/gpu/drm/xe/xe_page_reclaim.c | 26 +++++++++++++++++++
 drivers/gpu/drm/xe/xe_page_reclaim.h |  3 +++
 drivers/gpu/drm/xe/xe_pt.c           | 38 +++++++++++++++++++++-------
 4 files changed, 66 insertions(+), 24 deletions(-)

-- 
2.43.0


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

* [PATCH v4 1/3] drm/xe: Skip over non leaf pte for PRL generation
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
@ 2026-03-05 17:15 ` Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 2/3] drm/xe: Move page reclaim done_handler to own func Brian Nguyen
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Brian Nguyen @ 2026-03-05 17:15 UTC (permalink / raw)
  To: intel-xe; +Cc: Brian Nguyen, Matthew Brost, Stuart Summers

The check using xe_child->base.children was insufficient in determining
if a pte was a leaf node. So explicitly skip over every non-leaf pt and
conditionally abort if there is a scenario where a non-leaf pt is
interleaved between leaf pt, which results in the page walker skipping
over some leaf pt.

Note that the behavior being targeted for abort is
PD[0] = 2M PTE
PD[1] = PT -> 512 4K PTEs
PD[2] = 2M PTE

results in abort, page walker won't descend PD[1].

With new abort, ensuring valid PRL before handling a second abort.

v2:
 - Revert to previous assert.
 - Revised non-leaf handling for interleaf child pt and leaf pte.
 - Update comments to specifications. (Stuart)
 - Remove unnecessary XE_PTE_PS64. (Matthew B)

v3:
 - Modify secondary abort to only check non-leaf PTEs. (Matthew B)

Fixes: b912138df299 ("drm/xe: Create page reclaim list on unbind")
Signed-off-by: Brian Nguyen <brian3.nguyen@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Cc: Stuart Summers <stuart.summers@intel.com>
---
 drivers/gpu/drm/xe/xe_pt.c | 38 +++++++++++++++++++++++++++++---------
 1 file changed, 29 insertions(+), 9 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 13b355fadd58..2d9ce2c4cb4f 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -1655,14 +1655,35 @@ static int xe_pt_stage_unbind_entry(struct xe_ptw *parent, pgoff_t offset,
 	XE_WARN_ON(!level);
 	/* Check for leaf node */
 	if (xe_walk->prl && xe_page_reclaim_list_valid(xe_walk->prl) &&
-	    (!xe_child->base.children || !xe_child->base.children[first])) {
+	    xe_child->level <= MAX_HUGEPTE_LEVEL) {
 		struct iosys_map *leaf_map = &xe_child->bo->vmap;
 		pgoff_t count = xe_pt_num_entries(addr, next, xe_child->level, walk);
 
 		for (pgoff_t i = 0; i < count; i++) {
-			u64 pte = xe_map_rd(xe, leaf_map, (first + i) * sizeof(u64), u64);
+			u64 pte;
 			int ret;
 
+			/*
+			 * If not a leaf pt, skip unless non-leaf pt is interleaved between
+			 * leaf ptes which causes the page walk to skip over the child leaves
+			 */
+			if (xe_child->base.children && xe_child->base.children[first + i]) {
+				u64 pt_size = 1ULL << walk->shifts[xe_child->level];
+				bool edge_pt = (i == 0 && !IS_ALIGNED(addr, pt_size)) ||
+					       (i == count - 1 && !IS_ALIGNED(next, pt_size));
+
+				if (!edge_pt) {
+					xe_page_reclaim_list_abort(xe_walk->tile->primary_gt,
+								   xe_walk->prl,
+								   "PT is skipped by walk at level=%u offset=%lu",
+								   xe_child->level, first + i);
+					break;
+				}
+				continue;
+			}
+
+			pte = xe_map_rd(xe, leaf_map, (first + i) * sizeof(u64), u64);
+
 			/*
 			 * In rare scenarios, pte may not be written yet due to racy conditions.
 			 * In such cases, invalidate the PRL and fallback to full PPC invalidation.
@@ -1674,9 +1695,8 @@ static int xe_pt_stage_unbind_entry(struct xe_ptw *parent, pgoff_t offset,
 			}
 
 			/* Ensure it is a defined page */
-			xe_tile_assert(xe_walk->tile,
-				       xe_child->level == 0 ||
-				       (pte & (XE_PTE_PS64 | XE_PDE_PS_2M | XE_PDPE_PS_1G)));
+			xe_tile_assert(xe_walk->tile, xe_child->level == 0 ||
+				       (pte & (XE_PDE_PS_2M | XE_PDPE_PS_1G)));
 
 			/* An entry should be added for 64KB but contigious 4K have XE_PTE_PS64 */
 			if (pte & XE_PTE_PS64)
@@ -1701,11 +1721,11 @@ static int xe_pt_stage_unbind_entry(struct xe_ptw *parent, pgoff_t offset,
 	killed = xe_pt_check_kill(addr, next, level - 1, xe_child, action, walk);
 
 	/*
-	 * Verify PRL is active and if entry is not a leaf pte (base.children conditions),
-	 * there is a potential need to invalidate the PRL if any PTE (num_live) are dropped.
+	 * Verify if any PTE are potentially dropped at non-leaf levels, either from being
+	 * killed or the page walk covers the region.
 	 */
-	if (xe_walk->prl && level > 1 && xe_child->num_live &&
-	    xe_child->base.children && xe_child->base.children[first]) {
+	if (xe_walk->prl && xe_page_reclaim_list_valid(xe_walk->prl) &&
+	    xe_child->level > MAX_HUGEPTE_LEVEL && xe_child->num_live) {
 		bool covered = xe_pt_covers(addr, next, xe_child->level, &xe_walk->base);
 
 		/*
-- 
2.43.0


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

* [PATCH v4 2/3] drm/xe: Move page reclaim done_handler to own func
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 1/3] drm/xe: Skip over non leaf pte for PRL generation Brian Nguyen
@ 2026-03-05 17:15 ` Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 3/3] drm/xe: Skip adding PRL entry to NULL VMA Brian Nguyen
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Brian Nguyen @ 2026-03-05 17:15 UTC (permalink / raw)
  To: intel-xe; +Cc: Brian Nguyen, Matthew Brost, Shuicheng Lin, Stuart Summers

Originally, page reclamation is handled by the same fence as tlb
invalidation and uses its seqno, so there was no reason to separate out
the handlers. However in hindsight, for readability, and possible
future changes, it seems more beneficial to move this all out to its own
function.

Signed-off-by: Brian Nguyen <brian3.nguyen@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>
Reviewed-by: Stuart Summers <stuart.summers@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_ct.c       | 23 ++++++++---------------
 drivers/gpu/drm/xe/xe_page_reclaim.c | 20 ++++++++++++++++++++
 drivers/gpu/drm/xe/xe_page_reclaim.h |  3 +++
 3 files changed, 31 insertions(+), 15 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 496c6c77bee6..581a9c2e28ed 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -31,6 +31,7 @@
 #include "xe_guc_submit.h"
 #include "xe_guc_tlb_inval.h"
 #include "xe_map.h"
+#include "xe_page_reclaim.h"
 #include "xe_pm.h"
 #include "xe_sleep.h"
 #include "xe_sriov_vf.h"
@@ -1629,17 +1630,11 @@ static int process_g2h_msg(struct xe_guc_ct *ct, u32 *msg, u32 len)
 		ret = xe_guc_pagefault_handler(guc, payload, adj_len);
 		break;
 	case XE_GUC_ACTION_TLB_INVALIDATION_DONE:
-	case XE_GUC_ACTION_PAGE_RECLAMATION_DONE:
-		/*
-		 * Page reclamation is an extension of TLB invalidation. Both
-		 * operations share the same seqno and fence. When either
-		 * action completes, we need to signal the corresponding
-		 * fence. Since the handling logic (lookup fence by seqno,
-		 * fence signalling) is identical, we use the same handler
-		 * for both G2H events.
-		 */
 		ret = xe_guc_tlb_inval_done_handler(guc, payload, adj_len);
 		break;
+	case XE_GUC_ACTION_PAGE_RECLAMATION_DONE:
+		ret = xe_guc_page_reclaim_done_handler(guc, payload, adj_len);
+		break;
 	case XE_GUC_ACTION_GUC2PF_RELAY_FROM_VF:
 		ret = xe_guc_relay_process_guc2pf(&guc->relay, hxg, hxg_len);
 		break;
@@ -1847,15 +1842,13 @@ static void g2h_fast_path(struct xe_guc_ct *ct, u32 *msg, u32 len)
 		ret = xe_guc_pagefault_handler(guc, payload, adj_len);
 		break;
 	case XE_GUC_ACTION_TLB_INVALIDATION_DONE:
-	case XE_GUC_ACTION_PAGE_RECLAMATION_DONE:
-		/*
-		 * Seqno and fence handling of page reclamation and TLB
-		 * invalidation is identical, so we can use the same handler
-		 * for both actions.
-		 */
 		__g2h_release_space(ct, len);
 		ret = xe_guc_tlb_inval_done_handler(guc, payload, adj_len);
 		break;
+	case XE_GUC_ACTION_PAGE_RECLAMATION_DONE:
+		__g2h_release_space(ct, len);
+		ret = xe_guc_page_reclaim_done_handler(guc, payload, adj_len);
+		break;
 	default:
 		xe_gt_warn(gt, "NOT_POSSIBLE\n");
 	}
diff --git a/drivers/gpu/drm/xe/xe_page_reclaim.c b/drivers/gpu/drm/xe/xe_page_reclaim.c
index e13c71a89da2..60b0fda59ce3 100644
--- a/drivers/gpu/drm/xe/xe_page_reclaim.c
+++ b/drivers/gpu/drm/xe/xe_page_reclaim.c
@@ -11,6 +11,7 @@
 #include "xe_page_reclaim.h"
 
 #include "xe_gt_stats.h"
+#include "xe_guc_tlb_inval.h"
 #include "xe_macros.h"
 #include "xe_pat.h"
 #include "xe_sa.h"
@@ -130,3 +131,22 @@ int xe_page_reclaim_list_alloc_entries(struct xe_page_reclaim_list *prl)
 
 	return page ? 0 : -ENOMEM;
 }
+
+/**
+ * xe_guc_page_reclaim_done_handler() - Page reclaim done handler
+ * @guc: guc
+ * @msg: message indicating page reclamation done
+ * @len: length of message
+ *
+ * Page reclamation is an extension of TLB invalidation. Both
+ * operations share the same seqno and fence. When either
+ * action completes, we need to signal the corresponding
+ * fence. Since the handling logic is currently identical, this
+ * function delegates to the TLB invalidation handler.
+ *
+ * Return: 0 on success, -EPROTO for malformed messages.
+ */
+int xe_guc_page_reclaim_done_handler(struct xe_guc *guc, u32 *msg, u32 len)
+{
+	return xe_guc_tlb_inval_done_handler(guc, msg, len);
+}
diff --git a/drivers/gpu/drm/xe/xe_page_reclaim.h b/drivers/gpu/drm/xe/xe_page_reclaim.h
index 3dd103e37beb..0412611f3af7 100644
--- a/drivers/gpu/drm/xe/xe_page_reclaim.h
+++ b/drivers/gpu/drm/xe/xe_page_reclaim.h
@@ -20,6 +20,7 @@ struct xe_tlb_inval;
 struct xe_tlb_inval_fence;
 struct xe_tile;
 struct xe_gt;
+struct xe_guc;
 struct xe_vma;
 
 struct xe_guc_page_reclaim_entry {
@@ -122,4 +123,6 @@ static inline void xe_page_reclaim_entries_put(struct xe_guc_page_reclaim_entry
 		put_page(virt_to_page(entries));
 }
 
+int xe_guc_page_reclaim_done_handler(struct xe_guc *guc, u32 *msg, u32 len);
+
 #endif	/* _XE_PAGE_RECLAIM_H_ */
-- 
2.43.0


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

* [PATCH v4 3/3] drm/xe: Skip adding PRL entry to NULL VMA
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 1/3] drm/xe: Skip over non leaf pte for PRL generation Brian Nguyen
  2026-03-05 17:15 ` [PATCH v4 2/3] drm/xe: Move page reclaim done_handler to own func Brian Nguyen
@ 2026-03-05 17:15 ` Brian Nguyen
  2026-03-06 15:33 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev4) Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Brian Nguyen @ 2026-03-05 17:15 UTC (permalink / raw)
  To: intel-xe; +Cc: Brian Nguyen, Matthew Brost

NULL VMAs have no corresponding PTE, so skip adding a PRL entry to avoid
an unnecessary PRL abort during unbind.

Signed-off-by: Brian Nguyen <brian3.nguyen@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_page_reclaim.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_page_reclaim.c b/drivers/gpu/drm/xe/xe_page_reclaim.c
index 60b0fda59ce3..da1ed99cd3f8 100644
--- a/drivers/gpu/drm/xe/xe_page_reclaim.c
+++ b/drivers/gpu/drm/xe/xe_page_reclaim.c
@@ -27,12 +27,18 @@
  * flushes.
  * - pat_index is transient display (1)
  *
+ * For cases of NULL VMA, there should be no corresponding PRL entry
+ * so skip over.
+ *
  * Return: true when page reclamation is unnecessary, false otherwise.
  */
 bool xe_page_reclaim_skip(struct xe_tile *tile, struct xe_vma *vma)
 {
 	u8 l3_policy;
 
+	if (xe_vma_is_null(vma))
+		return true;
+
 	l3_policy = xe_pat_index_get_l3_policy(tile->xe, vma->attr.pat_index);
 
 	/*
-- 
2.43.0


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

* ✓ CI.KUnit: success for Page Reclamation Fixes (rev4)
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
                   ` (2 preceding siblings ...)
  2026-03-05 17:15 ` [PATCH v4 3/3] drm/xe: Skip adding PRL entry to NULL VMA Brian Nguyen
@ 2026-03-06 15:33 ` Patchwork
  2026-03-06 16:36 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-06 15:33 UTC (permalink / raw)
  To: Brian Nguyen; +Cc: intel-xe

== Series Details ==

Series: Page Reclamation Fixes (rev4)
URL   : https://patchwork.freedesktop.org/series/162258/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for Page Reclamation Fixes (rev4)
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
                   ` (3 preceding siblings ...)
  2026-03-06 15:33 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev4) Patchwork
@ 2026-03-06 16:36 ` Patchwork
  2026-03-07  1:53 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev5) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-06 16:36 UTC (permalink / raw)
  To: Brian Nguyen; +Cc: intel-xe

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

== Series Details ==

Series: Page Reclamation Fixes (rev4)
URL   : https://patchwork.freedesktop.org/series/162258/
State : failure

== Summary ==

CI Bug Log - changes from xe-4674-a48305e6a2e6a1ed90df374101dd29542c105d8f_BAT -> xe-pw-162258v4_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-162258v4_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-162258v4_BAT, 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 (15 -> 4)
------------------------------

  ERROR: It appears as if the changes made in xe-pw-162258v4_BAT prevented too many machines from booting.

  Missing    (11): bat-bmg-1 bat-lnl-2 bat-pvc-2 bat-lnl-1 bat-ptl-vm bat-atsm-2 bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7 


Changes
-------

  No changes found


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

  * IGT: IGT_8782 -> IGT_8783
  * Linux: xe-4674-a48305e6a2e6a1ed90df374101dd29542c105d8f -> xe-pw-162258v4

  IGT_8782: eac3b04d1f76b82ac3a183fb293c44e9185d8dba @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4674-a48305e6a2e6a1ed90df374101dd29542c105d8f: a48305e6a2e6a1ed90df374101dd29542c105d8f
  xe-pw-162258v4: 162258v4

== Logs ==

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

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

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

* ✓ CI.KUnit: success for Page Reclamation Fixes (rev5)
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
                   ` (4 preceding siblings ...)
  2026-03-06 16:36 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-03-07  1:53 ` Patchwork
  2026-03-07  2:46 ` ✓ Xe.CI.BAT: " Patchwork
  2026-03-08  5:33 ` ✗ Xe.CI.FULL: failure " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-07  1:53 UTC (permalink / raw)
  To: Brian Nguyen; +Cc: intel-xe

== Series Details ==

Series: Page Reclamation Fixes (rev5)
URL   : https://patchwork.freedesktop.org/series/162258/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Page Reclamation Fixes (rev5)
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
                   ` (5 preceding siblings ...)
  2026-03-07  1:53 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev5) Patchwork
@ 2026-03-07  2:46 ` Patchwork
  2026-03-08  5:33 ` ✗ Xe.CI.FULL: failure " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-07  2:46 UTC (permalink / raw)
  To: Brian Nguyen; +Cc: intel-xe

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

== Series Details ==

Series: Page Reclamation Fixes (rev5)
URL   : https://patchwork.freedesktop.org/series/162258/
State : success

== Summary ==

CI Bug Log - changes from xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a_BAT -> xe-pw-162258v5_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (3): bat-wcl-1 bat-dg2-oem2 bat-atsm-2 

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

  Here are the changes found in xe-pw-162258v5_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - bat-atsm-2:         NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@fbdev@info.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-wcl-1:          NOTRUN -> [SKIP][2] ([Intel XE#7245])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-oem2:       NOTRUN -> [SKIP][3] ([Intel XE#623])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-set-prop-any:
    - bat-atsm-2:         NOTRUN -> [SKIP][4] ([i915#6077]) +30 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-2:         NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_dsc@dsc-basic:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][6] ([Intel XE#2244] / [Intel XE#455])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
    - bat-atsm-2:         NOTRUN -> [SKIP][7] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_dsc@dsc-basic.html
    - bat-wcl-1:          NOTRUN -> [SKIP][8] ([Intel XE#7244])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_frontbuffer_tracking@basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][9] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_hdmi_inject@inject-audio:
    - bat-atsm-2:         NOTRUN -> [SKIP][10] ([Intel XE#540]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-atsm-2:         NOTRUN -> [SKIP][11] ([Intel XE#829] / [i915#1836]) +6 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-2:         NOTRUN -> [SKIP][12] ([Intel XE#780])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_prop_blob@basic.html

  * igt@kms_psr@psr-cursor-plane-move:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][13] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr-primary-page-flip:
    - bat-atsm-2:         NOTRUN -> [SKIP][14] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][15] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_evict@evict-small-external-cm:
    - bat-wcl-1:          NOTRUN -> [SKIP][16] ([Intel XE#7238]) +11 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_exec_balancer@twice-virtual-rebind:
    - bat-wcl-1:          NOTRUN -> [SKIP][17] ([Intel XE#7482]) +17 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][18] ([Intel XE#288]) +32 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][19] ([Intel XE#288]) +32 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  * igt@xe_huc_copy@huc_copy:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][20] ([Intel XE#255])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
    - bat-atsm-2:         NOTRUN -> [SKIP][21] ([Intel XE#255])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][22] ([Intel XE#2229])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - bat-atsm-2:         NOTRUN -> [SKIP][23] ([Intel XE#2229])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
    - bat-wcl-1:          NOTRUN -> [SKIP][24] ([Intel XE#7239]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-wcl-1:          NOTRUN -> [SKIP][25] ([Intel XE#7243])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xe2:
    - bat-atsm-2:         NOTRUN -> [SKIP][26] ([Intel XE#977])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
    - bat-dg2-oem2:       NOTRUN -> [SKIP][27] ([Intel XE#977])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-wcl-1:          NOTRUN -> [SKIP][28] ([Intel XE#7247])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html
    - bat-dg2-oem2:       NOTRUN -> [SKIP][29] ([Intel XE#2838] / [Intel XE#979])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
    - bat-atsm-2:         NOTRUN -> [SKIP][30] ([Intel XE#2838] / [Intel XE#979])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-wcl-1:          NOTRUN -> [SKIP][31] ([Intel XE#7242])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-wcl-1:          NOTRUN -> [SKIP][32] ([Intel XE#7248])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html
    - bat-dg2-oem2:       NOTRUN -> [SKIP][33] ([Intel XE#979])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html
    - bat-atsm-2:         NOTRUN -> [SKIP][34] ([Intel XE#979])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - bat-dg2-oem2:       NOTRUN -> [SKIP][35] ([Intel XE#3342])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html

  
  [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238
  [Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239
  [Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242
  [Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243
  [Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244
  [Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245
  [Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247
  [Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
  [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
  [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
  [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
  [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
  [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077


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

  * Linux: xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a -> xe-pw-162258v5

  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a: fce8d7fb2107068c269b868d51aba5f9cf85998a
  xe-pw-162258v5: 162258v5

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for Page Reclamation Fixes (rev5)
  2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
                   ` (6 preceding siblings ...)
  2026-03-07  2:46 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-08  5:33 ` Patchwork
  2026-03-11 18:14   ` Nguyen, Brian
  7 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2026-03-08  5:33 UTC (permalink / raw)
  To: Brian Nguyen; +Cc: intel-xe

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

== Series Details ==

Series: Page Reclamation Fixes (rev5)
URL   : https://patchwork.freedesktop.org/series/162258/
State : failure

== Summary ==

CI Bug Log - changes from xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a_FULL -> xe-pw-162258v5_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2:
    - shard-bmg:          [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-5/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-1/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html

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

  Here are the changes found in xe-pw-162258v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-bmg:          [PASS][3] -> [DMESG-WARN][4] ([Intel XE#7129])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][5] -> [INCOMPLETE][6] ([Intel XE#6321])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  
#### Possible fixes ####

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp2:
    - shard-bmg:          [FAIL][7] ([Intel XE#3098]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-1/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp2.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-8/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [FAIL][9] ([Intel XE#7545]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][11] ([Intel XE#301]) -> [PASS][12] +2 other tests pass
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
    - shard-bmg:          [FAIL][13] -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html

  * igt@xe_pm_residency@aspm_link_residency:
    - shard-bmg:          [SKIP][15] ([Intel XE#7258]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-6/igt@xe_pm_residency@aspm_link_residency.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-10/igt@xe_pm_residency@aspm_link_residency.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][17] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][18] ([Intel XE#1729] / [Intel XE#7424])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#7129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7129
  [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7545


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

  * Linux: xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a -> xe-pw-162258v5

  IGT_8783: b5051dc2e867005c758c707312aa9cf9d1dc3291 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a: fce8d7fb2107068c269b868d51aba5f9cf85998a
  xe-pw-162258v5: 162258v5

== Logs ==

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

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

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

* Re: ✗ Xe.CI.FULL: failure for Page Reclamation Fixes (rev5)
  2026-03-08  5:33 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-11 18:14   ` Nguyen, Brian
  2026-03-16 16:44     ` Matt Roper
  0 siblings, 1 reply; 11+ messages in thread
From: Nguyen, Brian @ 2026-03-11 18:14 UTC (permalink / raw)
  To: intel-xe

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


On 3/7/2026 9:33 PM, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* 	Page Reclamation Fixes (rev5)
> *URL:* 	https://patchwork.freedesktop.org/series/162258/
> *State:* 	failure
> *Details:* 
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/index.html
>
>
>   CI Bug Log - changes from
>   xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a_FULL ->
>   xe-pw-162258v5_FULL
>
>
>     Summary
>
> *FAILURE*
>
> Serious unknown changes coming with xe-pw-162258v5_FULL absolutely 
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-162258v5_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-162258v5_FULL:
>
>
>       IGT changes
>
>
>         Possible regressions
>
>   * igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2:
>       o shard-bmg: PASS
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-5/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-1/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html>
>         +1 other test incomplete
>
Failure is unrelated to the patch series changes. CI looks healthy for 
this patch series.

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

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

* Re: ✗ Xe.CI.FULL: failure for Page Reclamation Fixes (rev5)
  2026-03-11 18:14   ` Nguyen, Brian
@ 2026-03-16 16:44     ` Matt Roper
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Roper @ 2026-03-16 16:44 UTC (permalink / raw)
  To: Nguyen, Brian; +Cc: intel-xe

On Wed, Mar 11, 2026 at 11:14:37AM -0700, Nguyen, Brian wrote:
> 
> On 3/7/2026 9:33 PM, Patchwork wrote:
> > Project List - Patchwork *Patch Details*
> > *Series:* 	Page Reclamation Fixes (rev5)
> > *URL:* 	https://patchwork.freedesktop.org/series/162258/
> > *State:* 	failure
> > *Details:*
> > https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/index.html
> > 
> > 
> >   CI Bug Log - changes from
> >   xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a_FULL ->
> >   xe-pw-162258v5_FULL
> > 
> > 
> >     Summary
> > 
> > *FAILURE*
> > 
> > Serious unknown changes coming with xe-pw-162258v5_FULL absolutely need
> > to be
> > verified manually.
> > 
> > If you think the reported changes have nothing to do with the changes
> > introduced in xe-pw-162258v5_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-162258v5_FULL:
> > 
> > 
> >       IGT changes
> > 
> > 
> >         Possible regressions
> > 
> >   * igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2:
> >       o shard-bmg: PASS
> >         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-4675-fce8d7fb2107068c269b868d51aba5f9cf85998a/shard-bmg-5/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html>
> >         -> INCOMPLETE
> >         <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-162258v5/shard-bmg-1/igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-2.html>
> >         +1 other test incomplete
> > 
> Failure is unrelated to the patch series changes. CI looks healthy for this
> patch series.

Applied to drm-xe-next.  Thanks for the patches and reviews.


Matt

-- 
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation

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

end of thread, other threads:[~2026-03-16 16:44 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-05 17:15 [PATCH v4 0/3] Page Reclamation Fixes Brian Nguyen
2026-03-05 17:15 ` [PATCH v4 1/3] drm/xe: Skip over non leaf pte for PRL generation Brian Nguyen
2026-03-05 17:15 ` [PATCH v4 2/3] drm/xe: Move page reclaim done_handler to own func Brian Nguyen
2026-03-05 17:15 ` [PATCH v4 3/3] drm/xe: Skip adding PRL entry to NULL VMA Brian Nguyen
2026-03-06 15:33 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev4) Patchwork
2026-03-06 16:36 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-03-07  1:53 ` ✓ CI.KUnit: success for Page Reclamation Fixes (rev5) Patchwork
2026-03-07  2:46 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-08  5:33 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-11 18:14   ` Nguyen, Brian
2026-03-16 16:44     ` Matt Roper

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