public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening
@ 2026-04-15 23:02 Xin Wang
  2026-04-15 23:02 ` [PATCH v4 1/3] drm/xe: Standardize pat_index to u16 type Xin Wang
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Xin Wang @ 2026-04-15 23:02 UTC (permalink / raw)
  To: intel-xe; +Cc: Xin Wang, Matthew Auld

Small follow-up series to harden the PAT subsystem:

Patch 1 fixes two remaining spots where pat_index was typed as u32/int
instead of u16, aligning with the rest of the driver.

Patch 2 defaults XE_CACHE_NONE_COMPRESSION to XE_PAT_INVALID_IDX (like
WB_COMPRESSION already does).

Patch 3 introduces xe_cache_pat_idx(), a macro helper that validates
cache_mode bounds and checks for XE_PAT_INVALID_IDX before returning the
PAT index. All 20 pat.idx[] read sites across the driver are converted.

Suggested-by: Matthew Auld <matthew.auld@intel.com>

v4:
- Adopted a strictly decoupled approach for the `xe_cache_pat_idx()` macro
  helper. Dropped any new header dependencies (e.g. `xe_device_types.h`
  or `xe_pt_types.h`) from `xe_pat.h`, relying cleanly on the compilation
  contexts where the macro is expanded. Forward declarations are kept
  untouched.

v3:
- Rebased on latest drm-tip

v2:
- Dropped xe_assert() guards from xe_migrate that were added in v1 patch 2;
  the new helper in patch 3 now provides the same coverage uniformly across
  all call sites (Matthew Auld)
- New patch 3: xe_cache_pat_idx() helper with xe_assert() for every
  pat.idx[] read access, including bounds check on cache_mode

Xin Wang (3):
  drm/xe: Standardize pat_index to u16 type
  drm/xe/pat: Default XE_CACHE_NONE_COMPRESSION to invalid
  drm/xe/pat: Introduce xe_cache_pat_idx() macro helper

 drivers/gpu/drm/xe/display/xe_fb_pin.c | 11 ++++++-----
 drivers/gpu/drm/xe/tests/xe_migrate.c  |  3 ++-
 drivers/gpu/drm/xe/xe_device_types.h   |  2 +-
 drivers/gpu/drm/xe/xe_ggtt.c           |  7 ++++---
 drivers/gpu/drm/xe/xe_migrate.c        | 15 ++++++++-------
 drivers/gpu/drm/xe/xe_pat.c            |  1 +
 drivers/gpu/drm/xe/xe_pat.h            |  8 ++++++++
 drivers/gpu/drm/xe/xe_pt.c             |  3 ++-
 drivers/gpu/drm/xe/xe_vm.c             |  8 ++++----
 9 files changed, 36 insertions(+), 22 deletions(-)

-- 
2.43.0


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

* [PATCH v4 1/3] drm/xe: Standardize pat_index to u16 type
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
@ 2026-04-15 23:02 ` Xin Wang
  2026-04-15 23:02 ` [PATCH v4 2/3] drm/xe/pat: Default XE_CACHE_NONE_COMPRESSION to invalid Xin Wang
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Xin Wang @ 2026-04-15 23:02 UTC (permalink / raw)
  To: intel-xe; +Cc: Xin Wang, Matthew Auld

Ensure all pat_index definitions consistently use u16 type across
the XE driver. This addresses two remaining instances where pat_index
was incorrectly typed:

- xe_vm_snapshot structure used int for pat_index field
- xe_device pat.idx array used u32 instead of u16

This cleanup improves type consistency and ensures proper alignment
with the PAT subsystem design.

Signed-off-by: Xin Wang <x.wang@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
 drivers/gpu/drm/xe/xe_device_types.h | 2 +-
 drivers/gpu/drm/xe/xe_vm.c           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 150c76b2acaf..51af55020ae0 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -403,7 +403,7 @@ struct xe_device {
 		const struct xe_pat_table_entry *pat_primary_pta;
 		/** @pat.pat_media_pta: media GT PAT entry for page table accesses */
 		const struct xe_pat_table_entry *pat_media_pta;
-		u32 idx[__XE_CACHE_LEVEL_COUNT];
+		u16 idx[__XE_CACHE_LEVEL_COUNT];
 	} pat;
 
 	/** @d3cold: Encapsulate d3cold related stuff */
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 2408b547ca3d..f97c7af2f17c 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4407,7 +4407,7 @@ struct xe_vm_snapshot {
 #define XE_VM_SNAP_FLAG_IS_NULL		BIT(2)
 		unsigned long flags;
 		int uapi_mem_region;
-		int pat_index;
+		u16 pat_index;
 		int cpu_caching;
 		struct xe_bo *bo;
 		void *data;
-- 
2.43.0


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

* [PATCH v4 2/3] drm/xe/pat: Default XE_CACHE_NONE_COMPRESSION to invalid
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
  2026-04-15 23:02 ` [PATCH v4 1/3] drm/xe: Standardize pat_index to u16 type Xin Wang
@ 2026-04-15 23:02 ` Xin Wang
  2026-04-15 23:02 ` [PATCH v4 3/3] drm/xe/pat: Introduce xe_cache_pat_idx() macro helper Xin Wang
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Xin Wang @ 2026-04-15 23:02 UTC (permalink / raw)
  To: intel-xe; +Cc: Xin Wang, Matthew Auld, Matt Roper

Initialize XE_CACHE_NONE_COMPRESSION PAT index to XE_PAT_INVALID_IDX by
default, same as XE_CACHE_WB_COMPRESSION. Platforms that support this
cache mode will override it in xe_pat_init_early(). This ensures that
accidental use on unsupported platforms can be detected.

A subsequent patch introduces a helper to assert on invalid PAT index
access at all call sites.

Suggested-by: Matthew Auld <matthew.auld@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
 drivers/gpu/drm/xe/xe_pat.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/xe/xe_pat.c b/drivers/gpu/drm/xe/xe_pat.c
index 75aaae7b003d..fad5b5a5ed4a 100644
--- a/drivers/gpu/drm/xe/xe_pat.c
+++ b/drivers/gpu/drm/xe/xe_pat.c
@@ -559,6 +559,7 @@ static const struct xe_pat_ops xe3p_xpc_pat_ops = {
 void xe_pat_init_early(struct xe_device *xe)
 {
 	xe->pat.idx[XE_CACHE_WB_COMPRESSION] = XE_PAT_INVALID_IDX;
+	xe->pat.idx[XE_CACHE_NONE_COMPRESSION] = XE_PAT_INVALID_IDX;
 	if (GRAPHICS_VERx100(xe) == 3511) {
 		xe->pat.ops = &xe3p_xpc_pat_ops;
 		xe->pat.table = xe3p_xpc_pat_table;
-- 
2.43.0


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

* [PATCH v4 3/3] drm/xe/pat: Introduce xe_cache_pat_idx() macro helper
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
  2026-04-15 23:02 ` [PATCH v4 1/3] drm/xe: Standardize pat_index to u16 type Xin Wang
  2026-04-15 23:02 ` [PATCH v4 2/3] drm/xe/pat: Default XE_CACHE_NONE_COMPRESSION to invalid Xin Wang
@ 2026-04-15 23:02 ` Xin Wang
  2026-04-15 23:55 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Xin Wang @ 2026-04-15 23:02 UTC (permalink / raw)
  To: intel-xe; +Cc: Xin Wang, Matthew Auld

Wrap pat.idx[] reads with xe_cache_pat_idx() so invalid PAT index use
is caught by xe_assert() in debug builds.

Suggested-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
 drivers/gpu/drm/xe/display/xe_fb_pin.c | 11 ++++++-----
 drivers/gpu/drm/xe/tests/xe_migrate.c  |  3 ++-
 drivers/gpu/drm/xe/xe_ggtt.c           |  7 ++++---
 drivers/gpu/drm/xe/xe_migrate.c        | 15 ++++++++-------
 drivers/gpu/drm/xe/xe_pat.h            |  8 ++++++++
 drivers/gpu/drm/xe/xe_pt.c             |  3 ++-
 drivers/gpu/drm/xe/xe_vm.c             |  6 +++---
 7 files changed, 33 insertions(+), 20 deletions(-)

diff --git a/drivers/gpu/drm/xe/display/xe_fb_pin.c b/drivers/gpu/drm/xe/display/xe_fb_pin.c
index e45a1e7a4670..d670a3cf1b84 100644
--- a/drivers/gpu/drm/xe/display/xe_fb_pin.c
+++ b/drivers/gpu/drm/xe/display/xe_fb_pin.c
@@ -14,6 +14,7 @@
 #include "xe_device.h"
 #include "xe_display_vma.h"
 #include "xe_ggtt.h"
+#include "xe_pat.h"
 #include "xe_pm.h"
 #include "xe_vram_types.h"
 
@@ -24,7 +25,7 @@ write_dpt_rotated(struct xe_bo *bo, struct iosys_map *map, u32 *dpt_ofs, u32 bo_
 	struct xe_device *xe = xe_bo_device(bo);
 	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
 	u32 column, row;
-	u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe->pat.idx[XE_CACHE_NONE]);
+	u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe_cache_pat_idx(xe, XE_CACHE_NONE));
 
 	/* TODO: Maybe rewrite so we can traverse the bo addresses sequentially,
 	 * by writing dpt/ggtt in a different order?
@@ -64,7 +65,7 @@ write_dpt_remapped_linear(struct xe_bo *bo, struct iosys_map *map,
 	struct xe_device *xe = xe_bo_device(bo);
 	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
 	const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
-						 xe->pat.idx[XE_CACHE_NONE]);
+						 xe_cache_pat_idx(xe, XE_CACHE_NONE));
 	unsigned int offset = plane->offset * XE_PAGE_SIZE;
 	unsigned int size = plane->size;
 
@@ -87,7 +88,7 @@ write_dpt_remapped_tiled(struct xe_bo *bo, struct iosys_map *map,
 	struct xe_device *xe = xe_bo_device(bo);
 	struct xe_ggtt *ggtt = xe_device_get_root_tile(xe)->mem.ggtt;
 	const u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo,
-						 xe->pat.idx[XE_CACHE_NONE]);
+						 xe_cache_pat_idx(xe, XE_CACHE_NONE));
 	unsigned int offset, column, row;
 
 	for (row = 0; row < plane->height; row++) {
@@ -190,7 +191,7 @@ static int __xe_pin_fb_vma_dpt(const struct intel_framebuffer *fb,
 		return PTR_ERR(dpt);
 
 	if (view->type == I915_GTT_VIEW_NORMAL) {
-		u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe->pat.idx[XE_CACHE_NONE]);
+		u64 pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe_cache_pat_idx(xe, XE_CACHE_NONE));
 		u32 x;
 
 		for (x = 0; x < size / XE_PAGE_SIZE; x++) {
@@ -306,7 +307,7 @@ static int __xe_pin_fb_vma_ggtt(const struct intel_framebuffer *fb,
 		/* display uses tiles instead of bytes here, so convert it back.. */
 		size = intel_rotation_info_size(&view->rotated) * XE_PAGE_SIZE;
 
-	pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe->pat.idx[XE_CACHE_NONE]);
+	pte = xe_ggtt_encode_pte_flags(ggtt, bo, xe_cache_pat_idx(xe, XE_CACHE_NONE));
 	vma->node = xe_ggtt_insert_node_transform(ggtt, bo, pte,
 						  ALIGN(size, align), align,
 						  view->type == I915_GTT_VIEW_NORMAL ?
diff --git a/drivers/gpu/drm/xe/tests/xe_migrate.c b/drivers/gpu/drm/xe/tests/xe_migrate.c
index 34e2f0f4631f..50a97705e0ac 100644
--- a/drivers/gpu/drm/xe/tests/xe_migrate.c
+++ b/drivers/gpu/drm/xe/tests/xe_migrate.c
@@ -9,6 +9,7 @@
 #include "tests/xe_kunit_helpers.h"
 #include "tests/xe_pci_test.h"
 
+#include "xe_pat.h"
 #include "xe_pci.h"
 #include "xe_pm.h"
 
@@ -246,7 +247,7 @@ static void xe_migrate_sanity_test(struct xe_migrate *m, struct kunit *test,
 	/* First part of the test, are we updating our pagetable bo with a new entry? */
 	xe_map_wr(xe, &bo->vmap, XE_PAGE_SIZE * (NUM_KERNEL_PDE - 1), u64,
 		  0xdeaddeadbeefbeef);
-	expected = m->q->vm->pt_ops->pte_encode_bo(pt, 0, xe->pat.idx[XE_CACHE_WB], 0);
+	expected = m->q->vm->pt_ops->pte_encode_bo(pt, 0, xe_cache_pat_idx(xe, XE_CACHE_WB), 0);
 	if (m->q->vm->flags & XE_VM_FLAG_64K)
 		expected |= XE_PTE_PS64;
 	if (xe_bo_is_vram(pt))
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index 3552fa3cac4b..a351c578b170 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -24,6 +24,7 @@
 #include "xe_gt_types.h"
 #include "xe_map.h"
 #include "xe_mmio.h"
+#include "xe_pat.h"
 #include "xe_pm.h"
 #include "xe_res_cursor.h"
 #include "xe_sriov.h"
@@ -258,7 +259,7 @@ static u64 xe_ggtt_get_pte(struct xe_ggtt *ggtt, u64 addr)
 
 static void xe_ggtt_clear(struct xe_ggtt *ggtt, u64 start, u64 size)
 {
-	u16 pat_index = tile_to_xe(ggtt->tile)->pat.idx[XE_CACHE_WB];
+	u16 pat_index = xe_cache_pat_idx(tile_to_xe(ggtt->tile), XE_CACHE_WB);
 	u64 end = start + size - 1;
 	u64 scratch_pte;
 
@@ -723,7 +724,7 @@ static void xe_ggtt_map_bo(struct xe_ggtt *ggtt, struct xe_ggtt_node *node,
 void xe_ggtt_map_bo_unlocked(struct xe_ggtt *ggtt, struct xe_bo *bo)
 {
 	u16 cache_mode = bo->flags & XE_BO_FLAG_NEEDS_UC ? XE_CACHE_NONE : XE_CACHE_WB;
-	u16 pat_index = tile_to_xe(ggtt->tile)->pat.idx[cache_mode];
+	u16 pat_index = xe_cache_pat_idx(tile_to_xe(ggtt->tile), cache_mode);
 	u64 pte;
 
 	mutex_lock(&ggtt->lock);
@@ -840,7 +841,7 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
 		bo->ggtt_node[tile_id] = NULL;
 	} else {
 		u16 cache_mode = bo->flags & XE_BO_FLAG_NEEDS_UC ? XE_CACHE_NONE : XE_CACHE_WB;
-		u16 pat_index = tile_to_xe(ggtt->tile)->pat.idx[cache_mode];
+		u16 pat_index = xe_cache_pat_idx(tile_to_xe(ggtt->tile), cache_mode);
 		u64 pte = ggtt->pt_ops->pte_encode_flags(bo, pat_index);
 
 		xe_ggtt_map_bo(ggtt, bo->ggtt_node[tile_id], bo, pte);
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 5fdc89ed5256..a87fbc1e9fb1 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -31,6 +31,7 @@
 #include "xe_map.h"
 #include "xe_mem_pool.h"
 #include "xe_mocs.h"
+#include "xe_pat.h"
 #include "xe_printk.h"
 #include "xe_pt.h"
 #include "xe_res_cursor.h"
@@ -217,7 +218,7 @@ static void xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
 				  struct xe_vm *vm, u32 *ofs)
 {
 	struct xe_device *xe = tile_to_xe(tile);
-	u16 pat_index = xe->pat.idx[XE_CACHE_WB];
+	u16 pat_index = xe_cache_pat_idx(xe, XE_CACHE_WB);
 	u8 id = tile->id;
 	u32 num_entries = NUM_PT_SLOTS, num_level = vm->pt_root[id]->level;
 #define VRAM_IDENTITY_MAP_COUNT	2
@@ -337,7 +338,7 @@ static void xe_migrate_prepare_vm(struct xe_tile *tile, struct xe_migrate *m,
 		 * if flat ccs is enabled.
 		 */
 		if (GRAPHICS_VER(xe) >= 20 && xe_device_has_flat_ccs(xe)) {
-			u16 comp_pat_index = xe->pat.idx[XE_CACHE_NONE_COMPRESSION];
+			u16 comp_pat_index = xe_cache_pat_idx(xe, XE_CACHE_NONE_COMPRESSION);
 			u64 vram_offset = IDENTITY_OFFSET +
 				DIV_ROUND_UP_ULL(actual_phy_size, SZ_1G);
 			u64 pt31_ofs = xe_bo_size(bo) - XE_PAGE_SIZE;
@@ -637,10 +638,10 @@ static void emit_pte(struct xe_migrate *m,
 
 	/* Indirect access needs compression enabled uncached PAT index */
 	if (GRAPHICS_VERx100(xe) >= 2000)
-		pat_index = is_comp_pte ? xe->pat.idx[XE_CACHE_NONE_COMPRESSION] :
-					  xe->pat.idx[XE_CACHE_WB];
+		pat_index = is_comp_pte ? xe_cache_pat_idx(xe, XE_CACHE_NONE_COMPRESSION) :
+					  xe_cache_pat_idx(xe, XE_CACHE_WB);
 	else
-		pat_index = xe->pat.idx[XE_CACHE_WB];
+		pat_index = xe_cache_pat_idx(xe, XE_CACHE_WB);
 
 	ptes = DIV_ROUND_UP(size, XE_PAGE_SIZE);
 
@@ -1876,7 +1877,7 @@ __xe_migrate_update_pgtables(struct xe_migrate *m,
 
 	/* For sysmem PTE's, need to map them in our hole.. */
 	if (!IS_DGFX(xe)) {
-		u16 pat_index = xe->pat.idx[XE_CACHE_WB];
+		u16 pat_index = xe_cache_pat_idx(xe, XE_CACHE_WB);
 		u32 ptes, ofs;
 
 		ppgtt_ofs = NUM_KERNEL_PDE - 1;
@@ -2098,7 +2099,7 @@ static void build_pt_update_batch_sram(struct xe_migrate *m,
 				       struct drm_pagemap_addr *sram_addr,
 				       u32 size, int level)
 {
-	u16 pat_index = tile_to_xe(m->tile)->pat.idx[XE_CACHE_WB];
+	u16 pat_index = xe_cache_pat_idx(tile_to_xe(m->tile), XE_CACHE_WB);
 	u64 gpu_page_size = 0x1ull << xe_pt_shift(level);
 	u32 ptes;
 	int i = 0;
diff --git a/drivers/gpu/drm/xe/xe_pat.h b/drivers/gpu/drm/xe/xe_pat.h
index a1e287c08f57..79b1c7f26320 100644
--- a/drivers/gpu/drm/xe/xe_pat.h
+++ b/drivers/gpu/drm/xe/xe_pat.h
@@ -82,4 +82,12 @@ bool xe_pat_index_get_comp_en(struct xe_device *xe, u16 pat_index);
  */
 u16 xe_pat_index_get_l3_policy(struct xe_device *xe, u16 pat_index);
 
+#define xe_cache_pat_idx(xe, cache_mode) ({				\
+	struct xe_device *__xe = (xe);					\
+	enum xe_cache_level __mode = (cache_mode);			\
+	xe_assert(__xe, __mode < __XE_CACHE_LEVEL_COUNT);		\
+	xe_assert(__xe, __xe->pat.idx[__mode] != XE_PAT_INVALID_IDX);	\
+	__xe->pat.idx[__mode];						\
+})
+
 #endif
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 8e5f4f0dea3f..2669ff5ee747 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -14,6 +14,7 @@
 #include "xe_gt_stats.h"
 #include "xe_migrate.h"
 #include "xe_page_reclaim.h"
+#include "xe_pat.h"
 #include "xe_pt_types.h"
 #include "xe_pt_walk.h"
 #include "xe_res_cursor.h"
@@ -62,7 +63,7 @@ static u64 __xe_pt_empty_pte(struct xe_tile *tile, struct xe_vm *vm,
 			     unsigned int level)
 {
 	struct xe_device *xe = tile_to_xe(tile);
-	u16 pat_index = xe->pat.idx[XE_CACHE_WB];
+	u16 pat_index = xe_cache_pat_idx(xe, XE_CACHE_WB);
 	u8 id = tile->id;
 
 	if (!xe_vm_has_scratch(vm))
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index f97c7af2f17c..5f4220125c76 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1399,9 +1399,9 @@ static u16 pde_pat_index(struct xe_bo *bo)
 	 * something which is always safe).
 	 */
 	if (!xe_bo_is_vram(bo) && bo->ttm.ttm->caching == ttm_cached)
-		pat_index = xe->pat.idx[XE_CACHE_WB];
+		pat_index = xe_cache_pat_idx(xe, XE_CACHE_WB);
 	else
-		pat_index = xe->pat.idx[XE_CACHE_NONE];
+		pat_index = xe_cache_pat_idx(xe, XE_CACHE_NONE);
 
 	xe_assert(xe, pat_index <= 3);
 
@@ -4204,7 +4204,7 @@ struct dma_fence *xe_vm_bind_kernel_bo(struct xe_vm *vm, struct xe_bo *bo,
 
 	ops = vm_bind_ioctl_ops_create(vm, &vops, bo, 0, addr, xe_bo_size(bo),
 				       DRM_XE_VM_BIND_OP_MAP, 0, 0,
-				       vm->xe->pat.idx[cache_lvl]);
+				       xe_cache_pat_idx(vm->xe, cache_lvl));
 	if (IS_ERR(ops)) {
 		err = PTR_ERR(ops);
 		goto release_vm_lock;
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (2 preceding siblings ...)
  2026-04-15 23:02 ` [PATCH v4 3/3] drm/xe/pat: Introduce xe_cache_pat_idx() macro helper Xin Wang
@ 2026-04-15 23:55 ` Patchwork
  2026-04-16  1:11 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-15 23:55 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening
URL   : https://patchwork.freedesktop.org/series/164953/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe/pat: Type cleanup and invalid index hardening
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (3 preceding siblings ...)
  2026-04-15 23:55 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening Patchwork
@ 2026-04-16  1:11 ` Patchwork
  2026-04-16  2:54 ` ✗ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  1:11 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening
URL   : https://patchwork.freedesktop.org/series/164953/
State : failure

== Summary ==

CI Bug Log - changes from xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9_BAT -> xe-pw-164953v1_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-164953v1_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-164953v1_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 (13 -> 11)
------------------------------

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

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

  Here are the unknown changes that may have been introduced in xe-pw-164953v1_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_module_load@load:
    - bat-ptl-2:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-ptl-2/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-ptl-2/igt@xe_module_load@load.html
    - bat-atsm-2:         [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-atsm-2/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-atsm-2/igt@xe_module_load@load.html
    - bat-wcl-1:          [PASS][5] -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-wcl-1/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-wcl-1/igt@xe_module_load@load.html
    - bat-ptl-1:          [PASS][7] -> [ABORT][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-ptl-1/igt@xe_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-ptl-1/igt@xe_module_load@load.html
    - bat-wcl-2:          [PASS][9] -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-wcl-2/igt@xe_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-wcl-2/igt@xe_module_load@load.html
    - bat-lnl-1:          [PASS][11] -> [ABORT][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-lnl-1/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-lnl-1/igt@xe_module_load@load.html
    - bat-bmg-2:          [PASS][13] -> [ABORT][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-bmg-2/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-bmg-2/igt@xe_module_load@load.html
    - bat-bmg-3:          [PASS][15] -> [ABORT][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-bmg-3/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-bmg-3/igt@xe_module_load@load.html
    - bat-bmg-1:          [PASS][17] -> [ABORT][18]
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-bmg-1/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-bmg-1/igt@xe_module_load@load.html
    - bat-adlp-7:         [PASS][19] -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-adlp-7/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-adlp-7/igt@xe_module_load@load.html
    - bat-lnl-2:          [PASS][21] -> [ABORT][22]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/bat-lnl-2/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/bat-lnl-2/igt@xe_module_load@load.html

  


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

  * Linux: xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9 -> xe-pw-164953v1

  IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9: b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9
  xe-pw-164953v1: 164953v1

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe/pat: Type cleanup and invalid index hardening
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (4 preceding siblings ...)
  2026-04-16  1:11 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-04-16  2:54 ` Patchwork
  2026-04-16  3:03 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening (rev2) Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  2:54 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening
URL   : https://patchwork.freedesktop.org/series/164953/
State : failure

== Summary ==

CI Bug Log - changes from xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9_FULL -> xe-pw-164953v1_FULL
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with xe-pw-164953v1_FULL need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-164953v1_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-164953v1_FULL:

### IGT changes ###

#### Warnings ####

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [SKIP][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26]) ([Intel XE#378] / [Intel XE#7405]) -> ([ABORT][27], [ABORT][28], [ABORT][29], [ABORT][30], [ABORT][31], [ABORT][32], [ABORT][33], [ABORT][34], [ABORT][35], [ABORT][36], [ABORT][37], [ABORT][38], [ABORT][39], [ABORT][40], [ABORT][41], [ABORT][42], [ABORT][43], [ABORT][44], [ABORT][45], [ABORT][46], [ABORT][47], [ABORT][48], [ABORT][49], [ABORT][50])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-3/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-4/igt@xe_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-4/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-7/igt@xe_module_load@load.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-1/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-2/igt@xe_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-1/igt@xe_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-2/igt@xe_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-1/igt@xe_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-2/igt@xe_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-5/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-3/igt@xe_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-3/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-5/igt@xe_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-5/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-8/igt@xe_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-8/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-6/igt@xe_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-6/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-6/igt@xe_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-8/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-4/igt@xe_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-6/igt@xe_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-7/igt@xe_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-7/igt@xe_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-lnl-3/igt@xe_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-1/igt@xe_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-1/igt@xe_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-1/igt@xe_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-8/igt@xe_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-8/igt@xe_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-8/igt@xe_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-8/igt@xe_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-4/igt@xe_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-4/igt@xe_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-4/igt@xe_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-6/igt@xe_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-6/igt@xe_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-6/igt@xe_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-6/igt@xe_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-3/igt@xe_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-3/igt@xe_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-3/igt@xe_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-2/igt@xe_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-2/igt@xe_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-2/igt@xe_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-7/igt@xe_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-7/igt@xe_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-7/igt@xe_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-lnl-5/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [SKIP][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76]) ([Intel XE#2457] / [Intel XE#7405]) -> ([ABORT][77], [ABORT][78], [ABORT][79], [ABORT][80], [ABORT][81], [ABORT][82], [ABORT][83], [ABORT][84], [ABORT][85], [ABORT][86], [ABORT][87], [ABORT][88], [ABORT][89], [ABORT][90], [ABORT][91], [ABORT][92], [ABORT][93], [ABORT][94], [ABORT][95], [ABORT][96], [ABORT][97])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-5/igt@xe_module_load@load.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-2/igt@xe_module_load@load.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-2/igt@xe_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-8/igt@xe_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-8/igt@xe_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-9/igt@xe_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-3/igt@xe_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-6/igt@xe_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-5/igt@xe_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-3/igt@xe_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-7/igt@xe_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-6/igt@xe_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-2/igt@xe_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-7/igt@xe_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-8/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-10/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-10/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-10/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-1/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-1/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-5/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-9/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-1/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-3/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-3/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9/shard-bmg-8/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-8/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-8/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-10/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-7/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-7/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-7/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-7/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-9/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-9/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-9/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-2/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-2/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-2/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-6/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-6/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-6/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-6/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-3/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-3/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-5/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v1/shard-bmg-5/igt@xe_module_load@load.html

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


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

  * Linux: xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9 -> xe-pw-164953v1

  IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4908-b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9: b2dbef367fba940bdaca7a3a3645c4be3d3c8ff9
  xe-pw-164953v1: 164953v1

== Logs ==

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

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

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

* ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening (rev2)
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (5 preceding siblings ...)
  2026-04-16  2:54 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-04-16  3:03 ` Patchwork
  2026-04-16  3:57 ` ✗ Xe.CI.BAT: failure " Patchwork
  2026-04-16  5:55 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  3:03 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening (rev2)
URL   : https://patchwork.freedesktop.org/series/164953/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe/pat: Type cleanup and invalid index hardening (rev2)
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (6 preceding siblings ...)
  2026-04-16  3:03 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening (rev2) Patchwork
@ 2026-04-16  3:57 ` Patchwork
  2026-04-16  5:55 ` ✗ Xe.CI.FULL: " Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  3:57 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening (rev2)
URL   : https://patchwork.freedesktop.org/series/164953/
State : failure

== Summary ==

CI Bug Log - changes from xe-4909-137513b61b4f187957d0c0f44c63c8549893f970_BAT -> xe-pw-164953v2_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-164953v2_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-164953v2_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 (13 -> 11)
------------------------------

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

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

  Here are the unknown changes that may have been introduced in xe-pw-164953v2_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_module_load@load:
    - bat-ptl-2:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-ptl-2/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-ptl-2/igt@xe_module_load@load.html
    - bat-atsm-2:         [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-atsm-2/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-atsm-2/igt@xe_module_load@load.html
    - bat-wcl-1:          [PASS][5] -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-wcl-1/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-wcl-1/igt@xe_module_load@load.html
    - bat-ptl-1:          [PASS][7] -> [ABORT][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-ptl-1/igt@xe_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-ptl-1/igt@xe_module_load@load.html
    - bat-wcl-2:          [PASS][9] -> [ABORT][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-wcl-2/igt@xe_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-wcl-2/igt@xe_module_load@load.html
    - bat-lnl-1:          [PASS][11] -> [ABORT][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-lnl-1/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-lnl-1/igt@xe_module_load@load.html
    - bat-bmg-2:          [PASS][13] -> [ABORT][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-bmg-2/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-bmg-2/igt@xe_module_load@load.html
    - bat-bmg-3:          [PASS][15] -> [ABORT][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-bmg-3/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-bmg-3/igt@xe_module_load@load.html
    - bat-bmg-1:          [PASS][17] -> [ABORT][18]
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-bmg-1/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-bmg-1/igt@xe_module_load@load.html
    - bat-adlp-7:         [PASS][19] -> [ABORT][20]
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-adlp-7/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-adlp-7/igt@xe_module_load@load.html
    - bat-lnl-2:          [PASS][21] -> [ABORT][22]
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/bat-lnl-2/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/bat-lnl-2/igt@xe_module_load@load.html

  


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

  * Linux: xe-4909-137513b61b4f187957d0c0f44c63c8549893f970 -> xe-pw-164953v2

  IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4909-137513b61b4f187957d0c0f44c63c8549893f970: 137513b61b4f187957d0c0f44c63c8549893f970
  xe-pw-164953v2: 164953v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe/pat: Type cleanup and invalid index hardening (rev2)
  2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
                   ` (7 preceding siblings ...)
  2026-04-16  3:57 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-04-16  5:55 ` Patchwork
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-04-16  5:55 UTC (permalink / raw)
  To: Xin Wang; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/pat: Type cleanup and invalid index hardening (rev2)
URL   : https://patchwork.freedesktop.org/series/164953/
State : failure

== Summary ==

CI Bug Log - changes from xe-4909-137513b61b4f187957d0c0f44c63c8549893f970_FULL -> xe-pw-164953v2_FULL
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with xe-pw-164953v2_FULL need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-164953v2_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-164953v2_FULL:

### IGT changes ###

#### Warnings ####

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [SKIP][23], [PASS][24], [PASS][25], [PASS][26]) ([Intel XE#378] / [Intel XE#7405]) -> ([ABORT][27], [ABORT][28], [ABORT][29], [ABORT][30], [ABORT][31], [ABORT][32], [ABORT][33], [ABORT][34], [ABORT][35], [ABORT][36], [ABORT][37], [ABORT][38], [ABORT][39], [ABORT][40], [ABORT][41], [ABORT][42], [ABORT][43], [ABORT][44], [ABORT][45], [ABORT][46], [ABORT][47], [ABORT][48], [ABORT][49], [ABORT][50], [ABORT][51])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-1/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-2/igt@xe_module_load@load.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-6/igt@xe_module_load@load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-6/igt@xe_module_load@load.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-3/igt@xe_module_load@load.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-7/igt@xe_module_load@load.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-5/igt@xe_module_load@load.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-5/igt@xe_module_load@load.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-5/igt@xe_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-1/igt@xe_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-8/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-4/igt@xe_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-7/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-8/igt@xe_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-6/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-2/igt@xe_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-8/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-4/igt@xe_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-4/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-7/igt@xe_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-2/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-2/igt@xe_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-4/igt@xe_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-3/igt@xe_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-3/igt@xe_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-lnl-1/igt@xe_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-1/igt@xe_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-1/igt@xe_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-1/igt@xe_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-8/igt@xe_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-8/igt@xe_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-8/igt@xe_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-4/igt@xe_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-4/igt@xe_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-4/igt@xe_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-4/igt@xe_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-6/igt@xe_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-6/igt@xe_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-6/igt@xe_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-3/igt@xe_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-3/igt@xe_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-3/igt@xe_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-2/igt@xe_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-2/igt@xe_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-2/igt@xe_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-7/igt@xe_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-7/igt@xe_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-7/igt@xe_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-5/igt@xe_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-5/igt@xe_module_load@load.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-lnl-5/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [SKIP][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77]) ([Intel XE#2457] / [Intel XE#7405]) -> ([ABORT][78], [ABORT][79], [ABORT][80], [ABORT][81], [ABORT][82], [ABORT][83], [ABORT][84], [ABORT][85], [ABORT][86], [ABORT][87], [ABORT][88], [ABORT][89], [ABORT][90], [ABORT][91], [ABORT][92], [ABORT][93], [ABORT][94], [ABORT][95], [ABORT][96], [ABORT][97], [ABORT][98])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-9/igt@xe_module_load@load.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-7/igt@xe_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-6/igt@xe_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-5/igt@xe_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-2/igt@xe_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-5/igt@xe_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-9/igt@xe_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-8/igt@xe_module_load@load.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-8/igt@xe_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-8/igt@xe_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-7/igt@xe_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-7/igt@xe_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-5/igt@xe_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-2/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-2/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-6/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-3/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-3/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-3/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-9/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-10/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-9/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-10/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-10/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-1/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4909-137513b61b4f187957d0c0f44c63c8549893f970/shard-bmg-1/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-8/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-8/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-10/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-10/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-1/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-1/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-7/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-7/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-7/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-9/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-2/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-2/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-2/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-6/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-3/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-3/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-3/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-5/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-5/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-5/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164953v2/shard-bmg-5/igt@xe_module_load@load.html

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


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

  * Linux: xe-4909-137513b61b4f187957d0c0f44c63c8549893f970 -> xe-pw-164953v2

  IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4909-137513b61b4f187957d0c0f44c63c8549893f970: 137513b61b4f187957d0c0f44c63c8549893f970
  xe-pw-164953v2: 164953v2

== Logs ==

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

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

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

end of thread, other threads:[~2026-04-16  5:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-15 23:02 [PATCH v4 0/3] drm/xe/pat: Type cleanup and invalid index hardening Xin Wang
2026-04-15 23:02 ` [PATCH v4 1/3] drm/xe: Standardize pat_index to u16 type Xin Wang
2026-04-15 23:02 ` [PATCH v4 2/3] drm/xe/pat: Default XE_CACHE_NONE_COMPRESSION to invalid Xin Wang
2026-04-15 23:02 ` [PATCH v4 3/3] drm/xe/pat: Introduce xe_cache_pat_idx() macro helper Xin Wang
2026-04-15 23:55 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening Patchwork
2026-04-16  1:11 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-04-16  2:54 ` ✗ Xe.CI.FULL: " Patchwork
2026-04-16  3:03 ` ✓ CI.KUnit: success for drm/xe/pat: Type cleanup and invalid index hardening (rev2) Patchwork
2026-04-16  3:57 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-04-16  5:55 ` ✗ Xe.CI.FULL: " Patchwork

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